forked from fanruan/fineui
iapyang
4 years ago
56 changed files with 7024 additions and 6020 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
export declare class VirtualGroup extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
addItems<T>(items: T[]): void; |
||||
prependItems<T>(items: T[]): void; |
||||
getNotSelectedValue<T>(): T[]; |
||||
getValue<T>(): T[]; |
||||
populate(items?: any, ...args: any[]): void; |
||||
} |
@ -0,0 +1,12 @@
|
||||
import { Single } from "../single"; |
||||
export declare class TextAreaEditor extends Single { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
focus(): void; |
||||
blur(): void; |
||||
setStyle(style: any): void; |
||||
getStyle(): any; |
||||
setWatermark(v: string): void; |
||||
} |
@ -0,0 +1,7 @@
|
||||
import { BasicButton } from "../../base/single/button/button.basic"; |
||||
export declare class SingleSelectItem extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
doRedMark(): void; |
||||
unRedMark(): void; |
||||
} |
@ -0,0 +1,13 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class AbstractAllValueChooser extends Widget { |
||||
static xtype: string; |
||||
_valueFormatter(v: string | number): string; |
||||
_itemsCreator(options: any, callback: Function): void; |
||||
_assertValue(v: { |
||||
type: string; |
||||
value: any[]; |
||||
}): { |
||||
type: string; |
||||
value: any[]; |
||||
}; |
||||
} |
@ -0,0 +1,6 @@
|
||||
import { AbstractAllValueChooser } from "./abstract.allvaluechooser"; |
||||
export declare class AllValueChooserCombo extends AbstractAllValueChooser { |
||||
static xtype: string; |
||||
getAllValue(): any; |
||||
populate(...args: any[]): void; |
||||
} |
@ -0,0 +1,4 @@
|
||||
import { Layout } from '../layout'; |
||||
export declare class GridLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,4 @@
|
||||
import { Layout } from '../../layout'; |
||||
export declare class CenterLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,18 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
export declare class DynamicDateTimeCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
static Static: 1; |
||||
static Dynamic: 2; |
||||
setMinDate(minDate: string): void; |
||||
setMaxDate(minDate: string): void; |
||||
getKey(): string; |
||||
hidePopupView(): void; |
||||
} |
@ -0,0 +1,13 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
export declare class MultiTreeCombo extends Single { |
||||
static xytpe: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
showView(): void; |
||||
hideView(): void; |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,16 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class VirtualGroup extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
addItems<T>(items: T[]): void; |
||||
|
||||
prependItems<T>(items: T[]): void; |
||||
|
||||
getNotSelectedValue<T>(): T[]; |
||||
|
||||
getValue<T>(): T[]; |
||||
|
||||
populate(items?: any, ...args: any[]): void |
||||
} |
@ -0,0 +1,18 @@
|
||||
import { Single } from "../single"; |
||||
|
||||
export declare class TextAreaEditor extends Single { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
|
||||
focus(): void; |
||||
|
||||
blur(): void; |
||||
|
||||
setStyle(style: any): void; |
||||
|
||||
getStyle(): any; |
||||
|
||||
setWatermark(v: string): void; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { BasicButton } from "../../base/single/button/button.basic"; |
||||
|
||||
export declare class SingleSelectItem extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
doRedMark(): void; |
||||
|
||||
unRedMark(): void; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class AbstractAllValueChooser extends Widget { |
||||
static xtype: string; |
||||
|
||||
_valueFormatter(v: string | number): string; |
||||
|
||||
_itemsCreator(options: any, callback: Function): void; |
||||
|
||||
_assertValue(v: { |
||||
type: string; |
||||
value: any[]; |
||||
}): { |
||||
type: string; |
||||
value: any[]; |
||||
} |
||||
} |
@ -0,0 +1,9 @@
|
||||
import { AbstractAllValueChooser } from "./abstract.allvaluechooser"; |
||||
|
||||
export declare class AllValueChooserCombo extends AbstractAllValueChooser { |
||||
static xtype: string; |
||||
|
||||
getAllValue(): any; |
||||
|
||||
populate(...args: any[]): void; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { Layout } from '../layout'; |
||||
|
||||
export declare class GridLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { Layout } from '../../layout'; |
||||
|
||||
export declare class CenterLayout extends Layout { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,24 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
|
||||
export declare class DynamicDateTimeCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
static Static: 1; |
||||
static Dynamic: 2; |
||||
|
||||
|
||||
setMinDate(minDate: string): void; |
||||
|
||||
setMaxDate(minDate: string): void; |
||||
|
||||
getKey(): string; |
||||
|
||||
hidePopupView(): void; |
||||
} |
@ -0,0 +1,15 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
|
||||
export declare class MultiTreeCombo extends Single { |
||||
static xytpe: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
showView(): void; |
||||
hideView(): void; |
||||
} |
Loading…
Reference in new issue