forked from fanruan/fineui
data
4 years ago
38 changed files with 2095 additions and 1690 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
@ -0,0 +1,12 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class MultiLayerSelectTreeCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
setValue(v: string[] | string): void; |
||||
getValue(): string[]; |
||||
populate<T>(items: T[]): void; |
||||
} |
@ -0,0 +1,12 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class MultiLayerSingleTreeCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
setValue(v: string[] | string): void; |
||||
getValue(): string[]; |
||||
populate<T>(items: T[]): void; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
import { TreeValue } from "../../base/tree/ztree/treeview"; |
||||
export declare class MultiTreeInsertCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
showView(): void; |
||||
hideView(): void; |
||||
setValue(v: TreeValue): void; |
||||
getValue(): TreeValue; |
||||
populate(): void; |
||||
} |
@ -0,0 +1,16 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
export declare class MultiTreeListCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
showView(): void; |
||||
hideView(): void; |
||||
setValue(v: string[]): void; |
||||
getValue(): string[]; |
||||
populate(): 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
Loading…
Reference in new issue