forked from fanruan/fineui
Kira
4 years ago
8 changed files with 125 additions and 0 deletions
@ -0,0 +1,15 @@
|
||||
import { Widget } from '../../core/widget'; |
||||
|
||||
export declare class PopupView extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
|
||||
getView(): Widget; |
||||
|
||||
populate(...args: any[]): void; |
||||
|
||||
resetWidth(v: number): void; |
||||
|
||||
resetHeight(v: number): void; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { IconButton } from "../../base/single/button/buttons/button.icon"; |
||||
|
||||
export declare class ArrowTreeGroupNodeCheckbox extends IconButton { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,23 @@
|
||||
import { PopupView } from "../../../base/layer/layer.popup"; |
||||
import { Widget } from "../../../core/widget"; |
||||
|
||||
export declare class BubblePopupView extends PopupView { |
||||
static xtype: string; |
||||
static EVENT_CLICK_TOOLBAR_BUTTON: string; |
||||
|
||||
populate(v: string): void; |
||||
} |
||||
|
||||
export declare class BubblePopupBarView extends BubblePopupView { |
||||
static xtype: string; |
||||
static EVENT_CLICK_TOOLBAR_BUTTON: string; |
||||
|
||||
populate(v: string): void; |
||||
} |
||||
|
||||
export declare class TextBubblePopupBarView extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
populate(v: string): void; |
||||
} |
@ -0,0 +1,24 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class AllCountPager extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
setAllPages(v: number): void; |
||||
|
||||
setValue(v: number): void; |
||||
|
||||
setVPage(v: number):void; |
||||
|
||||
setCount(v: number | string): void; |
||||
|
||||
getCurrentPage(): number; |
||||
|
||||
hasPrev(): boolean; |
||||
|
||||
hasNext(): boolean; |
||||
|
||||
setPagerVisible(v: boolean): void; |
||||
|
||||
populate(): void; |
||||
} |
@ -0,0 +1,8 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class DynamicDatePane extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static Static: 1; |
||||
static Dynamic: 2; |
||||
} |
@ -0,0 +1,14 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
import { DynamicDataComboValue } from "../dynamicdate/dynamicdate.combo"; |
||||
|
||||
export declare class DateInterval extends Single { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
|
||||
getValue(): { |
||||
start: DynamicDataComboValue; |
||||
end: DynamicDataComboValue; |
||||
}; |
||||
} |
Loading…
Reference in new issue