forked from fanruan/fineui
data
4 years ago
43 changed files with 7779 additions and 6877 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,24 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class Searcher extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_START: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_PAUSE: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_AFTER_INIT: string; |
||||
setAdapter(adapter: any): void; |
||||
doSearch(): void; |
||||
stopSearch(): void; |
||||
isSearching(): boolean; |
||||
isViewVisible(): boolean; |
||||
getView<T>(): T; |
||||
hasMatched(): boolean; |
||||
adjustHeight(): void; |
||||
adjustView(): void; |
||||
setValue(v: any): void; |
||||
getKeyword(): string; |
||||
getKeywords(): string[]; |
||||
getValue<T>(): T; |
||||
populate(...args: any[]): void; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { BasicButton } from "../../button/button.basic"; |
||||
export declare class Radio extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { IconButton } from "../../../base/single/button/buttons/button.icon"; |
||||
export declare class TriggerIconButton extends IconButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
} |
@ -1,3 +1,5 @@
|
||||
import { _AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
import { AbstractTreeValueChooser, _AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
export interface _AbstractListTreeValueChooser extends _AbstractTreeValueChooser { |
||||
} |
||||
export declare class AbstractListTreeValueChooser extends AbstractTreeValueChooser { |
||||
} |
||||
|
@ -0,0 +1,16 @@
|
||||
import { AbstractListTreeValueChooser } from "./abstract.treevaluechooser.list"; |
||||
export declare class ListTreeValueChooserInsertCombo extends AbstractListTreeValueChooser { |
||||
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: any): void; |
||||
getValue<T>(): T; |
||||
populate<T>(items: T[]): void; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
export declare class TreeValueChooserCombo extends AbstractTreeValueChooser { |
||||
static xtype: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_SEARCHING: string; |
||||
showView(): void; |
||||
hideView(): void; |
||||
setValue(v: any): void; |
||||
getValue<T>(): T; |
||||
getAllValue<T>(): T; |
||||
populate<T>(items: T[]): void; |
||||
} |
@ -0,0 +1,16 @@
|
||||
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
export declare class TreeValueChooserInsertCombo extends AbstractTreeValueChooser { |
||||
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: any): void; |
||||
getValue<T>(): T; |
||||
populate<T>(items: T[]): 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
Loading…
Reference in new issue