iapyang
4 years ago
52 changed files with 8618 additions and 7271 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; |
||||
} |
@ -0,0 +1,7 @@
|
||||
import { BasicButton } from "../../base/single/button/button.basic"; |
||||
export declare class SingleSelectRadioItem extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
} |
@ -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; |
||||
} |
@ -0,0 +1,11 @@
|
||||
import { Pane } from "../../base/pane"; |
||||
export declare class MultiTreePopup extends Pane { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_CLICK_CONFIRM: string; |
||||
static EVENT_CLICK_CLEAR: string; |
||||
static EVENT_AFTERINIT: string; |
||||
hasChecked(): boolean; |
||||
resetHeight(h: number): void; |
||||
resetWidth(w: number): void; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
export declare class SingleSelectCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_CONFIRM: string; |
||||
} |
@ -0,0 +1,10 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
export declare class SingleSelectInsertCombo extends Single { |
||||
static xtype: 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; |
||||
} |
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 { BasicButton } from "../../base/single/button/button.basic"; |
||||
|
||||
export declare class SingleSelectRadioItem extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
doRedMark(...args: any[]): void; |
||||
|
||||
unRedMark(...args: any[]): void; |
||||
} |
@ -0,0 +1,15 @@
|
||||
import { Pane } from "../../base/pane"; |
||||
|
||||
export declare class MultiTreePopup extends Pane { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_CLICK_CONFIRM: string; |
||||
static EVENT_CLICK_CLEAR: string; |
||||
static EVENT_AFTERINIT: string; |
||||
|
||||
hasChecked(): boolean; |
||||
|
||||
resetHeight(h: number): void; |
||||
|
||||
resetWidth(w: number): void; |
||||
} |
@ -0,0 +1,11 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
|
||||
export declare class SingleSelectCombo extends Single { |
||||
static xtype: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_SEARCHING: string; |
||||
static EVENT_CLICK_ITEM: string; |
||||
static EVENT_CONFIRM: string; |
||||
} |
@ -0,0 +1,11 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
|
||||
export declare class SingleSelectInsertCombo extends Single { |
||||
static xtype: 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; |
||||
} |
Loading…
Reference in new issue