From 46fee5de780489df4ea4fb0558fabd0fb1714e24 Mon Sep 17 00:00:00 2001 From: Tangjinxia <1119518763@qq.com> Date: Fri, 23 Jul 2021 14:05:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20refactor:=20?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/combination/combo.ts | 3 ++ typescript/base/combination/expander.ts | 40 +++++++++++++++++++++++++ typescript/index.ts | 3 ++ 3 files changed, 46 insertions(+) create mode 100644 typescript/base/combination/expander.ts diff --git a/typescript/base/combination/combo.ts b/typescript/base/combination/combo.ts index 028414c82..0cae971cd 100644 --- a/typescript/base/combination/combo.ts +++ b/typescript/base/combination/combo.ts @@ -38,6 +38,9 @@ export declare class Combo extends Widget { hoverClass: string; belowMouse: boolean; } + resetListHeight(h: number): void; + + resetListWidth(w: number): void; populate(...args: any[]): void; diff --git a/typescript/base/combination/expander.ts b/typescript/base/combination/expander.ts new file mode 100644 index 000000000..781104f83 --- /dev/null +++ b/typescript/base/combination/expander.ts @@ -0,0 +1,40 @@ +import { Widget } from "../../core/widget"; + +export declare class Expander extends Widget { + static xtype: string; + + static EVENT_EXPAND: number; + static EVENT_COLLAPSE: number; + static EVENT_TRIGGER_CHANGE: number; + static EVENT_CHANGE: number; + static EVENT_AFTER_INIT: number; + static EVENT_BEFORE_POPUPVIEW: string; + static EVENT_AFTER_POPUPVIEW: string; + static EVENT_BEFORE_HIDEVIEW: string; + static EVENT_AFTER_HIDEVIEW: string; + + populate(items?: any, ...args: any[]): void; + + setValue(v: string): void; + + getValue(): string; + + isViewVisible(): boolean; + + isExpanded(): boolean; + + showView(): void; + + hideView(): void; + + getView(): any; + + getAllLeaves(): T[]; + + getNodeById(id: string): T; + + getNodeByValue(v: string): T; + + destroy(): void; + +} diff --git a/typescript/index.ts b/typescript/index.ts index 47816ea45..bc977f9f1 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -82,6 +82,7 @@ import { SimpleColorChooser } from "./case/colorchooser/colorchooser.simple"; import { A } from "./base/a/a"; import { Html } from "./base/single/html/html"; import { Switcher } from "./base/combination/switcher"; +import { Expander } from './base/combination/expander'; import { Loader } from "./base/combination/loader"; import { ListPane } from "./case/layer/pane.list"; import { MultiPopupView } from './case/layer/layer.multipopup'; @@ -267,6 +268,7 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { A: typeof A; Html: typeof Html; Switcher: typeof Switcher; + Expander: typeof Expander; Loader: typeof Loader; ListPane: typeof ListPane; MultiPopupView: typeof MultiPopupView; @@ -415,6 +417,7 @@ export { A, Html, Switcher, + Expander, BubbleCombo, Loader, ListPane,