From 7b867339fba2612363c2feb758dba9dede6a16a3 Mon Sep 17 00:00:00 2001 From: Kira Date: Fri, 19 Feb 2021 17:14:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1:=20=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../combo/textvaluecheckcombo/popup.textvaluecheck.ts | 10 ++++++++++ typescript/index.ts | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts diff --git a/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts b/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts new file mode 100644 index 000000000..aad044461 --- /dev/null +++ b/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts @@ -0,0 +1,10 @@ +import { Pane } from "../../../base/pane"; + +export declare class TextValueCheckComboPopup extends Pane { + static xtype: string; + static EVENT_CHANGE: string; + + populate(items: any[]): void; + getValue(): any; + setValue(): void; +} diff --git a/typescript/index.ts b/typescript/index.ts index aaf71bff0..009f99f01 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -150,6 +150,7 @@ import { LayerController } from "./core/controller/controller.layer"; import { DateCalendarPopup } from "./widget/date/calendar/popup.calendar.date"; import { Tree, Node } from "./core/utils/tree"; import { TextNode } from "./base/single/button/node/textnode"; +import { TextValueCheckComboPopup } from "./case/combo/textvaluecheckcombo/popup.textvaluecheck"; export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { @@ -305,6 +306,7 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { DynamicYearMonthPopup: typeof DynamicYearMonthPopup; DateCalendarPopup: typeof DateCalendarPopup; TextNode: typeof TextNode; + TextValueCheckComboPopup: typeof TextValueCheckComboPopup; } export default { @@ -462,4 +464,5 @@ export { Tree, Node, TextNode, + TextValueCheckComboPopup, };