forked from fanruan/fineui
data
4 years ago
47 changed files with 8985 additions and 7690 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
@ -1,7 +1,12 @@
|
||||
import { _BasicButton } from "../button/button.basic"; |
||||
import { BasicButton, _BasicButton } from "../button/button.basic"; |
||||
export interface _Checkbox extends _BasicButton { |
||||
_setEnable(enable: boolean): void; |
||||
} |
||||
export interface _CheckboxStatic { |
||||
EVENT_CHANGE: string; |
||||
} |
||||
export declare class Checkbox extends BasicButton { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
_setEnable(enable: boolean): void; |
||||
} |
||||
|
@ -1,5 +1,9 @@
|
||||
import { _Single } from "../single"; |
||||
import { Single, _Single } from "../single"; |
||||
export interface _Trigger extends _Single { |
||||
setKey(..._args: any[]): void; |
||||
getKey(): string; |
||||
} |
||||
export declare class Trigger extends Single { |
||||
setKey(..._args: any[]): void; |
||||
getKey(): string; |
||||
} |
||||
|
@ -1,4 +1,7 @@
|
||||
import { _Pane } from "../../base/pane"; |
||||
import { _Pane, Pane } from "../../base/pane"; |
||||
export interface _LoadingPane extends _Pane { |
||||
__loaded: (...args: any[]) => void; |
||||
} |
||||
export declare class LoadingPane extends Pane { |
||||
__loaded: (...args: any[]) => void; |
||||
} |
||||
|
@ -1,3 +1,5 @@
|
||||
import { _Action } from "./action"; |
||||
import { _Action, Action } from "./action"; |
||||
export interface _ShowAction extends _Action { |
||||
} |
||||
export declare class ShowAction extends Action { |
||||
} |
||||
|
@ -1,7 +1,13 @@
|
||||
import { _OB } from "../ob"; |
||||
import { _OB, OB } from "../ob"; |
||||
export interface _Behavior extends _OB { |
||||
doBehavior(items: any[]): void; |
||||
} |
||||
export interface _BehaviorFactory { |
||||
createBehavior(key: string, options: any): _Behavior; |
||||
} |
||||
export declare class Behavior extends OB { |
||||
doBehavior(items: any[]): void; |
||||
} |
||||
export declare class BehaviorFactory { |
||||
createBehavior(key: string, options: any): Behavior; |
||||
} |
||||
|
@ -1,3 +1,5 @@
|
||||
import { _Behavior } from "./behavior"; |
||||
import { _Behavior, Behavior } from "./behavior"; |
||||
export interface _HighlightBehavior extends _Behavior { |
||||
} |
||||
export declare class HighlightBehavior extends Behavior { |
||||
} |
||||
|
@ -1,3 +1,5 @@
|
||||
import { _Behavior } from "./behavior"; |
||||
import { _Behavior, Behavior } from "./behavior"; |
||||
export interface _RedMarkBehavior extends _Behavior { |
||||
} |
||||
export declare class RedMarkBehavior extends Behavior { |
||||
} |
||||
|
@ -1,5 +1,10 @@
|
||||
import { _Layout } from "../../layout"; |
||||
import { Layout, _Layout } from "../../layout"; |
||||
export interface _LeftVerticalAdapt extends _Layout { |
||||
resize(): void; |
||||
populate<T>(items?: T[]): void; |
||||
} |
||||
export declare class LeftVerticalAdaptLayout extends Layout { |
||||
static xtype: string; |
||||
resize(): void; |
||||
populate<T>(items?: T[]): void; |
||||
} |
||||
|
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
Loading…
Reference in new issue