diff --git a/typescript/base/single/img/img.ts b/typescript/base/single/img/img.ts new file mode 100644 index 000000000..30adc8151 --- /dev/null +++ b/typescript/base/single/img/img.ts @@ -0,0 +1,8 @@ +import { Single } from "../single"; + +export declare class Img extends Single { + static xtype: string; + + setSrc(src: string): void; + getSrc(): string; +} 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/case/linersegment/linear.segment.ts b/typescript/case/linersegment/linear.segment.ts new file mode 100644 index 000000000..7cb54170d --- /dev/null +++ b/typescript/case/linersegment/linear.segment.ts @@ -0,0 +1,7 @@ +import { Widget } from "../../core/widget"; + +export declare class LinearSegment extends Widget { + static xtype: string; + + setEnabledValue(v: any): void; +} diff --git a/typescript/index.ts b/typescript/index.ts index 162e623e8..f4f118d34 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -134,6 +134,9 @@ import { MultiSelectInsertList } from "./widget/multiselectlist/multiselectlist. import { YearMonthInterval } from "./widget/yearmonthinterval/yearmonthinterval"; 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 & { @@ -283,6 +286,9 @@ export interface BI extends _func, _i18n, _base, _inject { YearMonthInterval: typeof YearMonthInterval; TextValueCheckCombo: typeof TextValueCheckCombo; NumberEditor: typeof NumberEditor; + LinearSegment: typeof LinearSegment; + Img: typeof Img; + EditorIconCheckCombo: typeof EditorIconCheckCombo; } export default { @@ -426,4 +432,7 @@ export { YearMonthInterval, TextValueCheckCombo, NumberEditor, + LinearSegment, + Img, + EditorIconCheckCombo, };