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