From 26c2ce3fcd9f64cef5f83dd479356833c968ede0 Mon Sep 17 00:00:00 2001 From: alan Date: Mon, 21 Dec 2020 11:24:29 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-6537=20=E8=A1=A5=E5=85=85=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../combo/editoriconcheckcombo/combo.editiconcheck.ts | 10 ++++++++++ typescript/index.ts | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts diff --git a/typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts b/typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts new file mode 100644 index 000000000..1e4580cb8 --- /dev/null +++ b/typescript/case/combo/editoriconcheckcombo/combo.editiconcheck.ts @@ -0,0 +1,10 @@ +import { Widget } from "../../../core/widget"; + +export declare class EditorIconCheckCombo extends Widget { + static xtype: string; + static EVENT_CHANGE: string; + static EVENT_FOCUS: string; + static EVENT_EMPTY: string; + static EVENT_VALID: string; + static EVENT_ERROR: string; +} diff --git a/typescript/index.ts b/typescript/index.ts index c706c1944..f4f118d34 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -136,6 +136,7 @@ import { NumberEditor } from "./widget/numbereditor/numbereditor"; import { TextValueCheckCombo } from "./case/combo/textvaluecheckcombo/combo.textvaluecheck"; import { LinearSegment } from "./case/linersegment/linear.segment"; import { Img } from "./base/single/img/img"; +import { EditorIconCheckCombo } from "./case/combo/editoriconcheckcombo/combo.editiconcheck"; type ClassConstructor = T & { @@ -287,6 +288,7 @@ export interface BI extends _func, _i18n, _base, _inject { NumberEditor: typeof NumberEditor; LinearSegment: typeof LinearSegment; Img: typeof Img; + EditorIconCheckCombo: typeof EditorIconCheckCombo; } export default { @@ -432,4 +434,5 @@ export { NumberEditor, LinearSegment, Img, + EditorIconCheckCombo, };