Browse Source

KERNEL-6465 refactor: 补充类型

es6
youki 4 years ago
parent
commit
4353b8d971
  1. 13
      typescript/base/pane.ts
  2. 16
      typescript/base/single/text.ts
  3. 12
      typescript/case/colorchooser/colorchooser.simple.ts
  4. 15
      typescript/index.ts
  5. 41
      typescript/widget/editor/editor.search.ts
  6. 2
      typescript/widget/editor/editor.text.ts
  7. 15
      typescript/widget/multilayersingletree/multilayersingletree.leveltree.ts

13
typescript/base/pane.ts

@ -1,4 +1,4 @@
import { _Widget } from "../core/widget";
import { _Widget, Widget } from "../core/widget";
export interface _Pane extends _Widget {
_assertTip(..._args: any[]): void;
@ -11,3 +11,14 @@ export interface _Pane extends _Widget {
export interface _PaneStatic {
EVENT_LOADED: string;
}
export declare class Pane extends Widget {
static EVENT_LOADED: string;
_assertTip(..._args: any[]): void;
loading(): void;
loaded(): void;
check(): void;
setTipVisible(b: boolean): void;
populate(items?: any[]): void;
}

16
typescript/base/single/text.ts

@ -1,4 +1,4 @@
import { _Single } from "./single";
import { _Single, Single } from "./single";
export interface _Text extends _Single {
doRedMark(keyword: string): void;
@ -13,3 +13,17 @@ export interface _Text extends _Single {
setText(v: string): void;
}
export declare class Text extends Single {
static xtype: string;
doRedMark(keyword: string): void;
unRedMark(): void;
doHighLight(): void;
unHighLight(): void;
setStyle(css: any): void;
}

12
typescript/case/colorchooser/colorchooser.simple.ts

@ -0,0 +1,12 @@
import { Widget } from '../../core/widget';
export declare class SimpleColorChooser extends Widget {
static xtype: string;
static EVENT_CHANGE: string;
isViewVisible(): boolean;
hideView(): void;
showView(): void;
}

15
typescript/index.ts

@ -1,7 +1,7 @@
import { _Combo, _ComboStatic } from "./base/combination/combo";
import { _ButtonGroup, _ButtonGroupChooseType, _ButtonGroupStatic, ButtonGroup } from "./base/combination/group.button";
import { _Tab, _TabStatic, Tab } from "./base/combination/tab";
import { _Pane, _PaneStatic } from "./base/pane";
import { _Pane, _PaneStatic, Pane } from "./base/pane";
import { _BasicButton, _BasicButtonStatic, BasicButton } from "./base/single/button/button.basic";
import { _NodeButton, NodeButton } from "./base/single/button/button.node";
import { _Button, _ButtonStatic, Button } from "./base/single/button/buttons/button";
@ -14,7 +14,7 @@ import { _Input, _InputStatic } from "./base/single/input/input";
import { _AbstractLabel, AbstractLabel } from "./base/single/label/abstract.label";
import { _Label, Label } from "./base/single/label/label";
import { _Single, Single } from "./base/single/single";
import { _Text } from "./base/single/text";
import { _Text, Text } from "./base/single/text";
import { _Trigger } from "./base/single/trigger/trigger";
import { IconChangeButton, _IconChangeButton, _IconChangeButtonStatic } from "./case/button/icon/icon.change";
import { _MultiSelectItem, _MultiSelectItemStatic, MultiSelectItem } from "./case/button/item.multiselect";
@ -69,6 +69,9 @@ import { HorizontalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.horizon
import { FloatLeftLayout } from "./core/wrapper/layout/layout.flow";
import { CenterAdaptLayout } from "./core/wrapper/layout/adapt/adapt.center";
import { VerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.vertical";
import { SearchEditor } from "./widget/editor/editor.search";
import { MultiLayerSingleLevelTree } from "./widget/multilayersingletree/multilayersingletree.leveltree";
import { SimpleColorChooser } from "./case/colorchooser/colorchooser.simple"
type ClassConstructor<T extends {}> = T & {
@ -151,6 +154,9 @@ export interface BI extends _func, _i18n, _base, _inject {
MidTreeLeafItem: typeof MidTreeLeafItem;
FirstTreeLeafItem: typeof FirstTreeLeafItem;
LastTreeLeafItem: typeof LastTreeLeafItem;
SearchEditor: typeof SearchEditor;
MultiLayerSingleLevelTree: typeof MultiLayerSingleLevelTree;
SimpleColorChooser: typeof SimpleColorChooser;
}
export default {
@ -203,4 +209,9 @@ export {
MidTreeLeafItem,
FirstTreeLeafItem,
LastTreeLeafItem,
SearchEditor,
Text,
Pane,
MultiLayerSingleLevelTree,
SimpleColorChooser,
};

41
typescript/widget/editor/editor.search.ts

@ -0,0 +1,41 @@
import { Widget } from '../../core/widget';
export declare class SearchEditor 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_SPACE: string;
static EVENT_BACKSPACE: string;
static EVENT_CLEAR: 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_REMOVE: string;
static EVENT_EMPTY: string;
setWaterMark(v: string): void;
focus(): void;
blur(): void;
getKeywords(): string[];
getLastValidValue(): string;
getLastChangedValue(): string;
isEditing(): boolean;
isValid(): boolean;
}

2
typescript/widget/editor/editor.text.ts

@ -32,5 +32,5 @@ export declare class TextEditor extends Widget {
getErrorText(): string;
isValid(): boolean
isValid(): boolean;
}

15
typescript/widget/multilayersingletree/multilayersingletree.leveltree.ts

@ -0,0 +1,15 @@
import { Pane } from '../../base/pane'
export declare class MultiLayerSingleLevelTree extends Pane {
static xtype: string;
initTree(nodes: any, ...args: any[]): void;
populate(nodes: any, ...args: any[]): void;
getAllLeaves<T>(): T[];
getNodeById(id: any): any;
getNodeByValue(value: any): any;
}
Loading…
Cancel
Save