@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
@@ -168,16 +168,20 @@ export declare const ZdLoginButtonProps: {
168
168
  isArray(arg: any): arg is any[];
169
169
  readonly prototype: any[];
170
170
  from<T>(arrayLike: ArrayLike<T>): T[];
171
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
172
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
173
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
174
- of<T_4>(...items: T_4[]): T_4[];
171
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
172
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
173
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
174
+ of<T>(...items: T[]): T[];
175
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
176
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
175
177
  readonly [Symbol.species]: ArrayConstructor;
176
178
  })[];
177
179
  default(): never[];
180
+ watch: boolean;
178
181
  };
179
182
  component: {
180
183
  type: StringConstructor;
184
+ watch: boolean;
181
185
  };
182
186
  allowDuplicate: {
183
187
  type: (BooleanConstructor | StringConstructor)[];
@@ -202,10 +206,12 @@ export declare const ZdLoginButtonProps: {
202
206
  directives: {
203
207
  type: ObjectConstructor;
204
208
  default(): {};
209
+ watch: boolean;
205
210
  };
206
211
  events: {
207
212
  type: ObjectConstructor;
208
213
  default(): {};
214
+ watch: boolean;
209
215
  };
210
216
  instanceObject: {
211
217
  type: ObjectConstructor;
@@ -217,6 +223,7 @@ export declare const ZdLoginButtonProps: {
217
223
  keyMap: {
218
224
  type: ObjectConstructor;
219
225
  default(): {};
226
+ watch: boolean;
220
227
  };
221
228
  light: {
222
229
  type: (BooleanConstructor | StringConstructor)[];
@@ -228,6 +235,7 @@ export declare const ZdLoginButtonProps: {
228
235
  };
229
236
  parent: {
230
237
  type: ObjectConstructor;
238
+ watch: boolean;
231
239
  };
232
240
  tabStop: {
233
241
  type: (BooleanConstructor | StringConstructor)[];
@@ -407,16 +415,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
407
415
  isArray(arg: any): arg is any[];
408
416
  readonly prototype: any[];
409
417
  from<T>(arrayLike: ArrayLike<T>): T[];
410
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
411
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
412
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
413
- of<T_4>(...items: T_4[]): T_4[];
418
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
419
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
420
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
421
+ of<T>(...items: T[]): T[];
422
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
423
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
414
424
  readonly [Symbol.species]: ArrayConstructor;
415
425
  })[];
416
426
  default(): never[];
427
+ watch: boolean;
417
428
  };
418
429
  component: {
419
430
  type: StringConstructor;
431
+ watch: boolean;
420
432
  };
421
433
  allowDuplicate: {
422
434
  type: (BooleanConstructor | StringConstructor)[];
@@ -441,10 +453,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
441
453
  directives: {
442
454
  type: ObjectConstructor;
443
455
  default(): {};
456
+ watch: boolean;
444
457
  };
445
458
  events: {
446
459
  type: ObjectConstructor;
447
460
  default(): {};
461
+ watch: boolean;
448
462
  };
449
463
  instanceObject: {
450
464
  type: ObjectConstructor;
@@ -456,6 +470,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
456
470
  keyMap: {
457
471
  type: ObjectConstructor;
458
472
  default(): {};
473
+ watch: boolean;
459
474
  };
460
475
  light: {
461
476
  type: (BooleanConstructor | StringConstructor)[];
@@ -467,6 +482,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
467
482
  };
468
483
  parent: {
469
484
  type: ObjectConstructor;
485
+ watch: boolean;
470
486
  };
471
487
  tabStop: {
472
488
  type: (BooleanConstructor | StringConstructor)[];
@@ -496,324 +512,324 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
496
512
  } | undefined;
497
513
  children?: {
498
514
  [x: string]: any;
499
- children?: any[] | undefined;
515
+ children?: /*elided*/ any[] | undefined;
500
516
  component: string;
501
517
  allowDuplicate?: boolean | undefined;
502
518
  autofocus?: boolean | undefined;
503
519
  componentId?: number | undefined;
504
520
  cssClass?: string | undefined;
505
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
521
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
506
522
  events?: {
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;
523
+ [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;
524
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
525
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
526
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
527
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
528
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
529
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
530
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
531
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
516
532
  } | undefined;
517
533
  directives?: {
518
534
  [x: string]: {
519
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
520
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
521
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
522
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
523
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
524
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
525
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
526
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
535
+ [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;
536
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
537
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
538
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
539
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
540
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
541
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
542
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
543
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
528
544
  } | undefined;
529
545
  touch?: {
530
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
531
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
533
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
534
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
535
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
536
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
537
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
546
+ [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;
547
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
548
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
549
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
550
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
551
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
552
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
553
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
554
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
539
555
  } | undefined;
540
556
  } | undefined;
541
- isVisible?: string | boolean | undefined;
557
+ isVisible?: boolean | string | undefined;
542
558
  dark?: boolean | undefined;
543
559
  light?: boolean | undefined;
544
560
  theme?: string | undefined;
545
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
561
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
546
562
  name: string;
547
563
  parent?: {
548
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
549
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
564
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
565
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
550
566
  allowDuplicate: boolean;
551
567
  autofocus: boolean;
552
568
  children: {
553
569
  [x: string]: any;
554
570
  allowDuplicate?: boolean | undefined;
555
571
  autofocus?: boolean | undefined;
556
- children?: any[] | undefined;
572
+ children?: /*elided*/ any[] | undefined;
557
573
  componentId?: number | undefined;
558
574
  cssClass?: string | undefined;
559
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
575
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
560
576
  events?: {
561
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
562
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
+ [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;
578
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
579
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
580
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
581
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
582
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
583
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
584
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
585
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
570
586
  } | undefined;
571
587
  directives?: {
572
588
  [x: string]: {
573
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
574
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
581
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
+ [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;
590
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
591
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
592
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
593
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
594
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
595
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
596
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
597
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
582
598
  } | undefined;
583
599
  touch?: {
584
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
585
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
588
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
591
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
592
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
+ [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;
601
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
602
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
603
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
604
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
605
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
606
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
607
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
608
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
593
609
  } | undefined;
594
610
  } | undefined;
595
- isVisible?: string | boolean | undefined;
611
+ isVisible?: boolean | string | undefined;
596
612
  dark?: boolean | undefined;
597
613
  light?: boolean | undefined;
598
614
  theme?: string | undefined;
599
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
615
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
600
616
  name: string;
601
- parent?: any | undefined;
617
+ parent?: /*elided*/ any | undefined;
602
618
  tabStop?: boolean | undefined;
603
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
604
- fillHeight?: boolean | undefined;
619
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
620
+ fillHeight?: boolean | string | undefined;
605
621
  }[];
606
622
  componentId: number;
607
623
  cssClass: string;
608
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
624
+ cssStyle: string | import("@zeedhi/core").IDictionary;
609
625
  events: {
610
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
611
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
+ [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;
627
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
628
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
629
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
630
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
631
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
632
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
633
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
634
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
619
635
  };
620
636
  directives: {
621
637
  [x: string]: {
622
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
623
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
+ [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;
639
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
640
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
641
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
642
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
643
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
644
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
645
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
646
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
631
647
  } | undefined;
632
648
  touch?: {
633
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
634
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
649
+ [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;
650
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
651
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
652
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
653
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
654
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
655
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
656
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
657
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
642
658
  } | undefined;
643
659
  };
644
- isVisible: string | boolean;
660
+ isVisible: boolean | string;
645
661
  dark: boolean;
646
662
  light: boolean;
647
663
  theme?: string | undefined;
648
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
664
+ keyMap: import("@zeedhi/core").IKeyMap;
649
665
  name: string;
650
- parent?: any | undefined;
666
+ parent?: /*elided*/ any | undefined;
651
667
  tabStop: boolean;
652
- userProperties: import("@zeedhi/core").IDictionary<any>;
653
- fillHeight: boolean;
668
+ userProperties: import("@zeedhi/core").IDictionary;
669
+ fillHeight: boolean | string;
654
670
  } | undefined;
655
671
  tabStop?: boolean | undefined;
656
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
657
- fillHeight?: boolean | undefined;
672
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
673
+ fillHeight?: boolean | string | undefined;
658
674
  }[] | undefined;
659
675
  component: string;
660
676
  allowDuplicate?: boolean | undefined;
661
677
  autofocus?: boolean | undefined;
662
678
  componentId?: number | undefined;
663
679
  cssClass?: string | undefined;
664
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
680
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
665
681
  events?: {
666
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
667
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ [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;
683
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
684
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
685
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
686
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
687
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
688
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
689
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
690
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
675
691
  } | undefined;
676
692
  directives?: {
677
693
  [x: string]: {
678
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
679
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
+ [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;
695
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
696
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
697
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
698
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
699
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
700
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
701
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
702
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
687
703
  } | undefined;
688
704
  touch?: {
689
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
690
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
695
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
696
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
697
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
+ [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;
706
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
707
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
708
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
709
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
710
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
711
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
712
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
713
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
698
714
  } | undefined;
699
715
  } | undefined;
700
- isVisible?: string | boolean | undefined;
716
+ isVisible?: boolean | string | undefined;
701
717
  dark?: boolean | undefined;
702
718
  light?: boolean | undefined;
703
719
  theme?: string | undefined;
704
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
720
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
705
721
  name: string;
706
722
  parent?: {
707
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
708
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
723
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
724
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
709
725
  allowDuplicate: boolean;
710
726
  autofocus: boolean;
711
727
  children: {
712
728
  [x: string]: any;
713
729
  allowDuplicate?: boolean | undefined;
714
730
  autofocus?: boolean | undefined;
715
- children?: any[] | undefined;
731
+ children?: /*elided*/ any[] | undefined;
716
732
  componentId?: number | undefined;
717
733
  cssClass?: string | undefined;
718
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
734
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
719
735
  events?: {
720
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
721
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ [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;
737
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
738
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
739
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
740
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
741
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
742
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
743
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
744
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
729
745
  } | undefined;
730
746
  directives?: {
731
747
  [x: string]: {
732
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
733
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
+ [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;
749
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
750
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
751
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
752
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
753
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
754
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
755
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
756
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
741
757
  } | undefined;
742
758
  touch?: {
743
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
744
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
750
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
+ [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;
760
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
761
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
762
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
763
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
764
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
765
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
766
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
767
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
752
768
  } | undefined;
753
769
  } | undefined;
754
- isVisible?: string | boolean | undefined;
770
+ isVisible?: boolean | string | undefined;
755
771
  dark?: boolean | undefined;
756
772
  light?: boolean | undefined;
757
773
  theme?: string | undefined;
758
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
774
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
759
775
  name: string;
760
- parent?: any | undefined;
776
+ parent?: /*elided*/ any | undefined;
761
777
  tabStop?: boolean | undefined;
762
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
763
- fillHeight?: boolean | undefined;
778
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
779
+ fillHeight?: boolean | string | undefined;
764
780
  }[];
765
781
  componentId: number;
766
782
  cssClass: string;
767
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
783
+ cssStyle: string | import("@zeedhi/core").IDictionary;
768
784
  events: {
769
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
770
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
785
+ [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;
786
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
787
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
788
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
789
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
790
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
791
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
792
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
793
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
778
794
  };
779
795
  directives: {
780
796
  [x: string]: {
781
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
782
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
784
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
785
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
786
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
+ [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;
798
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
799
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
800
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
801
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
802
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
803
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
804
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
805
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
790
806
  } | undefined;
791
807
  touch?: {
792
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
793
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
+ [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;
809
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
810
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
811
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
812
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
813
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
814
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
815
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
816
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
801
817
  } | undefined;
802
818
  };
803
- isVisible: string | boolean;
819
+ isVisible: boolean | string;
804
820
  dark: boolean;
805
821
  light: boolean;
806
822
  theme?: string | undefined;
807
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
823
+ keyMap: import("@zeedhi/core").IKeyMap;
808
824
  name: string;
809
- parent?: any | undefined;
825
+ parent?: /*elided*/ any | undefined;
810
826
  tabStop: boolean;
811
- userProperties: import("@zeedhi/core").IDictionary<any>;
812
- fillHeight: boolean;
827
+ userProperties: import("@zeedhi/core").IDictionary;
828
+ fillHeight: boolean | string;
813
829
  } | undefined;
814
830
  tabStop?: boolean | undefined;
815
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
816
- fillHeight?: boolean | undefined;
831
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
832
+ fillHeight?: boolean | string | undefined;
817
833
  }[];
818
834
  align?: string | undefined;
819
835
  justify?: string | undefined;
@@ -825,7 +841,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
825
841
  maxWidth: string | number;
826
842
  events: {
827
843
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
828
- submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
844
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
829
845
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
830
846
  click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
831
847
  focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
@@ -836,331 +852,331 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
836
852
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
837
853
  };
838
854
  submitFunction?: (() => void) | undefined;
839
- value: import("@zeedhi/core").IDictionary<any>;
855
+ value: import("@zeedhi/core").IDictionary;
840
856
  clearForm: () => void;
841
857
  registerInput: (component: import("@zeedhi/common").Input) => void;
842
858
  readonly childrenProps: {
843
859
  [x: string]: any;
844
860
  children?: {
845
861
  [x: string]: any;
846
- children?: any[] | undefined;
862
+ children?: /*elided*/ any[] | undefined;
847
863
  component: string;
848
864
  allowDuplicate?: boolean | undefined;
849
865
  autofocus?: boolean | undefined;
850
866
  componentId?: number | undefined;
851
867
  cssClass?: string | undefined;
852
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
868
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
853
869
  events?: {
854
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
855
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
858
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
862
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
+ [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;
871
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
872
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
873
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
874
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
875
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
876
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
877
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
878
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
863
879
  } | undefined;
864
880
  directives?: {
865
881
  [x: string]: {
866
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
867
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
+ [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;
883
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
884
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
885
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
886
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
887
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
888
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
889
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
890
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
875
891
  } | undefined;
876
892
  touch?: {
877
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
878
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
884
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
885
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
+ [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;
894
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
895
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
896
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
897
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
898
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
899
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
900
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
901
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
886
902
  } | undefined;
887
903
  } | undefined;
888
- isVisible?: string | boolean | undefined;
904
+ isVisible?: boolean | string | undefined;
889
905
  dark?: boolean | undefined;
890
906
  light?: boolean | undefined;
891
907
  theme?: string | undefined;
892
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
908
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
893
909
  name: string;
894
910
  parent?: {
895
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
896
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
911
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
912
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
897
913
  allowDuplicate: boolean;
898
914
  autofocus: boolean;
899
915
  children: {
900
916
  [x: string]: any;
901
917
  allowDuplicate?: boolean | undefined;
902
918
  autofocus?: boolean | undefined;
903
- children?: any[] | undefined;
919
+ children?: /*elided*/ any[] | undefined;
904
920
  componentId?: number | undefined;
905
921
  cssClass?: string | undefined;
906
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
922
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
907
923
  events?: {
908
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
909
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
910
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
911
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
912
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
913
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
914
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
915
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
916
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
924
+ [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;
925
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
926
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
927
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
928
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
929
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
930
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
931
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
932
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
917
933
  } | undefined;
918
934
  directives?: {
919
935
  [x: string]: {
920
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
921
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
922
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
923
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
924
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
925
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
926
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
927
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
928
- 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;
929
945
  } | undefined;
930
946
  touch?: {
931
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
932
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
937
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
938
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
939
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
+ [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;
948
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
949
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
950
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
951
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
952
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
953
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
954
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
955
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
940
956
  } | undefined;
941
957
  } | undefined;
942
- isVisible?: string | boolean | undefined;
958
+ isVisible?: boolean | string | undefined;
943
959
  dark?: boolean | undefined;
944
960
  light?: boolean | undefined;
945
961
  theme?: string | undefined;
946
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
962
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
947
963
  name: string;
948
- parent?: any | undefined;
964
+ parent?: /*elided*/ any | undefined;
949
965
  tabStop?: boolean | undefined;
950
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
951
- fillHeight?: boolean | undefined;
966
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
967
+ fillHeight?: boolean | string | undefined;
952
968
  }[];
953
969
  componentId: number;
954
970
  cssClass: string;
955
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
971
+ cssStyle: string | import("@zeedhi/core").IDictionary;
956
972
  events: {
957
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
958
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
961
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
+ [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;
974
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
975
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
976
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
977
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
978
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
979
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
980
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
981
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
966
982
  };
967
983
  directives: {
968
984
  [x: string]: {
969
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
970
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
972
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
+ [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;
986
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
987
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
988
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
989
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
990
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
991
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
992
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
993
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
978
994
  } | undefined;
979
995
  touch?: {
980
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
981
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
+ [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;
997
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
998
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
999
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1000
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1001
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1002
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1003
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1004
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
989
1005
  } | undefined;
990
1006
  };
991
- isVisible: string | boolean;
1007
+ isVisible: boolean | string;
992
1008
  dark: boolean;
993
1009
  light: boolean;
994
1010
  theme?: string | undefined;
995
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1011
+ keyMap: import("@zeedhi/core").IKeyMap;
996
1012
  name: string;
997
- parent?: any | undefined;
1013
+ parent?: /*elided*/ any | undefined;
998
1014
  tabStop: boolean;
999
- userProperties: import("@zeedhi/core").IDictionary<any>;
1000
- fillHeight: boolean;
1015
+ userProperties: import("@zeedhi/core").IDictionary;
1016
+ fillHeight: boolean | string;
1001
1017
  } | undefined;
1002
1018
  tabStop?: boolean | undefined;
1003
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1004
- fillHeight?: boolean | undefined;
1019
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1020
+ fillHeight?: boolean | string | undefined;
1005
1021
  }[] | undefined;
1006
1022
  component: string;
1007
1023
  allowDuplicate?: boolean | undefined;
1008
1024
  autofocus?: boolean | undefined;
1009
1025
  componentId?: number | undefined;
1010
1026
  cssClass?: string | undefined;
1011
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1027
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1012
1028
  events?: {
1013
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1014
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1020
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1021
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
+ [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;
1030
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1031
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1032
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1033
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1034
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1035
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1036
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1037
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1022
1038
  } | undefined;
1023
1039
  directives?: {
1024
1040
  [x: string]: {
1025
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1026
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1032
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1033
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ [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;
1042
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1043
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1044
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1045
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1046
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1047
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1048
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1049
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1034
1050
  } | undefined;
1035
1051
  touch?: {
1036
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1037
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1043
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1044
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ [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;
1053
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1054
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1055
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1056
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1057
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1058
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1059
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1060
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1045
1061
  } | undefined;
1046
1062
  } | undefined;
1047
- isVisible?: string | boolean | undefined;
1063
+ isVisible?: boolean | string | undefined;
1048
1064
  dark?: boolean | undefined;
1049
1065
  light?: boolean | undefined;
1050
1066
  theme?: string | undefined;
1051
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1067
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1052
1068
  name: string;
1053
1069
  parent?: {
1054
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1055
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1070
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1071
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1056
1072
  allowDuplicate: boolean;
1057
1073
  autofocus: boolean;
1058
1074
  children: {
1059
1075
  [x: string]: any;
1060
1076
  allowDuplicate?: boolean | undefined;
1061
1077
  autofocus?: boolean | undefined;
1062
- children?: any[] | undefined;
1078
+ children?: /*elided*/ any[] | undefined;
1063
1079
  componentId?: number | undefined;
1064
1080
  cssClass?: string | undefined;
1065
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1081
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1066
1082
  events?: {
1067
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1068
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1069
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1070
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1071
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1072
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1073
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1074
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1075
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
+ [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;
1084
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1085
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1086
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1087
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1088
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1089
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1090
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1091
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1076
1092
  } | undefined;
1077
1093
  directives?: {
1078
1094
  [x: string]: {
1079
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1080
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1082
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1086
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
- 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;
1088
1104
  } | undefined;
1089
1105
  touch?: {
1090
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1091
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1097
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1098
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
+ [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;
1107
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1108
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1109
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1110
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1111
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1112
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1113
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1114
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1099
1115
  } | undefined;
1100
1116
  } | undefined;
1101
- isVisible?: string | boolean | undefined;
1117
+ isVisible?: boolean | string | undefined;
1102
1118
  dark?: boolean | undefined;
1103
1119
  light?: boolean | undefined;
1104
1120
  theme?: string | undefined;
1105
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1121
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1106
1122
  name: string;
1107
- parent?: any | undefined;
1123
+ parent?: /*elided*/ any | undefined;
1108
1124
  tabStop?: boolean | undefined;
1109
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1110
- fillHeight?: boolean | undefined;
1125
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1126
+ fillHeight?: boolean | string | undefined;
1111
1127
  }[];
1112
1128
  componentId: number;
1113
1129
  cssClass: string;
1114
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1130
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1115
1131
  events: {
1116
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1117
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1122
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1123
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
+ [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;
1133
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1134
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1135
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1136
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1137
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1138
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1139
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1140
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1125
1141
  };
1126
1142
  directives: {
1127
1143
  [x: string]: {
1128
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1129
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
+ [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;
1145
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1146
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1147
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1148
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1149
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1150
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1151
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1152
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1137
1153
  } | undefined;
1138
1154
  touch?: {
1139
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1140
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1147
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
+ [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;
1156
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1157
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1158
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1159
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1160
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1161
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1162
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1163
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1148
1164
  } | undefined;
1149
1165
  };
1150
- isVisible: string | boolean;
1166
+ isVisible: boolean | string;
1151
1167
  dark: boolean;
1152
1168
  light: boolean;
1153
1169
  theme?: string | undefined;
1154
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1170
+ keyMap: import("@zeedhi/core").IKeyMap;
1155
1171
  name: string;
1156
- parent?: any | undefined;
1172
+ parent?: /*elided*/ any | undefined;
1157
1173
  tabStop: boolean;
1158
- userProperties: import("@zeedhi/core").IDictionary<any>;
1159
- fillHeight: boolean;
1174
+ userProperties: import("@zeedhi/core").IDictionary;
1175
+ fillHeight: boolean | string;
1160
1176
  } | undefined;
1161
1177
  tabStop?: boolean | undefined;
1162
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1163
- fillHeight?: boolean | undefined;
1178
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1179
+ fillHeight?: boolean | string | undefined;
1164
1180
  }[];
1165
1181
  readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1166
1182
  validate: () => Promise<{
@@ -1186,26 +1202,26 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1186
1202
  cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1187
1203
  directives: {
1188
1204
  [x: string]: {
1189
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1190
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1191
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1192
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1193
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1194
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1195
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1205
+ [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;
1206
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1207
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1208
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1209
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1210
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1211
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1212
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1213
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1198
1214
  } | undefined;
1199
1215
  touch?: {
1200
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1201
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1202
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1203
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1204
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1205
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1206
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1207
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
+ [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;
1217
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1218
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1219
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1220
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1221
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1222
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1223
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1224
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1209
1225
  } | undefined;
1210
1226
  };
1211
1227
  isVisible: boolean;
@@ -1213,117 +1229,117 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1213
1229
  dark: boolean;
1214
1230
  light: boolean;
1215
1231
  theme?: string | undefined;
1216
- fillHeight: boolean;
1232
+ fillHeight: boolean | string;
1217
1233
  parent?: {
1218
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1219
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1234
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1235
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1220
1236
  allowDuplicate: boolean;
1221
1237
  autofocus: boolean;
1222
1238
  children: {
1223
1239
  [x: string]: any;
1224
1240
  allowDuplicate?: boolean | undefined;
1225
1241
  autofocus?: boolean | undefined;
1226
- children?: any[] | undefined;
1242
+ children?: /*elided*/ any[] | undefined;
1227
1243
  componentId?: number | undefined;
1228
1244
  cssClass?: string | undefined;
1229
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1245
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1230
1246
  events?: {
1231
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1232
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1233
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1234
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1247
+ [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;
1248
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1249
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1250
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1251
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1252
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1253
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1254
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1255
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1240
1256
  } | undefined;
1241
1257
  directives?: {
1242
1258
  [x: string]: {
1243
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1244
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1245
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1246
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1247
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1259
+ [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;
1260
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1261
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1262
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1263
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1264
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1265
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1266
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1267
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1252
1268
  } | undefined;
1253
1269
  touch?: {
1254
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1255
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1256
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1257
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1258
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1259
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1260
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1261
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1270
+ [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;
1271
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1272
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1273
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1274
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1275
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1276
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1277
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1278
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1263
1279
  } | undefined;
1264
1280
  } | undefined;
1265
- isVisible?: string | boolean | undefined;
1281
+ isVisible?: boolean | string | undefined;
1266
1282
  dark?: boolean | undefined;
1267
1283
  light?: boolean | undefined;
1268
1284
  theme?: string | undefined;
1269
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1285
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1270
1286
  name: string;
1271
- parent?: any | undefined;
1287
+ parent?: /*elided*/ any | undefined;
1272
1288
  tabStop?: boolean | undefined;
1273
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1274
- fillHeight?: boolean | undefined;
1289
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1290
+ fillHeight?: boolean | string | undefined;
1275
1291
  }[];
1276
1292
  componentId: number;
1277
1293
  cssClass: string;
1278
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1294
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1279
1295
  events: {
1280
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1281
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1282
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1283
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1284
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1285
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1286
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1287
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1296
+ [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;
1297
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1298
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1299
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1300
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1301
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1302
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1303
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1304
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1289
1305
  };
1290
1306
  directives: {
1291
1307
  [x: string]: {
1292
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1293
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1294
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1295
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1296
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1308
+ [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;
1309
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1310
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1311
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1312
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1313
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1314
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1315
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1316
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1301
1317
  } | undefined;
1302
1318
  touch?: {
1303
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1304
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1305
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1306
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1307
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1308
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1309
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1310
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1319
+ [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;
1320
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1321
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1322
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1323
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1324
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1325
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1326
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1327
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1312
1328
  } | undefined;
1313
1329
  };
1314
- isVisible: string | boolean;
1330
+ isVisible: boolean | string;
1315
1331
  dark: boolean;
1316
1332
  light: boolean;
1317
1333
  theme?: string | undefined;
1318
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1334
+ keyMap: import("@zeedhi/core").IKeyMap;
1319
1335
  name: string;
1320
- parent?: any | undefined;
1336
+ parent?: /*elided*/ any | undefined;
1321
1337
  tabStop: boolean;
1322
- userProperties: import("@zeedhi/core").IDictionary<any>;
1323
- fillHeight: boolean;
1338
+ userProperties: import("@zeedhi/core").IDictionary;
1339
+ fillHeight: boolean | string;
1324
1340
  } | undefined;
1325
1341
  componentId: number;
1326
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1342
+ keyMap: import("@zeedhi/core").IKeyMap;
1327
1343
  isFocused: boolean;
1328
1344
  tabStop: boolean;
1329
1345
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -1332,19 +1348,19 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1332
1348
  callEvent: (eventName: string, args: any) => boolean;
1333
1349
  addChild: (child: import("@zeedhi/common").IComponent) => void;
1334
1350
  removeChild: (name: string) => void;
1335
- getChildInstance: <T_1>(name: string) => T_1;
1336
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1351
+ getChildInstance: <T>(name: string) => T;
1352
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1337
1353
  onCreated: () => void;
1338
1354
  onBeforeMount: () => void;
1339
1355
  onBeforeDestroy: () => void;
1340
1356
  onDestroyed: () => void;
1341
- click: (event?: Event | undefined, element?: any) => void;
1357
+ click: (event?: Event, element?: any) => void;
1342
1358
  focus: (event: Event, element: any) => void;
1343
1359
  blur: (event: Event, element: any) => void;
1344
- mouseenter: (event?: Event | undefined, element?: any) => void;
1345
- mouseleave: (event?: Event | undefined, element?: any) => void;
1346
- mouseout: (event?: Event | undefined, element?: any) => void;
1347
- mouseover: (event?: Event | undefined, element?: any) => void;
1360
+ mouseenter: (event?: Event, element?: any) => void;
1361
+ mouseleave: (event?: Event, element?: any) => void;
1362
+ mouseout: (event?: Event, element?: any) => void;
1363
+ mouseover: (event?: Event, element?: any) => void;
1348
1364
  } | undefined;
1349
1365
  authUrl: string;
1350
1366
  redirectUrl: string;
@@ -1385,183 +1401,183 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1385
1401
  to: string;
1386
1402
  top: boolean;
1387
1403
  type: string;
1388
- width: string | number;
1404
+ width: number | string;
1389
1405
  active?: boolean | undefined;
1390
1406
  appendIcon?: string | undefined;
1391
1407
  border: string | number | boolean;
1392
1408
  density: "default" | "comfortable" | "compact";
1393
1409
  elevation?: string | number | undefined;
1394
1410
  loading: string | boolean;
1395
- position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
1411
+ position?: "relative" | "absolute" | "static" | "fixed" | "sticky" | undefined;
1396
1412
  prependIcon?: string | undefined;
1397
1413
  replace: boolean;
1398
1414
  ripple: boolean;
1399
1415
  selectedClass?: string | undefined;
1400
- size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
1416
+ size?: "x-small" | "small" | "default" | "large" | "x-large" | undefined;
1401
1417
  stacked: boolean;
1402
1418
  tag?: string | undefined;
1403
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
1419
+ variant?: "text" | "flat" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
1404
1420
  children: {
1405
1421
  [x: string]: any;
1406
- children?: any[] | undefined;
1422
+ children?: /*elided*/ any[] | undefined;
1407
1423
  component: string;
1408
1424
  allowDuplicate?: boolean | undefined;
1409
1425
  autofocus?: boolean | undefined;
1410
1426
  componentId?: number | undefined;
1411
1427
  cssClass?: string | undefined;
1412
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1428
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1413
1429
  events?: {
1414
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1415
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1420
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1421
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1422
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1430
+ [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;
1431
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1432
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1433
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1434
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1435
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1436
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1437
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1438
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1423
1439
  } | undefined;
1424
1440
  directives?: {
1425
1441
  [x: string]: {
1426
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1427
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1428
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1429
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1430
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1431
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1432
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1433
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1434
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
+ [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;
1443
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1444
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1445
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1446
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1447
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1448
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1449
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1450
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1435
1451
  } | undefined;
1436
1452
  touch?: {
1437
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1438
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1439
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1440
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1443
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1444
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1445
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1453
+ [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;
1454
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1455
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1456
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1457
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1458
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1459
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1460
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1461
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1446
1462
  } | undefined;
1447
1463
  } | undefined;
1448
- isVisible?: string | boolean | undefined;
1464
+ isVisible?: boolean | string | undefined;
1449
1465
  dark?: boolean | undefined;
1450
1466
  light?: boolean | undefined;
1451
1467
  theme?: string | undefined;
1452
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1468
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1453
1469
  name: string;
1454
1470
  parent?: {
1455
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1456
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1471
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1472
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1457
1473
  allowDuplicate: boolean;
1458
1474
  autofocus: boolean;
1459
1475
  children: {
1460
1476
  [x: string]: any;
1461
1477
  allowDuplicate?: boolean | undefined;
1462
1478
  autofocus?: boolean | undefined;
1463
- children?: any[] | undefined;
1479
+ children?: /*elided*/ any[] | undefined;
1464
1480
  componentId?: number | undefined;
1465
1481
  cssClass?: string | undefined;
1466
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1482
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1467
1483
  events?: {
1468
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1469
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1472
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1473
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1474
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
+ [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;
1485
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1486
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1487
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1488
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1489
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1490
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1491
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1492
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1477
1493
  } | undefined;
1478
1494
  directives?: {
1479
1495
  [x: string]: {
1480
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1481
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1482
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1483
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1485
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1496
+ [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;
1497
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1498
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1499
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1500
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1501
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1502
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1503
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1504
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1489
1505
  } | undefined;
1490
1506
  touch?: {
1491
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1492
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1493
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1494
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1495
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1496
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1497
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1498
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1499
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1507
+ [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;
1508
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1509
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1510
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1511
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1512
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1513
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1514
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1515
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1500
1516
  } | undefined;
1501
1517
  } | undefined;
1502
- isVisible?: string | boolean | undefined;
1518
+ isVisible?: boolean | string | undefined;
1503
1519
  dark?: boolean | undefined;
1504
1520
  light?: boolean | undefined;
1505
1521
  theme?: string | undefined;
1506
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1522
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1507
1523
  name: string;
1508
- parent?: any | undefined;
1524
+ parent?: /*elided*/ any | undefined;
1509
1525
  tabStop?: boolean | undefined;
1510
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1511
- fillHeight?: boolean | undefined;
1526
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1527
+ fillHeight?: boolean | string | undefined;
1512
1528
  }[];
1513
1529
  componentId: number;
1514
1530
  cssClass: string;
1515
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1531
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1516
1532
  events: {
1517
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1518
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1519
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1520
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1521
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1522
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1523
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1524
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1525
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1533
+ [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;
1534
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1535
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1536
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1537
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1538
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1539
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1540
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1541
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1526
1542
  };
1527
1543
  directives: {
1528
1544
  [x: string]: {
1529
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1530
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1531
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1532
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1533
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1534
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1535
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1536
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1537
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1545
+ [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;
1546
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1547
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1548
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1549
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1550
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1551
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1552
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1553
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1538
1554
  } | undefined;
1539
1555
  touch?: {
1540
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1541
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1542
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1543
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1544
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1545
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1546
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1547
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1548
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1556
+ [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;
1557
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1558
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1559
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1560
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1561
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1562
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1563
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1564
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1549
1565
  } | undefined;
1550
1566
  };
1551
- isVisible: string | boolean;
1567
+ isVisible: boolean | string;
1552
1568
  dark: boolean;
1553
1569
  light: boolean;
1554
1570
  theme?: string | undefined;
1555
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1571
+ keyMap: import("@zeedhi/core").IKeyMap;
1556
1572
  name: string;
1557
- parent?: any | undefined;
1573
+ parent?: /*elided*/ any | undefined;
1558
1574
  tabStop: boolean;
1559
- userProperties: import("@zeedhi/core").IDictionary<any>;
1560
- fillHeight: boolean;
1575
+ userProperties: import("@zeedhi/core").IDictionary;
1576
+ fillHeight: boolean | string;
1561
1577
  } | undefined;
1562
1578
  tabStop?: boolean | undefined;
1563
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1564
- fillHeight?: boolean | undefined;
1579
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1580
+ fillHeight?: boolean | string | undefined;
1565
1581
  }[];
1566
1582
  component: string;
1567
1583
  allowDuplicate: boolean;
@@ -1571,26 +1587,26 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1571
1587
  cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1572
1588
  directives: {
1573
1589
  [x: string]: {
1574
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1575
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1576
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1577
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1578
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1579
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1580
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1581
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1582
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1590
+ [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;
1591
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1592
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1593
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1594
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1595
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1596
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1597
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1598
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1583
1599
  } | undefined;
1584
1600
  touch?: {
1585
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1586
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1587
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1588
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1589
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1590
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1591
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1592
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1593
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1601
+ [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;
1602
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1603
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1604
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1605
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1606
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1607
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1608
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1609
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
1594
1610
  } | undefined;
1595
1611
  };
1596
1612
  isVisible: boolean;
@@ -1598,9 +1614,9 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1598
1614
  dark: boolean;
1599
1615
  light: boolean;
1600
1616
  theme?: string | undefined;
1601
- fillHeight: boolean;
1617
+ fillHeight: boolean | string;
1602
1618
  componentId: number;
1603
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1619
+ keyMap: import("@zeedhi/core").IKeyMap;
1604
1620
  isFocused: boolean;
1605
1621
  tabStop: boolean;
1606
1622
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -1609,8 +1625,8 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1609
1625
  callEvent: (eventName: string, args: any) => boolean;
1610
1626
  addChild: (child: import("@zeedhi/common").IComponent) => void;
1611
1627
  removeChild: (name: string) => void;
1612
- getChildInstance: <T_1>(name: string) => T_1;
1613
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1628
+ getChildInstance: <T>(name: string) => T;
1629
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1614
1630
  onCreated: () => void;
1615
1631
  onBeforeMount: () => void;
1616
1632
  onMounted: (element: any) => void;
@@ -1618,12 +1634,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1618
1634
  onDestroyed: () => void;
1619
1635
  focus: (event: Event, element: any) => void;
1620
1636
  blur: (event: Event, element: any) => void;
1621
- mouseenter: (event?: Event | undefined, element?: any) => void;
1622
- mouseleave: (event?: Event | undefined, element?: any) => void;
1623
- mouseout: (event?: Event | undefined, element?: any) => void;
1624
- mouseover: (event?: Event | undefined, element?: any) => void;
1637
+ mouseenter: (event?: Event, element?: any) => void;
1638
+ mouseleave: (event?: Event, element?: any) => void;
1639
+ mouseout: (event?: Event, element?: any) => void;
1640
+ mouseover: (event?: Event, element?: any) => void;
1625
1641
  };
1626
- 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>>;
1642
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
1627
1643
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1628
1644
  authUrl: {
1629
1645
  type: StringConstructor;
@@ -1794,16 +1810,20 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1794
1810
  isArray(arg: any): arg is any[];
1795
1811
  readonly prototype: any[];
1796
1812
  from<T>(arrayLike: ArrayLike<T>): T[];
1797
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1798
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1799
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1800
- of<T_4>(...items: T_4[]): T_4[];
1813
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1814
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
1815
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1816
+ of<T>(...items: T[]): T[];
1817
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
1818
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
1801
1819
  readonly [Symbol.species]: ArrayConstructor;
1802
1820
  })[];
1803
1821
  default(): never[];
1822
+ watch: boolean;
1804
1823
  };
1805
1824
  component: {
1806
1825
  type: StringConstructor;
1826
+ watch: boolean;
1807
1827
  };
1808
1828
  allowDuplicate: {
1809
1829
  type: (BooleanConstructor | StringConstructor)[];
@@ -1828,10 +1848,12 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1828
1848
  directives: {
1829
1849
  type: ObjectConstructor;
1830
1850
  default(): {};
1851
+ watch: boolean;
1831
1852
  };
1832
1853
  events: {
1833
1854
  type: ObjectConstructor;
1834
1855
  default(): {};
1856
+ watch: boolean;
1835
1857
  };
1836
1858
  instanceObject: {
1837
1859
  type: ObjectConstructor;
@@ -1843,6 +1865,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1843
1865
  keyMap: {
1844
1866
  type: ObjectConstructor;
1845
1867
  default(): {};
1868
+ watch: boolean;
1846
1869
  };
1847
1870
  light: {
1848
1871
  type: (BooleanConstructor | StringConstructor)[];
@@ -1854,6 +1877,7 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1854
1877
  };
1855
1878
  parent: {
1856
1879
  type: ObjectConstructor;
1880
+ watch: boolean;
1857
1881
  };
1858
1882
  tabStop: {
1859
1883
  type: (BooleanConstructor | StringConstructor)[];
@@ -1866,6 +1890,8 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1866
1890
  iconName: string;
1867
1891
  reverse: string | boolean;
1868
1892
  flat: string | boolean;
1893
+ label: string;
1894
+ small: string | boolean;
1869
1895
  allowDuplicate: string | boolean;
1870
1896
  type: string;
1871
1897
  autofocus: string | boolean;
@@ -1879,10 +1905,11 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1879
1905
  keyMap: Record<string, any>;
1880
1906
  light: string | boolean;
1881
1907
  tabStop: string | boolean;
1882
- label: string;
1883
- small: string | boolean;
1884
1908
  replace: string | boolean;
1885
1909
  fixed: string | boolean;
1910
+ target: string;
1911
+ top: string | boolean;
1912
+ active: string | boolean;
1886
1913
  absolute: string | boolean;
1887
1914
  block: string | boolean;
1888
1915
  bottom: string | boolean;
@@ -1896,12 +1923,9 @@ declare const loginButtonComponent: import("vue").DefineComponent<import("vue").
1896
1923
  outline: string | boolean;
1897
1924
  right: string | boolean;
1898
1925
  round: string | number | boolean;
1899
- target: string;
1900
1926
  tile: string | boolean;
1901
1927
  to: string;
1902
- top: string | boolean;
1903
1928
  width: string | number;
1904
- active: string | boolean;
1905
1929
  border: string | number | boolean;
1906
1930
  density: string;
1907
1931
  loading: string | boolean;