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, };