forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~WINDY/fui:master to master * commit '7dc4d754e525c831a31a558329ecb893de7e6c00': 无JIRA任务 加声明es6
windy
4 years ago
3 changed files with 43 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||||
|
import { Widget } from "../../../core/widget"; |
||||||
|
|
||||||
|
export declare class TextValueCheckCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
setTitle (v: string): void; |
||||||
|
|
||||||
|
setValue (v: string | number): void; |
||||||
|
|
||||||
|
setWarningTitle(v: string): void; |
||||||
|
|
||||||
|
getValue(): void; |
||||||
|
|
||||||
|
populate(items: any[]): string; |
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class NumberEditor extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CONFIRM: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
focus (): void; |
||||||
|
|
||||||
|
isEditing(): void; |
||||||
|
|
||||||
|
setUpEnable(v: boolean): void; |
||||||
|
|
||||||
|
setDownEnable(v: boolean): void; |
||||||
|
|
||||||
|
getLastValidValue(): string; |
||||||
|
|
||||||
|
getLastChangedValue(): string; |
||||||
|
|
||||||
|
getValue(): string; |
||||||
|
|
||||||
|
setValue(v: string): void; |
||||||
|
} |
Loading…
Reference in new issue