forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~ALAN/fineui:master to master * commit 'bbb785ed0470cef590daf9361eaaf2f40f3d7316': KERNEL-6431 补充类型描述es6
alan
4 years ago
7 changed files with 111 additions and 0 deletions
@ -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,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