|
|
@ -164,6 +164,10 @@ import { BlankIconTextItem } from './base/single/button/listitem/blankicontextit |
|
|
|
import { Broadcasts, Layers } from "./base/base"; |
|
|
|
import { Broadcasts, Layers } from "./base/base"; |
|
|
|
import { BroadcastController } from "./core/controller/controller.broadcast"; |
|
|
|
import { BroadcastController } from "./core/controller/controller.broadcast"; |
|
|
|
import { Pager } from "./base/pager/pager"; |
|
|
|
import { Pager } from "./base/pager/pager"; |
|
|
|
|
|
|
|
import { TimeInterval } from './widget/timeinterval/timeinterval'; |
|
|
|
|
|
|
|
import { DynamicDateTimePane } from './widget/datetimepane/datetimepane'; |
|
|
|
|
|
|
|
import { SingleSelectInsertList } from './widget/singleselect/singleselectlist.insert'; |
|
|
|
|
|
|
|
import { MultiSelectTree } from './widget/multiselecttree/multiselecttree'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { |
|
|
|
export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { |
|
|
@ -335,6 +339,10 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { |
|
|
|
AdaptiveLayout: typeof AdaptiveLayout; |
|
|
|
AdaptiveLayout: typeof AdaptiveLayout; |
|
|
|
HexColorChooserPopup: typeof HexColorChooserPopup; |
|
|
|
HexColorChooserPopup: typeof HexColorChooserPopup; |
|
|
|
BlankIconTextItem: typeof BlankIconTextItem; |
|
|
|
BlankIconTextItem: typeof BlankIconTextItem; |
|
|
|
|
|
|
|
TimeInterval: typeof TimeInterval; |
|
|
|
|
|
|
|
DynamicDateTimePane: typeof DynamicDateTimePane; |
|
|
|
|
|
|
|
SingleSelectInsertList: typeof SingleSelectInsertList; |
|
|
|
|
|
|
|
MultiSelectTree: typeof MultiSelectTree; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
export default { |
|
|
@ -506,4 +514,8 @@ export { |
|
|
|
AdaptiveLayout, |
|
|
|
AdaptiveLayout, |
|
|
|
HexColorChooserPopup, |
|
|
|
HexColorChooserPopup, |
|
|
|
BlankIconTextItem, |
|
|
|
BlankIconTextItem, |
|
|
|
|
|
|
|
TimeInterval, |
|
|
|
|
|
|
|
DynamicDateTimePane, |
|
|
|
|
|
|
|
SingleSelectInsertList, |
|
|
|
|
|
|
|
MultiSelectTree, |
|
|
|
}; |
|
|
|
}; |
|
|
|