Tangjinxia
4 years ago
62 changed files with 4104 additions and 3797 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 it is too large
Load Diff
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,7 @@
|
||||
import { AbstractLabel } from "./abstract.label"; |
||||
export declare class HtmlLabel extends AbstractLabel { |
||||
props: { |
||||
lineHeight: number; |
||||
} & AbstractLabel['props']; |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,34 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class StateEditor extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_FOCUS: string; |
||||
static EVENT_BLUR: string; |
||||
static EVENT_CLICK: string; |
||||
static EVENT_KEY_DOWN: string; |
||||
static EVENT_CLICK_LABEL: string; |
||||
static EVENT_START: string; |
||||
static EVENT_PAUSE: string; |
||||
static EVENT_STOP: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_CHANGE_CONFIRM: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_ENTER: string; |
||||
static EVENT_RESTRICT: string; |
||||
static EVENT_SPACE: string; |
||||
static EVENT_EMPTY: string; |
||||
setWaterMark(v: string): void; |
||||
focus(): void; |
||||
blur(): void; |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
doHighLight(...args: any[]): void; |
||||
unHighLight(...args: any[]): void; |
||||
setErrorText(v: string): void; |
||||
getErrorText(): string; |
||||
isEditing(): boolean; |
||||
getLastChangedValue(): string; |
||||
getState(): any; |
||||
setState(...args: any[]): void; |
||||
} |
@ -1,4 +1,8 @@
|
||||
import { Layout } from '../layout'; |
||||
export declare class GridLayout extends Layout { |
||||
static xtype: string; |
||||
props: { |
||||
columns: number; |
||||
rows: number; |
||||
}; |
||||
} |
||||
|
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,9 @@
|
||||
import { AbstractLabel } from "./abstract.label"; |
||||
|
||||
export declare class HtmlLabel extends AbstractLabel { |
||||
props: { |
||||
lineHeight: number; |
||||
} & AbstractLabel['props']; |
||||
|
||||
static xtype: string; |
||||
} |
Loading…
Reference in new issue