diff --git a/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts b/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts index aad044461..353df0b9a 100644 --- a/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts +++ b/typescript/case/combo/textvaluecheckcombo/popup.textvaluecheck.ts @@ -6,5 +6,5 @@ export declare class TextValueCheckComboPopup extends Pane { populate(items: any[]): void; getValue(): any; - setValue(): void; + setValue(v: any): void; } diff --git a/typescript/case/toolbar/toolbar.multiselect.ts b/typescript/case/toolbar/toolbar.multiselect.ts index 5908f671b..3f4c13e93 100644 --- a/typescript/case/toolbar/toolbar.multiselect.ts +++ b/typescript/case/toolbar/toolbar.multiselect.ts @@ -4,6 +4,17 @@ export declare class MultiSelectBar extends BasicButton { static xtype: string; static EVENT_CHANGE: string; + + props: { + text: string; + isAllCheckedBySelectedValue: Function; + disableSelected: boolean; + isHalfCheckedBySelectedValue: Function; + halfSelected: boolean; + iconWrapperWidth: number; + iconWidth: number; + iconHeight: number; + } & BasicButton['props']; props: { text: string; diff --git a/typescript/core/wrapper/layout/layout.td.ts b/typescript/core/wrapper/layout/layout.td.ts new file mode 100644 index 000000000..8abef61a1 --- /dev/null +++ b/typescript/core/wrapper/layout/layout.td.ts @@ -0,0 +1,12 @@ +import { Layout } from '../layout'; + +export declare class TdLayout extends Layout { + static xtype: string; + + props: { + columnSize: number[]; + rowSize: number[]; + verticalAlign: 'middle' | 'top' | 'bottom' | 'stretch'; + horizontalAlign: 'left' | 'right' | 'center' | 'stretch'; + } +} diff --git a/typescript/index.ts b/typescript/index.ts index a93dcc858..47816ea45 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -173,6 +173,7 @@ import { SingleSelectInsertList } from './widget/singleselect/singleselectlist.i import { MultiSelectTree } from './widget/multiselecttree/multiselecttree'; import { HtmlLabel } from "./base/single/label/html.label"; import { TreeValueChooserPane } from './component/treevaluechooser/pane.treevaluechooser'; +import { TdLayout } from './core/wrapper/layout/layout.td'; export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { @@ -353,6 +354,7 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { MultiSelectTree: typeof MultiSelectTree; HtmlLabel: typeof HtmlLabel; TreeValueChooserPane: typeof TreeValueChooserPane; + TdLayout: typeof TdLayout; } export default { @@ -533,4 +535,5 @@ export { MultiSelectTree, HtmlLabel, TreeValueChooserPane, + TdLayout, };