@zeedhi/vuetify 3.0.11 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/dist/zd-vuetify.css +60 -58
  2. package/dist/zd-vuetify.min.css +1 -1
  3. package/dist/zd-vuetify.min.js +14 -14
  4. package/dist/zd-vuetify.mjs +1061 -792
  5. package/environments.json +16 -0
  6. package/package.json +3 -3
  7. package/src/components/index.ts +3 -1
  8. package/src/components/zd-alert/ZdAlert.ts +1 -1
  9. package/src/components/zd-badge/ZdBadge.ts +1 -1
  10. package/src/components/zd-breadcrumbs/ZdBreadcrumbs.ts +2 -1
  11. package/src/components/zd-button/ZdButton.ts +1 -1
  12. package/src/components/zd-button-group/ZdButtonGroup.ts +1 -1
  13. package/src/components/zd-card/ZdCard.ts +1 -1
  14. package/src/components/zd-card/ZdCard.vue +2 -2
  15. package/src/components/zd-carousel/ZdCarousel.ts +3 -1
  16. package/src/components/zd-checkbox/ZdCheckbox.ts +1 -1
  17. package/src/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts +3 -1
  18. package/src/components/zd-chip/ZdChip.ts +1 -1
  19. package/src/components/zd-code-viewer/ZdCodeViewer.ts +1 -1
  20. package/src/components/zd-col/ZdCol.ts +1 -1
  21. package/src/components/zd-collapse-card/ZdCollapseCard.ts +3 -1
  22. package/src/components/zd-component/ZdComponent.ts +23 -1
  23. package/src/components/zd-component/ZdComponentRender.ts +2 -0
  24. package/src/components/zd-container/ZdContainer.ts +1 -1
  25. package/src/components/zd-currency/ZdCurrency.ts +1 -1
  26. package/src/components/zd-date-input/ZdDateInput.ts +1 -1
  27. package/src/components/zd-date-range/ZdDateRange.ts +1 -1
  28. package/src/components/zd-divider/ZdDivider.ts +1 -1
  29. package/src/components/zd-dropdown/ZdDropdown.ts +2 -1
  30. package/src/components/zd-dropdown/ZdDropdown.vue +1 -1
  31. package/src/components/zd-footer/ZdFooter.ts +1 -1
  32. package/src/components/zd-form/ZdForm.ts +2 -1
  33. package/src/components/zd-frame/ZdFrame.ts +3 -1
  34. package/src/components/zd-frame-page/ZdFramePage.ts +1 -1
  35. package/src/components/zd-frame-page/ZdFramePage.vue +1 -1
  36. package/src/components/zd-grid/ZdGrid.ts +10 -2
  37. package/src/components/zd-grid/ZdGrid.vue +1 -1
  38. package/src/components/zd-grid/cell/ZdGridCellContent.vue +5 -7
  39. package/src/components/zd-grid/column-header/ZdGridColumnHeader.vue +4 -7
  40. package/src/components/zd-grid-editable/ZdGridEditable.ts +9 -2
  41. package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -0
  42. package/src/components/zd-header/ZdHeader.ts +4 -1
  43. package/src/components/zd-icon/ZdIcon.ts +1 -1
  44. package/src/components/zd-image/ZdImage.ts +1 -1
  45. package/src/components/zd-increment/ZdIncrement.ts +1 -1
  46. package/src/components/zd-input/ZdInput.ts +10 -3
  47. package/src/components/zd-iterable/ZdIterable.ts +2 -0
  48. package/src/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts +6 -1
  49. package/src/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts +1 -1
  50. package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts +2 -1
  51. package/src/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts +8 -3
  52. package/src/components/zd-iterable/zd-search/ZdSearch.ts +1 -1
  53. package/src/components/zd-iterable-component-render/ZdIterableComponentRender.ts +12 -1
  54. package/src/components/zd-layout/ZdLayout.ts +1 -1
  55. package/src/components/zd-list/ZdList.scss +3 -0
  56. package/src/components/zd-list/ZdList.ts +2 -1
  57. package/src/components/zd-list/ZdListGroup.ts +2 -1
  58. package/src/components/zd-list/ZdListGroup.vue +14 -16
  59. package/src/components/zd-list/ZdListItem.ts +1 -1
  60. package/src/components/zd-loading/ZdLoading.ts +1 -1
  61. package/src/components/zd-loading/ZdLoading.vue +30 -53
  62. package/src/components/zd-login/ZdLogin.ts +3 -1
  63. package/src/components/zd-login/ZdLoginButton.ts +1 -1
  64. package/src/components/zd-main/ZdMain.ts +1 -1
  65. package/src/components/zd-master-detail/ZdMasterDetail.ts +1 -1
  66. package/src/components/zd-menu/ZdMenu.ts +9 -4
  67. package/src/components/zd-menu/ZdMenu.vue +6 -5
  68. package/src/components/zd-menu/ZdMenuButton.ts +1 -1
  69. package/src/components/zd-menu/ZdMenuGroup.ts +2 -1
  70. package/src/components/zd-menu/ZdMenuLink.ts +1 -1
  71. package/src/components/zd-menu/ZdMenuSeparator.ts +1 -1
  72. package/src/components/zd-modal/ZdModal.ts +1 -21
  73. package/src/components/zd-modal/ZdModal.vue +18 -77
  74. package/src/components/zd-modal/ZdModalCard.ts +100 -0
  75. package/src/components/zd-modal/ZdModalCard.vue +47 -0
  76. package/src/components/zd-modal/ZdModalCloseButton.ts +1 -1
  77. package/src/components/zd-month/ZdMonth.ts +1 -1
  78. package/src/components/zd-number-input/ZdNumberInput.ts +1 -1
  79. package/src/components/zd-password/ZdPassword.ts +1 -1
  80. package/src/components/zd-progress/ZdProgress.ts +2 -1
  81. package/src/components/zd-radio/ZdRadio.ts +2 -1
  82. package/src/components/zd-row/ZdRow.ts +1 -1
  83. package/src/components/zd-select/ZdSelect.ts +10 -2
  84. package/src/components/zd-select/ZdSelect.vue +2 -6
  85. package/src/components/zd-select-multiple/ZdSelectMultiple.ts +6 -1
  86. package/src/components/zd-select-multiple/ZdSelectMultiple.vue +1 -1
  87. package/src/components/zd-svg-map/ZdSvgMap.ts +1 -1
  88. package/src/components/zd-switch/ZdSwitch.ts +1 -1
  89. package/src/components/zd-table/ZdTable.ts +1 -1
  90. package/src/components/zd-tabs/ZdTab.ts +1 -1
  91. package/src/components/zd-tabs/ZdTabItem.vue +1 -0
  92. package/src/components/zd-tabs/ZdTabs.ts +4 -3
  93. package/src/components/zd-tabs/ZdTabs.vue +14 -5
  94. package/src/components/zd-tag/ZdTag.ts +1 -1
  95. package/src/components/zd-text/ZdText.ts +1 -1
  96. package/src/components/zd-text-input/ZdTextInput.ts +1 -1
  97. package/src/components/zd-text-input/ZdTextInput.vue +2 -2
  98. package/src/components/zd-textarea/ZdTextarea.ts +5 -1
  99. package/src/components/zd-textarea/ZdTextarea.vue +5 -2
  100. package/src/components/zd-time/ZdTime.ts +1 -1
  101. package/src/components/zd-tooltip/ZdTooltip.ts +1 -1
  102. package/src/components/zd-tooltip-overflow/ZdTooltipOverflow.vue +45 -0
  103. package/src/components/zd-tree/ZdTree.ts +5 -1
  104. package/src/components/zd-tree-grid/ZdTreeGrid.ts +2 -1
  105. package/src/composables/columnDrag.ts +9 -11
  106. package/src/composables/tableNavigation.ts +5 -1
  107. package/src/composables/useTooltipManager.ts +24 -0
  108. package/src/directives/index.ts +1 -0
  109. package/src/directives/v-tooltip-overflow.ts +97 -0
  110. package/src/index.ts +11 -0
  111. package/src/styles/_zd-input.scss +3 -2
  112. package/src/utils/fillHeight.ts +3 -2
  113. package/src/utils/index.ts +1 -0
  114. package/src/utils/plugins/getIconPlugin.ts +4 -3
  115. package/src/utils/tooltip-overflow/index.ts +2 -0
  116. package/src/utils/tooltip-overflow/install.ts +27 -0
  117. package/src/utils/tooltip-overflow/uninstall.ts +32 -0
  118. package/types/components/zd-alert/ZdAlert.d.ts +429 -351
  119. package/types/components/zd-badge/ZdBadge.d.ts +235 -211
  120. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +249 -222
  121. package/types/components/zd-button/ZdButton.d.ts +251 -227
  122. package/types/components/zd-button-group/ZdButtonGroup.d.ts +227 -212
  123. package/types/components/zd-card/ZdCard.d.ts +246 -222
  124. package/types/components/zd-carousel/ZdCarousel.d.ts +705 -701
  125. package/types/components/zd-checkbox/ZdCheckbox.d.ts +41 -14
  126. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +779 -746
  127. package/types/components/zd-chip/ZdChip.d.ts +246 -222
  128. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +264 -234
  129. package/types/components/zd-col/ZdCol.d.ts +244 -220
  130. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +541 -457
  131. package/types/components/zd-component/ZdComponent.d.ts +12 -5
  132. package/types/components/zd-component/ZdComponentRender.d.ts +12 -4
  133. package/types/components/zd-container/ZdContainer.d.ts +247 -223
  134. package/types/components/zd-currency/ZdCurrency.d.ts +765 -738
  135. package/types/components/zd-date-input/ZdDateInput.d.ts +62 -29
  136. package/types/components/zd-date-range/ZdDateRange.d.ts +776 -749
  137. package/types/components/zd-dialog/ZdDialog.d.ts +36 -12
  138. package/types/components/zd-divider/ZdDivider.d.ts +244 -220
  139. package/types/components/zd-dropdown/ZdDropdown.d.ts +342 -324
  140. package/types/components/zd-footer/ZdFooter.d.ts +624 -562
  141. package/types/components/zd-form/ZdForm.d.ts +12 -4
  142. package/types/components/zd-frame/ZdFrame.d.ts +13 -4
  143. package/types/components/zd-frame-page/ZdFramePage.d.ts +242 -215
  144. package/types/components/zd-grid/ZdGrid.d.ts +4500 -4527
  145. package/types/components/zd-grid/cell/ZdGridAction.d.ts +2 -2
  146. package/types/components/zd-grid/cell/ZdGridCell.d.ts +4 -4
  147. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +4 -4
  148. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +2 -2
  149. package/types/components/zd-grid/composables/grid-instance.d.ts +1927 -1238
  150. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +1927 -1238
  151. package/types/components/zd-grid/row/ZdGridRow.d.ts +6 -6
  152. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +1927 -1238
  153. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +5102 -6303
  154. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +341 -341
  155. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +6 -6
  156. package/types/components/zd-header/ZdHeader.d.ts +640 -582
  157. package/types/components/zd-icon/ZdIcon.d.ts +39 -15
  158. package/types/components/zd-image/ZdImage.d.ts +241 -220
  159. package/types/components/zd-increment/ZdIncrement.d.ts +765 -738
  160. package/types/components/zd-input/ZdInput.d.ts +15 -6
  161. package/types/components/zd-iterable/ZdIterable.d.ts +26 -12
  162. package/types/components/zd-iterable/ZdIterableNoData.d.ts +1927 -1238
  163. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +753 -470
  164. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +750 -461
  165. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +1659 -987
  166. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +762 -470
  167. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +50 -23
  168. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +1224 -1080
  169. package/types/components/zd-layout/ZdLayout.d.ts +243 -222
  170. package/types/components/zd-list/ZdList.d.ts +671 -432
  171. package/types/components/zd-list/ZdListGroup.d.ts +809 -570
  172. package/types/components/zd-list/ZdListItem.d.ts +424 -294
  173. package/types/components/zd-loading/ZdLoading.d.ts +35 -14
  174. package/types/components/zd-login/ZdLogin.d.ts +455 -425
  175. package/types/components/zd-login/ZdLoginButton.d.ts +678 -654
  176. package/types/components/zd-main/ZdMain.d.ts +241 -220
  177. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +261 -237
  178. package/types/components/zd-menu/ZdMenu.d.ts +1257 -3206
  179. package/types/components/zd-menu/ZdMenuButton.d.ts +244 -220
  180. package/types/components/zd-menu/ZdMenuGroup.d.ts +1219 -5391
  181. package/types/components/zd-menu/ZdMenuLink.d.ts +2042 -9432
  182. package/types/components/zd-menu/ZdMenuSeparator.d.ts +244 -220
  183. package/types/components/zd-modal/ZdModal.d.ts +0 -2
  184. package/types/components/zd-modal/ZdModalCard.d.ts +125 -0
  185. package/types/components/zd-modal/ZdModalCloseButton.d.ts +244 -220
  186. package/types/components/zd-month/ZdMonth.d.ts +774 -747
  187. package/types/components/zd-number-input/ZdNumberInput.d.ts +766 -739
  188. package/types/components/zd-password/ZdPassword.d.ts +765 -738
  189. package/types/components/zd-progress/ZdProgress.d.ts +363 -336
  190. package/types/components/zd-radio/ZdRadio.d.ts +44 -14
  191. package/types/components/zd-row/ZdRow.d.ts +244 -220
  192. package/types/components/zd-select/ZdSelect.d.ts +17 -5
  193. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +17 -5
  194. package/types/components/zd-svg-map/ZdSvgMap.d.ts +37 -13
  195. package/types/components/zd-switch/ZdSwitch.d.ts +764 -737
  196. package/types/components/zd-table/ZdTable.d.ts +547 -346
  197. package/types/components/zd-tabs/ZdTab.d.ts +233 -156
  198. package/types/components/zd-tabs/ZdTabItem.d.ts +36 -12
  199. package/types/components/zd-tabs/ZdTabs.d.ts +492 -306
  200. package/types/components/zd-tag/ZdTag.d.ts +244 -220
  201. package/types/components/zd-text/ZdText.d.ts +264 -234
  202. package/types/components/zd-text-input/ZdTextInput.d.ts +41 -14
  203. package/types/components/zd-textarea/ZdTextarea.d.ts +55 -15
  204. package/types/components/zd-time/ZdTime.d.ts +774 -747
  205. package/types/components/zd-toggleable/ZdToggleable.d.ts +13 -4
  206. package/types/components/zd-tooltip/ZdTooltip.d.ts +250 -226
  207. package/types/components/zd-tree/ZdTree.d.ts +799 -763
  208. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +3 -3
  209. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +5 -5
  210. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +2230 -2214
  211. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +4 -4
  212. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +6 -6
  213. package/types/composables/cellSelection.d.ts +2 -264
  214. package/types/composables/gridColumns.d.ts +200 -147
  215. package/types/composables/gridSorting.d.ts +1 -1
  216. package/types/composables/tableNavigation.d.ts +3 -2
  217. package/types/composables/useTooltipManager.d.ts +13 -0
  218. package/types/directives/index.d.ts +1 -0
  219. package/types/directives/v-tooltip-overflow.d.ts +12 -0
  220. package/types/index.d.ts +1 -0
  221. package/types/utils/fillHeight.d.ts +1 -1
  222. package/types/utils/index.d.ts +1 -0
  223. package/types/utils/tooltip-overflow/index.d.ts +2 -0
  224. package/types/utils/tooltip-overflow/install.d.ts +13 -0
  225. package/types/utils/tooltip-overflow/uninstall.d.ts +14 -0
  226. package/src/components/tooltip-overflow/ZdTooltipOverflow.ts +0 -63
  227. package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +0 -63
@@ -28,28 +28,39 @@ export declare const ZdFooterProps: {
28
28
  type: () => IComponentRender[];
29
29
  default: () => never[];
30
30
  };
31
- maxHeight: {
32
- type: (NumberConstructor | StringConstructor)[];
31
+ padless: {
32
+ type: (BooleanConstructor | StringConstructor)[];
33
+ default: boolean;
33
34
  };
34
- maxWidth: {
35
- type: (NumberConstructor | StringConstructor)[];
35
+ rightSlot: {
36
+ type: () => IComponentRender[];
37
+ default: () => never[];
36
38
  };
37
- minHeight: {
39
+ width: {
38
40
  type: (NumberConstructor | StringConstructor)[];
39
41
  };
40
42
  minWidth: {
41
43
  type: (NumberConstructor | StringConstructor)[];
44
+ default: string;
42
45
  };
43
- padless: {
46
+ maxWidth: {
47
+ type: (NumberConstructor | StringConstructor)[];
48
+ default: string;
49
+ };
50
+ fillHeight: {
44
51
  type: (BooleanConstructor | StringConstructor)[];
45
52
  default: boolean;
46
53
  };
47
- rightSlot: {
48
- type: () => IComponentRender[];
49
- default: () => never[];
54
+ height: {
55
+ type: (NumberConstructor | StringConstructor)[];
50
56
  };
51
- width: {
57
+ minHeight: {
52
58
  type: (NumberConstructor | StringConstructor)[];
59
+ default: string;
60
+ };
61
+ maxHeight: {
62
+ type: (NumberConstructor | StringConstructor)[];
63
+ default: string;
53
64
  };
54
65
  children: {
55
66
  type: (StringConstructor | {
@@ -60,16 +71,20 @@ export declare const ZdFooterProps: {
60
71
  isArray(arg: any): arg is any[];
61
72
  readonly prototype: any[];
62
73
  from<T>(arrayLike: ArrayLike<T>): T[];
63
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
64
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
65
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
66
- of<T_4>(...items: T_4[]): T_4[];
74
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
75
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
76
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
77
+ of<T>(...items: T[]): T[];
78
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
79
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
67
80
  readonly [Symbol.species]: ArrayConstructor;
68
81
  })[];
69
82
  default(): never[];
83
+ watch: boolean;
70
84
  };
71
85
  component: {
72
86
  type: StringConstructor;
87
+ watch: boolean;
73
88
  };
74
89
  allowDuplicate: {
75
90
  type: (BooleanConstructor | StringConstructor)[];
@@ -94,10 +109,12 @@ export declare const ZdFooterProps: {
94
109
  directives: {
95
110
  type: ObjectConstructor;
96
111
  default(): {};
112
+ watch: boolean;
97
113
  };
98
114
  events: {
99
115
  type: ObjectConstructor;
100
116
  default(): {};
117
+ watch: boolean;
101
118
  };
102
119
  instanceObject: {
103
120
  type: ObjectConstructor;
@@ -109,6 +126,7 @@ export declare const ZdFooterProps: {
109
126
  keyMap: {
110
127
  type: ObjectConstructor;
111
128
  default(): {};
129
+ watch: boolean;
112
130
  };
113
131
  light: {
114
132
  type: (BooleanConstructor | StringConstructor)[];
@@ -120,6 +138,7 @@ export declare const ZdFooterProps: {
120
138
  };
121
139
  parent: {
122
140
  type: ObjectConstructor;
141
+ watch: boolean;
123
142
  };
124
143
  tabStop: {
125
144
  type: (BooleanConstructor | StringConstructor)[];
@@ -158,28 +177,39 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
158
177
  type: () => IComponentRender[];
159
178
  default: () => never[];
160
179
  };
161
- maxHeight: {
162
- type: (NumberConstructor | StringConstructor)[];
180
+ padless: {
181
+ type: (BooleanConstructor | StringConstructor)[];
182
+ default: boolean;
163
183
  };
164
- maxWidth: {
165
- type: (NumberConstructor | StringConstructor)[];
184
+ rightSlot: {
185
+ type: () => IComponentRender[];
186
+ default: () => never[];
166
187
  };
167
- minHeight: {
188
+ width: {
168
189
  type: (NumberConstructor | StringConstructor)[];
169
190
  };
170
191
  minWidth: {
171
192
  type: (NumberConstructor | StringConstructor)[];
193
+ default: string;
172
194
  };
173
- padless: {
195
+ maxWidth: {
196
+ type: (NumberConstructor | StringConstructor)[];
197
+ default: string;
198
+ };
199
+ fillHeight: {
174
200
  type: (BooleanConstructor | StringConstructor)[];
175
201
  default: boolean;
176
202
  };
177
- rightSlot: {
178
- type: () => IComponentRender[];
179
- default: () => never[];
203
+ height: {
204
+ type: (NumberConstructor | StringConstructor)[];
180
205
  };
181
- width: {
206
+ minHeight: {
207
+ type: (NumberConstructor | StringConstructor)[];
208
+ default: string;
209
+ };
210
+ maxHeight: {
182
211
  type: (NumberConstructor | StringConstructor)[];
212
+ default: string;
183
213
  };
184
214
  children: {
185
215
  type: (StringConstructor | {
@@ -190,16 +220,20 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
190
220
  isArray(arg: any): arg is any[];
191
221
  readonly prototype: any[];
192
222
  from<T>(arrayLike: ArrayLike<T>): T[];
193
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
194
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
195
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
196
- of<T_4>(...items: T_4[]): T_4[];
223
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
224
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
225
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
226
+ of<T>(...items: T[]): T[];
227
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
228
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
197
229
  readonly [Symbol.species]: ArrayConstructor;
198
230
  })[];
199
231
  default(): never[];
232
+ watch: boolean;
200
233
  };
201
234
  component: {
202
235
  type: StringConstructor;
236
+ watch: boolean;
203
237
  };
204
238
  allowDuplicate: {
205
239
  type: (BooleanConstructor | StringConstructor)[];
@@ -224,10 +258,12 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
224
258
  directives: {
225
259
  type: ObjectConstructor;
226
260
  default(): {};
261
+ watch: boolean;
227
262
  };
228
263
  events: {
229
264
  type: ObjectConstructor;
230
265
  default(): {};
266
+ watch: boolean;
231
267
  };
232
268
  instanceObject: {
233
269
  type: ObjectConstructor;
@@ -239,6 +275,7 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
239
275
  keyMap: {
240
276
  type: ObjectConstructor;
241
277
  default(): {};
278
+ watch: boolean;
242
279
  };
243
280
  light: {
244
281
  type: (BooleanConstructor | StringConstructor)[];
@@ -250,6 +287,7 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
250
287
  };
251
288
  parent: {
252
289
  type: ObjectConstructor;
290
+ watch: boolean;
253
291
  };
254
292
  tabStop: {
255
293
  type: (BooleanConstructor | StringConstructor)[];
@@ -264,662 +302,662 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
264
302
  app: boolean;
265
303
  centerSlot: {
266
304
  [x: string]: any;
267
- children?: any[] | undefined;
305
+ children?: /*elided*/ any[] | undefined;
268
306
  component: string;
269
307
  allowDuplicate?: boolean | undefined;
270
308
  autofocus?: boolean | undefined;
271
309
  componentId?: number | undefined;
272
310
  cssClass?: string | undefined;
273
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
311
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
274
312
  events?: {
275
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
276
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
277
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
278
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
279
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
280
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
281
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
282
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
283
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
313
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
314
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
315
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
316
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
317
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
318
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
319
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
320
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
321
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
284
322
  } | undefined;
285
323
  directives?: {
286
324
  [x: string]: {
287
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
288
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
289
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
325
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
326
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
327
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
328
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
329
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
330
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
331
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
332
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
333
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
296
334
  } | undefined;
297
335
  touch?: {
298
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
299
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
300
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
301
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
302
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
303
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
305
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
306
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
336
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
337
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
338
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
339
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
340
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
341
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
342
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
343
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
344
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
307
345
  } | undefined;
308
346
  } | undefined;
309
- isVisible?: string | boolean | undefined;
347
+ isVisible?: boolean | string | undefined;
310
348
  dark?: boolean | undefined;
311
349
  light?: boolean | undefined;
312
350
  theme?: string | undefined;
313
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
351
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
314
352
  name: string;
315
353
  parent?: {
316
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
317
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
354
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
355
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
318
356
  allowDuplicate: boolean;
319
357
  autofocus: boolean;
320
358
  children: {
321
359
  [x: string]: any;
322
360
  allowDuplicate?: boolean | undefined;
323
361
  autofocus?: boolean | undefined;
324
- children?: any[] | undefined;
362
+ children?: /*elided*/ any[] | undefined;
325
363
  componentId?: number | undefined;
326
364
  cssClass?: string | undefined;
327
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
365
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
328
366
  events?: {
329
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
330
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
331
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
332
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
333
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
335
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
336
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
337
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
368
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
369
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
370
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
371
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
372
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
373
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
374
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
375
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
338
376
  } | undefined;
339
377
  directives?: {
340
378
  [x: string]: {
341
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
342
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
347
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
348
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
349
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
379
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
380
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
381
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
382
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
383
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
384
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
385
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
386
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
387
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
350
388
  } | undefined;
351
389
  touch?: {
352
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
353
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
354
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
355
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
356
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
357
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
358
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
359
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
360
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
390
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
391
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
392
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
393
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
394
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
395
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
396
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
397
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
398
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
361
399
  } | undefined;
362
400
  } | undefined;
363
- isVisible?: string | boolean | undefined;
401
+ isVisible?: boolean | string | undefined;
364
402
  dark?: boolean | undefined;
365
403
  light?: boolean | undefined;
366
404
  theme?: string | undefined;
367
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
405
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
368
406
  name: string;
369
- parent?: any | undefined;
407
+ parent?: /*elided*/ any | undefined;
370
408
  tabStop?: boolean | undefined;
371
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
372
- fillHeight?: boolean | undefined;
409
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
410
+ fillHeight?: boolean | string | undefined;
373
411
  }[];
374
412
  componentId: number;
375
413
  cssClass: string;
376
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
414
+ cssStyle: string | import("@zeedhi/core").IDictionary;
377
415
  events: {
378
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
379
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
380
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
381
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
382
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
384
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
385
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
386
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
416
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
417
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
418
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
419
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
420
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
421
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
422
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
423
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
424
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
387
425
  };
388
426
  directives: {
389
427
  [x: string]: {
390
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
391
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
392
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
393
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
394
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
395
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
428
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
429
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
430
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
431
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
432
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
433
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
434
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
435
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
436
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
399
437
  } | undefined;
400
438
  touch?: {
401
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
402
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
403
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
404
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
405
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
406
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
407
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
408
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
409
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
440
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
441
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
442
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
443
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
444
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
445
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
446
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
447
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
410
448
  } | undefined;
411
449
  };
412
- isVisible: string | boolean;
450
+ isVisible: boolean | string;
413
451
  dark: boolean;
414
452
  light: boolean;
415
453
  theme?: string | undefined;
416
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
454
+ keyMap: import("@zeedhi/core").IKeyMap;
417
455
  name: string;
418
- parent?: any | undefined;
456
+ parent?: /*elided*/ any | undefined;
419
457
  tabStop: boolean;
420
- userProperties: import("@zeedhi/core").IDictionary<any>;
421
- fillHeight: boolean;
458
+ userProperties: import("@zeedhi/core").IDictionary;
459
+ fillHeight: boolean | string;
422
460
  } | undefined;
423
461
  tabStop?: boolean | undefined;
424
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
425
- fillHeight?: boolean | undefined;
462
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
463
+ fillHeight?: boolean | string | undefined;
426
464
  }[];
427
465
  color: string;
428
466
  fixed: boolean;
429
- height: string | number;
467
+ height: number | string;
430
468
  inset: boolean;
431
469
  leftSlot: {
432
470
  [x: string]: any;
433
- children?: any[] | undefined;
471
+ children?: /*elided*/ any[] | undefined;
434
472
  component: string;
435
473
  allowDuplicate?: boolean | undefined;
436
474
  autofocus?: boolean | undefined;
437
475
  componentId?: number | undefined;
438
476
  cssClass?: string | undefined;
439
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
477
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
440
478
  events?: {
441
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
442
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
445
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
446
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
447
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
448
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
449
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
479
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
480
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
481
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
482
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
483
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
484
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
485
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
486
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
487
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
450
488
  } | undefined;
451
489
  directives?: {
452
490
  [x: string]: {
453
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
454
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
456
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
457
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
458
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
459
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
460
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
492
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
493
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
494
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
495
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
496
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
497
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
498
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
499
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
462
500
  } | undefined;
463
501
  touch?: {
464
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
465
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
466
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
467
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
468
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
469
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
470
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
471
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
472
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
503
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
504
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
505
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
506
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
507
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
508
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
509
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
510
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
473
511
  } | undefined;
474
512
  } | undefined;
475
- isVisible?: string | boolean | undefined;
513
+ isVisible?: boolean | string | undefined;
476
514
  dark?: boolean | undefined;
477
515
  light?: boolean | undefined;
478
516
  theme?: string | undefined;
479
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
517
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
480
518
  name: string;
481
519
  parent?: {
482
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
483
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
520
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
521
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
484
522
  allowDuplicate: boolean;
485
523
  autofocus: boolean;
486
524
  children: {
487
525
  [x: string]: any;
488
526
  allowDuplicate?: boolean | undefined;
489
527
  autofocus?: boolean | undefined;
490
- children?: any[] | undefined;
528
+ children?: /*elided*/ any[] | undefined;
491
529
  componentId?: number | undefined;
492
530
  cssClass?: string | undefined;
493
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
531
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
494
532
  events?: {
495
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
496
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
497
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
498
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
499
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
533
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
534
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
535
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
536
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
537
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
538
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
539
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
540
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
541
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
504
542
  } | undefined;
505
543
  directives?: {
506
544
  [x: string]: {
507
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
508
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
509
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
512
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
545
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
546
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
547
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
548
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
549
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
550
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
551
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
552
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
553
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
516
554
  } | undefined;
517
555
  touch?: {
518
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
519
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
520
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
521
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
522
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
523
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
524
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
525
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
526
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
557
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
558
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
559
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
560
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
561
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
562
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
563
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
564
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
527
565
  } | undefined;
528
566
  } | undefined;
529
- isVisible?: string | boolean | undefined;
567
+ isVisible?: boolean | string | undefined;
530
568
  dark?: boolean | undefined;
531
569
  light?: boolean | undefined;
532
570
  theme?: string | undefined;
533
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
571
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
534
572
  name: string;
535
- parent?: any | undefined;
573
+ parent?: /*elided*/ any | undefined;
536
574
  tabStop?: boolean | undefined;
537
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
538
- fillHeight?: boolean | undefined;
575
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
576
+ fillHeight?: boolean | string | undefined;
539
577
  }[];
540
578
  componentId: number;
541
579
  cssClass: string;
542
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
580
+ cssStyle: string | import("@zeedhi/core").IDictionary;
543
581
  events: {
544
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
545
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
546
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
547
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
548
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
582
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
583
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
584
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
585
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
586
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
587
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
588
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
589
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
590
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
553
591
  };
554
592
  directives: {
555
593
  [x: string]: {
556
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
557
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
558
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
559
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
560
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
594
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
595
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
596
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
597
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
598
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
599
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
600
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
601
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
602
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
565
603
  } | undefined;
566
604
  touch?: {
567
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
568
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
570
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
571
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
606
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
607
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
608
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
609
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
610
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
611
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
612
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
613
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
576
614
  } | undefined;
577
615
  };
578
- isVisible: string | boolean;
616
+ isVisible: boolean | string;
579
617
  dark: boolean;
580
618
  light: boolean;
581
619
  theme?: string | undefined;
582
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
620
+ keyMap: import("@zeedhi/core").IKeyMap;
583
621
  name: string;
584
- parent?: any | undefined;
622
+ parent?: /*elided*/ any | undefined;
585
623
  tabStop: boolean;
586
- userProperties: import("@zeedhi/core").IDictionary<any>;
587
- fillHeight: boolean;
624
+ userProperties: import("@zeedhi/core").IDictionary;
625
+ fillHeight: boolean | string;
588
626
  } | undefined;
589
627
  tabStop?: boolean | undefined;
590
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
591
- fillHeight?: boolean | undefined;
628
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
629
+ fillHeight?: boolean | string | undefined;
592
630
  }[];
593
- maxHeight?: string | number | undefined;
594
- maxWidth?: string | number | undefined;
595
- minHeight?: string | number | undefined;
596
- minWidth?: string | number | undefined;
631
+ maxHeight?: number | string | undefined;
632
+ maxWidth?: number | string | undefined;
633
+ minHeight?: number | string | undefined;
634
+ minWidth?: number | string | undefined;
597
635
  padless: boolean;
598
636
  rightSlot: {
599
637
  [x: string]: any;
600
- children?: any[] | undefined;
638
+ children?: /*elided*/ any[] | undefined;
601
639
  component: string;
602
640
  allowDuplicate?: boolean | undefined;
603
641
  autofocus?: boolean | undefined;
604
642
  componentId?: number | undefined;
605
643
  cssClass?: string | undefined;
606
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
644
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
607
645
  events?: {
608
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
609
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
647
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
648
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
649
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
650
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
651
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
652
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
653
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
654
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
617
655
  } | undefined;
618
656
  directives?: {
619
657
  [x: string]: {
620
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
621
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
659
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
660
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
661
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
662
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
663
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
664
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
665
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
666
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
629
667
  } | undefined;
630
668
  touch?: {
631
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
632
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
670
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
671
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
672
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
673
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
674
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
675
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
676
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
677
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
640
678
  } | undefined;
641
679
  } | undefined;
642
- isVisible?: string | boolean | undefined;
680
+ isVisible?: boolean | string | undefined;
643
681
  dark?: boolean | undefined;
644
682
  light?: boolean | undefined;
645
683
  theme?: string | undefined;
646
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
684
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
647
685
  name: string;
648
686
  parent?: {
649
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
650
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
687
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
688
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
651
689
  allowDuplicate: boolean;
652
690
  autofocus: boolean;
653
691
  children: {
654
692
  [x: string]: any;
655
693
  allowDuplicate?: boolean | undefined;
656
694
  autofocus?: boolean | undefined;
657
- children?: any[] | undefined;
695
+ children?: /*elided*/ any[] | undefined;
658
696
  componentId?: number | undefined;
659
697
  cssClass?: string | undefined;
660
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
698
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
661
699
  events?: {
662
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
700
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
701
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
702
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
703
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
704
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
705
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
706
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
707
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
708
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
671
709
  } | undefined;
672
710
  directives?: {
673
711
  [x: string]: {
674
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
675
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
713
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
714
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
715
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
716
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
717
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
718
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
719
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
720
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
683
721
  } | undefined;
684
722
  touch?: {
685
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
686
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
724
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
725
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
726
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
727
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
728
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
729
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
730
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
731
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
694
732
  } | undefined;
695
733
  } | undefined;
696
- isVisible?: string | boolean | undefined;
734
+ isVisible?: boolean | string | undefined;
697
735
  dark?: boolean | undefined;
698
736
  light?: boolean | undefined;
699
737
  theme?: string | undefined;
700
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
738
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
701
739
  name: string;
702
- parent?: any | undefined;
740
+ parent?: /*elided*/ any | undefined;
703
741
  tabStop?: boolean | undefined;
704
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
705
- fillHeight?: boolean | undefined;
742
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
743
+ fillHeight?: boolean | string | undefined;
706
744
  }[];
707
745
  componentId: number;
708
746
  cssClass: string;
709
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
747
+ cssStyle: string | import("@zeedhi/core").IDictionary;
710
748
  events: {
711
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
712
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
750
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
751
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
752
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
753
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
754
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
755
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
756
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
757
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
720
758
  };
721
759
  directives: {
722
760
  [x: string]: {
723
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
724
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
762
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
763
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
764
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
765
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
766
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
767
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
768
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
769
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
732
770
  } | undefined;
733
771
  touch?: {
734
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
735
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
773
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
774
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
775
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
776
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
777
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
778
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
779
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
780
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
743
781
  } | undefined;
744
782
  };
745
- isVisible: string | boolean;
783
+ isVisible: boolean | string;
746
784
  dark: boolean;
747
785
  light: boolean;
748
786
  theme?: string | undefined;
749
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
787
+ keyMap: import("@zeedhi/core").IKeyMap;
750
788
  name: string;
751
- parent?: any | undefined;
789
+ parent?: /*elided*/ any | undefined;
752
790
  tabStop: boolean;
753
- userProperties: import("@zeedhi/core").IDictionary<any>;
754
- fillHeight: boolean;
791
+ userProperties: import("@zeedhi/core").IDictionary;
792
+ fillHeight: boolean | string;
755
793
  } | undefined;
756
794
  tabStop?: boolean | undefined;
757
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
758
- fillHeight?: boolean | undefined;
795
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
796
+ fillHeight?: boolean | string | undefined;
759
797
  }[];
760
- width?: string | number | undefined;
798
+ width?: number | string | undefined;
761
799
  readonly namedSlotsIsVisible: number;
762
800
  children: {
763
801
  [x: string]: any;
764
- children?: any[] | undefined;
802
+ children?: /*elided*/ any[] | undefined;
765
803
  component: string;
766
804
  allowDuplicate?: boolean | undefined;
767
805
  autofocus?: boolean | undefined;
768
806
  componentId?: number | undefined;
769
807
  cssClass?: string | undefined;
770
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
808
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
771
809
  events?: {
772
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
773
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
811
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
812
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
813
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
814
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
815
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
816
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
817
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
818
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
781
819
  } | undefined;
782
820
  directives?: {
783
821
  [x: string]: {
784
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
785
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
786
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
823
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
824
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
825
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
826
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
827
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
828
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
829
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
830
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
793
831
  } | undefined;
794
832
  touch?: {
795
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
796
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
803
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
834
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
835
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
836
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
837
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
838
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
839
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
840
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
841
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
804
842
  } | undefined;
805
843
  } | undefined;
806
- isVisible?: string | boolean | undefined;
844
+ isVisible?: boolean | string | undefined;
807
845
  dark?: boolean | undefined;
808
846
  light?: boolean | undefined;
809
847
  theme?: string | undefined;
810
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
848
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
811
849
  name: string;
812
850
  parent?: {
813
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
814
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
851
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
852
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
815
853
  allowDuplicate: boolean;
816
854
  autofocus: boolean;
817
855
  children: {
818
856
  [x: string]: any;
819
857
  allowDuplicate?: boolean | undefined;
820
858
  autofocus?: boolean | undefined;
821
- children?: any[] | undefined;
859
+ children?: /*elided*/ any[] | undefined;
822
860
  componentId?: number | undefined;
823
861
  cssClass?: string | undefined;
824
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
862
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
825
863
  events?: {
826
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
827
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
834
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
864
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
865
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
866
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
867
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
868
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
869
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
870
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
871
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
872
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
835
873
  } | undefined;
836
874
  directives?: {
837
875
  [x: string]: {
838
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
839
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
840
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
841
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
842
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
843
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
844
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
845
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
846
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
876
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
877
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
878
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
879
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
880
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
881
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
882
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
883
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
884
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
847
885
  } | undefined;
848
886
  touch?: {
849
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
850
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
851
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
852
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
853
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
854
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
855
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
887
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
888
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
889
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
890
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
891
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
892
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
893
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
894
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
895
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
858
896
  } | undefined;
859
897
  } | undefined;
860
- isVisible?: string | boolean | undefined;
898
+ isVisible?: boolean | string | undefined;
861
899
  dark?: boolean | undefined;
862
900
  light?: boolean | undefined;
863
901
  theme?: string | undefined;
864
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
902
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
865
903
  name: string;
866
- parent?: any | undefined;
904
+ parent?: /*elided*/ any | undefined;
867
905
  tabStop?: boolean | undefined;
868
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
869
- fillHeight?: boolean | undefined;
906
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
907
+ fillHeight?: boolean | string | undefined;
870
908
  }[];
871
909
  componentId: number;
872
910
  cssClass: string;
873
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
911
+ cssStyle: string | import("@zeedhi/core").IDictionary;
874
912
  events: {
875
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
876
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
913
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
914
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
915
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
916
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
917
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
918
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
919
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
920
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
921
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
884
922
  };
885
923
  directives: {
886
924
  [x: string]: {
887
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
888
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
889
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
925
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
926
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
927
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
928
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
929
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
930
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
931
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
932
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
933
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
896
934
  } | undefined;
897
935
  touch?: {
898
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
899
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
937
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
938
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
939
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
940
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
941
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
942
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
943
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
944
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
907
945
  } | undefined;
908
946
  };
909
- isVisible: string | boolean;
947
+ isVisible: boolean | string;
910
948
  dark: boolean;
911
949
  light: boolean;
912
950
  theme?: string | undefined;
913
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
951
+ keyMap: import("@zeedhi/core").IKeyMap;
914
952
  name: string;
915
- parent?: any | undefined;
953
+ parent?: /*elided*/ any | undefined;
916
954
  tabStop: boolean;
917
- userProperties: import("@zeedhi/core").IDictionary<any>;
918
- fillHeight: boolean;
955
+ userProperties: import("@zeedhi/core").IDictionary;
956
+ fillHeight: boolean | string;
919
957
  } | undefined;
920
958
  tabStop?: boolean | undefined;
921
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
922
- fillHeight?: boolean | undefined;
959
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
960
+ fillHeight?: boolean | string | undefined;
923
961
  }[];
924
962
  component: string;
925
963
  allowDuplicate: boolean;
@@ -929,155 +967,155 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
929
967
  cssStyle: string | import("@zeedhi/core").IDictionary<string>;
930
968
  directives: {
931
969
  [x: string]: {
932
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
933
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
937
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
938
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
939
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
940
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
971
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
972
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
973
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
974
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
975
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
976
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
977
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
978
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
941
979
  } | undefined;
942
980
  touch?: {
943
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
944
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
948
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
950
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
982
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
983
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
984
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
985
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
986
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
987
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
988
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
989
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
952
990
  } | undefined;
953
991
  };
954
992
  events: {
955
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
956
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
961
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
993
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
994
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
995
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
996
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
997
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
998
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
999
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1000
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1001
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
964
1002
  };
965
1003
  isVisible: boolean;
966
1004
  name: string;
967
1005
  dark: boolean;
968
1006
  light: boolean;
969
1007
  theme?: string | undefined;
970
- fillHeight: boolean;
1008
+ fillHeight: boolean | string;
971
1009
  parent?: {
972
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
973
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1010
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1011
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
974
1012
  allowDuplicate: boolean;
975
1013
  autofocus: boolean;
976
1014
  children: {
977
1015
  [x: string]: any;
978
1016
  allowDuplicate?: boolean | undefined;
979
1017
  autofocus?: boolean | undefined;
980
- children?: any[] | undefined;
1018
+ children?: /*elided*/ any[] | undefined;
981
1019
  componentId?: number | undefined;
982
1020
  cssClass?: string | undefined;
983
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1021
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
984
1022
  events?: {
985
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
986
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
989
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
990
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
991
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
992
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
993
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1023
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1024
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1025
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1026
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1027
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1028
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1029
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1030
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1031
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
994
1032
  } | undefined;
995
1033
  directives?: {
996
1034
  [x: string]: {
997
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
998
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
999
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1000
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1001
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1036
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1037
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1038
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1039
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1040
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1041
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1042
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1043
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1006
1044
  } | undefined;
1007
1045
  touch?: {
1008
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1009
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1010
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1011
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1012
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1013
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1046
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1047
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1048
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1049
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1050
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1051
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1052
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1053
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1054
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1017
1055
  } | undefined;
1018
1056
  } | undefined;
1019
- isVisible?: string | boolean | undefined;
1057
+ isVisible?: boolean | string | undefined;
1020
1058
  dark?: boolean | undefined;
1021
1059
  light?: boolean | undefined;
1022
1060
  theme?: string | undefined;
1023
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1061
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1024
1062
  name: string;
1025
- parent?: any | undefined;
1063
+ parent?: /*elided*/ any | undefined;
1026
1064
  tabStop?: boolean | undefined;
1027
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1028
- fillHeight?: boolean | undefined;
1065
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1066
+ fillHeight?: boolean | string | undefined;
1029
1067
  }[];
1030
1068
  componentId: number;
1031
1069
  cssClass: string;
1032
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1070
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1033
1071
  events: {
1034
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1035
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1072
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1073
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1074
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1075
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1076
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1077
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1078
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1079
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1080
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1043
1081
  };
1044
1082
  directives: {
1045
1083
  [x: string]: {
1046
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1047
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1085
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1086
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1087
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1088
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1089
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1090
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1091
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1092
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1055
1093
  } | undefined;
1056
1094
  touch?: {
1057
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1058
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1059
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
1096
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1097
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1098
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1099
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1100
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1101
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1102
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1103
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1066
1104
  } | undefined;
1067
1105
  };
1068
- isVisible: string | boolean;
1106
+ isVisible: boolean | string;
1069
1107
  dark: boolean;
1070
1108
  light: boolean;
1071
1109
  theme?: string | undefined;
1072
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1110
+ keyMap: import("@zeedhi/core").IKeyMap;
1073
1111
  name: string;
1074
- parent?: any | undefined;
1112
+ parent?: /*elided*/ any | undefined;
1075
1113
  tabStop: boolean;
1076
- userProperties: import("@zeedhi/core").IDictionary<any>;
1077
- fillHeight: boolean;
1114
+ userProperties: import("@zeedhi/core").IDictionary;
1115
+ fillHeight: boolean | string;
1078
1116
  } | undefined;
1079
1117
  componentId: number;
1080
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1118
+ keyMap: import("@zeedhi/core").IKeyMap;
1081
1119
  isFocused: boolean;
1082
1120
  tabStop: boolean;
1083
1121
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -1086,22 +1124,22 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1086
1124
  callEvent: (eventName: string, args: any) => boolean;
1087
1125
  addChild: (child: import("@zeedhi/common").IComponent) => void;
1088
1126
  removeChild: (name: string) => void;
1089
- getChildInstance: <T_1>(name: string) => T_1;
1090
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1127
+ getChildInstance: <T>(name: string) => T;
1128
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1091
1129
  onCreated: () => void;
1092
1130
  onBeforeMount: () => void;
1093
1131
  onMounted: (element: any) => void;
1094
1132
  onBeforeDestroy: () => void;
1095
1133
  onDestroyed: () => void;
1096
- click: (event?: Event | undefined, element?: any) => void;
1134
+ click: (event?: Event, element?: any) => void;
1097
1135
  focus: (event: Event, element: any) => void;
1098
1136
  blur: (event: Event, element: any) => void;
1099
- mouseenter: (event?: Event | undefined, element?: any) => void;
1100
- mouseleave: (event?: Event | undefined, element?: any) => void;
1101
- mouseout: (event?: Event | undefined, element?: any) => void;
1102
- mouseover: (event?: Event | undefined, element?: any) => void;
1137
+ mouseenter: (event?: Event, element?: any) => void;
1138
+ mouseleave: (event?: Event, element?: any) => void;
1139
+ mouseout: (event?: Event, element?: any) => void;
1140
+ mouseover: (event?: Event, element?: any) => void;
1103
1141
  };
1104
- root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
1142
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
1105
1143
  click: (event: Event) => void;
1106
1144
  mouseenter: (event: Event) => void;
1107
1145
  mouseleave: (event: Event) => void;
@@ -1136,28 +1174,39 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1136
1174
  type: () => IComponentRender[];
1137
1175
  default: () => never[];
1138
1176
  };
1139
- maxHeight: {
1140
- type: (NumberConstructor | StringConstructor)[];
1177
+ padless: {
1178
+ type: (BooleanConstructor | StringConstructor)[];
1179
+ default: boolean;
1141
1180
  };
1142
- maxWidth: {
1143
- type: (NumberConstructor | StringConstructor)[];
1181
+ rightSlot: {
1182
+ type: () => IComponentRender[];
1183
+ default: () => never[];
1144
1184
  };
1145
- minHeight: {
1185
+ width: {
1146
1186
  type: (NumberConstructor | StringConstructor)[];
1147
1187
  };
1148
1188
  minWidth: {
1149
1189
  type: (NumberConstructor | StringConstructor)[];
1190
+ default: string;
1150
1191
  };
1151
- padless: {
1192
+ maxWidth: {
1193
+ type: (NumberConstructor | StringConstructor)[];
1194
+ default: string;
1195
+ };
1196
+ fillHeight: {
1152
1197
  type: (BooleanConstructor | StringConstructor)[];
1153
1198
  default: boolean;
1154
1199
  };
1155
- rightSlot: {
1156
- type: () => IComponentRender[];
1157
- default: () => never[];
1200
+ height: {
1201
+ type: (NumberConstructor | StringConstructor)[];
1158
1202
  };
1159
- width: {
1203
+ minHeight: {
1160
1204
  type: (NumberConstructor | StringConstructor)[];
1205
+ default: string;
1206
+ };
1207
+ maxHeight: {
1208
+ type: (NumberConstructor | StringConstructor)[];
1209
+ default: string;
1161
1210
  };
1162
1211
  children: {
1163
1212
  type: (StringConstructor | {
@@ -1168,16 +1217,20 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1168
1217
  isArray(arg: any): arg is any[];
1169
1218
  readonly prototype: any[];
1170
1219
  from<T>(arrayLike: ArrayLike<T>): T[];
1171
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1172
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1173
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1174
- of<T_4>(...items: T_4[]): T_4[];
1220
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1221
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
1222
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1223
+ of<T>(...items: T[]): T[];
1224
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
1225
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
1175
1226
  readonly [Symbol.species]: ArrayConstructor;
1176
1227
  })[];
1177
1228
  default(): never[];
1229
+ watch: boolean;
1178
1230
  };
1179
1231
  component: {
1180
1232
  type: StringConstructor;
1233
+ watch: boolean;
1181
1234
  };
1182
1235
  allowDuplicate: {
1183
1236
  type: (BooleanConstructor | StringConstructor)[];
@@ -1202,10 +1255,12 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1202
1255
  directives: {
1203
1256
  type: ObjectConstructor;
1204
1257
  default(): {};
1258
+ watch: boolean;
1205
1259
  };
1206
1260
  events: {
1207
1261
  type: ObjectConstructor;
1208
1262
  default(): {};
1263
+ watch: boolean;
1209
1264
  };
1210
1265
  instanceObject: {
1211
1266
  type: ObjectConstructor;
@@ -1217,6 +1272,7 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1217
1272
  keyMap: {
1218
1273
  type: ObjectConstructor;
1219
1274
  default(): {};
1275
+ watch: boolean;
1220
1276
  };
1221
1277
  light: {
1222
1278
  type: (BooleanConstructor | StringConstructor)[];
@@ -1228,6 +1284,7 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1228
1284
  };
1229
1285
  parent: {
1230
1286
  type: ObjectConstructor;
1287
+ watch: boolean;
1231
1288
  };
1232
1289
  tabStop: {
1233
1290
  type: (BooleanConstructor | StringConstructor)[];
@@ -1249,9 +1306,14 @@ declare const FooterComponent: import("vue").DefineComponent<import("vue").Extra
1249
1306
  keyMap: Record<string, any>;
1250
1307
  light: string | boolean;
1251
1308
  tabStop: string | boolean;
1309
+ fillHeight: string | boolean;
1252
1310
  fixed: string | boolean;
1253
1311
  absolute: string | boolean;
1254
1312
  color: string;
1313
+ minWidth: string | number;
1314
+ maxWidth: string | number;
1315
+ minHeight: string | number;
1316
+ maxHeight: string | number;
1255
1317
  inset: string | boolean;
1256
1318
  app: string | boolean;
1257
1319
  centerSlot: IComponentRender[];