@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
@@ -14,16 +14,20 @@ export declare const ZdAlertProps: {
14
14
  isArray(arg: any): arg is any[];
15
15
  readonly prototype: any[];
16
16
  from<T>(arrayLike: ArrayLike<T>): T[];
17
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
18
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
19
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
20
- of<T_4>(...items: T_4[]): T_4[];
17
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
18
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
19
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
20
+ of<T>(...items: T[]): T[];
21
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
22
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
21
23
  readonly [Symbol.species]: ArrayConstructor;
22
24
  })[];
23
25
  default(): never[];
26
+ watch: boolean;
24
27
  };
25
28
  component: {
26
29
  type: StringConstructor;
30
+ watch: boolean;
27
31
  };
28
32
  allowDuplicate: {
29
33
  type: (BooleanConstructor | StringConstructor)[];
@@ -48,10 +52,12 @@ export declare const ZdAlertProps: {
48
52
  directives: {
49
53
  type: ObjectConstructor;
50
54
  default(): {};
55
+ watch: boolean;
51
56
  };
52
57
  events: {
53
58
  type: ObjectConstructor;
54
59
  default(): {};
60
+ watch: boolean;
55
61
  };
56
62
  instanceObject: {
57
63
  type: ObjectConstructor;
@@ -63,6 +69,7 @@ export declare const ZdAlertProps: {
63
69
  keyMap: {
64
70
  type: ObjectConstructor;
65
71
  default(): {};
72
+ watch: boolean;
66
73
  };
67
74
  light: {
68
75
  type: (BooleanConstructor | StringConstructor)[];
@@ -74,6 +81,7 @@ export declare const ZdAlertProps: {
74
81
  };
75
82
  parent: {
76
83
  type: ObjectConstructor;
84
+ watch: boolean;
77
85
  };
78
86
  tabStop: {
79
87
  type: (BooleanConstructor | StringConstructor)[];
@@ -97,16 +105,20 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
97
105
  isArray(arg: any): arg is any[];
98
106
  readonly prototype: any[];
99
107
  from<T>(arrayLike: ArrayLike<T>): T[];
100
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
101
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
102
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
103
- of<T_4>(...items: T_4[]): T_4[];
108
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
109
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
110
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
111
+ of<T>(...items: T[]): T[];
112
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
113
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
104
114
  readonly [Symbol.species]: ArrayConstructor;
105
115
  })[];
106
116
  default(): never[];
117
+ watch: boolean;
107
118
  };
108
119
  component: {
109
120
  type: StringConstructor;
121
+ watch: boolean;
110
122
  };
111
123
  allowDuplicate: {
112
124
  type: (BooleanConstructor | StringConstructor)[];
@@ -131,10 +143,12 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
131
143
  directives: {
132
144
  type: ObjectConstructor;
133
145
  default(): {};
146
+ watch: boolean;
134
147
  };
135
148
  events: {
136
149
  type: ObjectConstructor;
137
150
  default(): {};
151
+ watch: boolean;
138
152
  };
139
153
  instanceObject: {
140
154
  type: ObjectConstructor;
@@ -146,6 +160,7 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
146
160
  keyMap: {
147
161
  type: ObjectConstructor;
148
162
  default(): {};
163
+ watch: boolean;
149
164
  };
150
165
  light: {
151
166
  type: (BooleanConstructor | StringConstructor)[];
@@ -157,6 +172,7 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
157
172
  };
158
173
  parent: {
159
174
  type: ObjectConstructor;
175
+ watch: boolean;
160
176
  };
161
177
  tabStop: {
162
178
  type: (BooleanConstructor | StringConstructor)[];
@@ -205,331 +221,331 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
205
221
  to?: string | undefined;
206
222
  top?: boolean | undefined;
207
223
  type?: string | undefined;
208
- width?: string | number | undefined;
224
+ width?: number | string | undefined;
209
225
  active?: boolean | undefined;
210
226
  appendIcon?: string | undefined;
211
227
  border?: string | number | boolean | undefined;
212
228
  density?: "default" | "comfortable" | "compact" | undefined;
213
229
  elevation?: string | number | undefined;
214
- loading?: string | boolean | undefined;
215
- position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
230
+ loading?: boolean | string | undefined;
231
+ position?: "relative" | "absolute" | "static" | "fixed" | "sticky" | undefined;
216
232
  prependIcon?: string | undefined;
217
233
  replace?: boolean | undefined;
218
234
  ripple?: boolean | undefined;
219
235
  selectedClass?: string | undefined;
220
- size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
236
+ size?: "x-small" | "small" | "default" | "large" | "x-large" | undefined;
221
237
  stacked?: boolean | undefined;
222
238
  tag?: string | undefined;
223
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
239
+ variant?: "text" | "flat" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
224
240
  children?: {
225
241
  [x: string]: any;
226
- children?: any[] | undefined;
242
+ children?: /*elided*/ any[] | undefined;
227
243
  component: string;
228
244
  allowDuplicate?: boolean | undefined;
229
245
  autofocus?: boolean | undefined;
230
246
  componentId?: number | undefined;
231
247
  cssClass?: string | undefined;
232
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
248
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
233
249
  events?: {
234
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
235
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
236
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
237
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
238
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
239
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
240
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
241
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
242
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
250
+ [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;
251
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
252
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
253
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
254
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
255
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
256
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
257
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
258
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
243
259
  } | undefined;
244
260
  directives?: {
245
261
  [x: string]: {
246
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
247
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
248
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
249
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
250
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
251
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
252
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
253
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
254
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
262
+ [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;
263
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
264
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
265
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
266
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
267
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
268
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
269
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
270
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
255
271
  } | undefined;
256
272
  touch?: {
257
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
258
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
259
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
260
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
261
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
262
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
263
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
264
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
273
+ [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;
274
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
275
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
276
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
277
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
278
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
279
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
280
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
281
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
266
282
  } | undefined;
267
283
  } | undefined;
268
- isVisible?: string | boolean | undefined;
284
+ isVisible?: boolean | string | undefined;
269
285
  dark?: boolean | undefined;
270
286
  light?: boolean | undefined;
271
287
  theme?: string | undefined;
272
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
288
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
273
289
  name: string;
274
290
  parent?: {
275
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
276
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
291
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
292
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
277
293
  allowDuplicate: boolean;
278
294
  autofocus: boolean;
279
295
  children: {
280
296
  [x: string]: any;
281
297
  allowDuplicate?: boolean | undefined;
282
298
  autofocus?: boolean | undefined;
283
- children?: any[] | undefined;
299
+ children?: /*elided*/ any[] | undefined;
284
300
  componentId?: number | undefined;
285
301
  cssClass?: string | undefined;
286
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
302
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
287
303
  events?: {
288
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
289
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
296
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
+ [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;
305
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
306
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
307
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
308
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
309
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
310
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
311
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
312
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
297
313
  } | undefined;
298
314
  directives?: {
299
315
  [x: string]: {
300
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
301
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
302
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
303
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
305
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
306
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
307
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
308
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
+ [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;
317
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
318
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
319
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
320
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
321
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
322
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
323
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
324
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
309
325
  } | undefined;
310
326
  touch?: {
311
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
312
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
313
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
314
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
315
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
327
+ [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;
328
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
329
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
330
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
331
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
332
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
333
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
334
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
335
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
320
336
  } | undefined;
321
337
  } | undefined;
322
- isVisible?: string | boolean | undefined;
338
+ isVisible?: boolean | string | undefined;
323
339
  dark?: boolean | undefined;
324
340
  light?: boolean | undefined;
325
341
  theme?: string | undefined;
326
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
342
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
327
343
  name: string;
328
- parent?: any | undefined;
344
+ parent?: /*elided*/ any | undefined;
329
345
  tabStop?: boolean | undefined;
330
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
331
- fillHeight?: boolean | undefined;
346
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
347
+ fillHeight?: boolean | string | undefined;
332
348
  }[];
333
349
  componentId: number;
334
350
  cssClass: string;
335
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
351
+ cssStyle: string | import("@zeedhi/core").IDictionary;
336
352
  events: {
337
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
338
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
339
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
340
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
341
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
353
+ [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;
354
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
355
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
356
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
357
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
358
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
359
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
360
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
361
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
346
362
  };
347
363
  directives: {
348
364
  [x: string]: {
349
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
350
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
351
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
352
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
353
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
354
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
355
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
356
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
357
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
+ [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;
366
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
367
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
368
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
369
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
370
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
371
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
372
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
373
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
358
374
  } | undefined;
359
375
  touch?: {
360
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
361
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
362
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
363
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
364
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
376
+ [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;
377
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
378
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
379
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
380
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
381
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
382
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
383
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
384
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
369
385
  } | undefined;
370
386
  };
371
- isVisible: string | boolean;
387
+ isVisible: boolean | string;
372
388
  dark: boolean;
373
389
  light: boolean;
374
390
  theme?: string | undefined;
375
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
391
+ keyMap: import("@zeedhi/core").IKeyMap;
376
392
  name: string;
377
- parent?: any | undefined;
393
+ parent?: /*elided*/ any | undefined;
378
394
  tabStop: boolean;
379
- userProperties: import("@zeedhi/core").IDictionary<any>;
380
- fillHeight: boolean;
395
+ userProperties: import("@zeedhi/core").IDictionary;
396
+ fillHeight: boolean | string;
381
397
  } | undefined;
382
398
  tabStop?: boolean | undefined;
383
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
384
- fillHeight?: boolean | undefined;
399
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
400
+ fillHeight?: boolean | string | undefined;
385
401
  }[] | undefined;
386
402
  component: string;
387
403
  allowDuplicate?: boolean | undefined;
388
404
  autofocus?: boolean | undefined;
389
405
  componentId?: number | undefined;
390
406
  cssClass?: string | undefined;
391
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
407
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
392
408
  directives?: {
393
409
  [x: string]: {
394
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
395
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
399
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
400
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
401
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
402
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
410
+ [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;
411
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
412
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
413
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
414
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
415
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
416
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
417
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
418
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
403
419
  } | undefined;
404
420
  touch?: {
405
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
406
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
407
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
408
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
409
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
410
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
411
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
412
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
413
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
421
+ [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;
422
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
423
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
424
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
425
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
426
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
427
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
428
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
429
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
414
430
  } | undefined;
415
431
  } | undefined;
416
- isVisible?: string | boolean | undefined;
432
+ isVisible?: boolean | string | undefined;
417
433
  dark?: boolean | undefined;
418
434
  light?: boolean | undefined;
419
435
  theme?: string | undefined;
420
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
436
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
421
437
  name: string;
422
438
  parent?: {
423
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
424
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
439
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
440
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
425
441
  allowDuplicate: boolean;
426
442
  autofocus: boolean;
427
443
  children: {
428
444
  [x: string]: any;
429
445
  allowDuplicate?: boolean | undefined;
430
446
  autofocus?: boolean | undefined;
431
- children?: any[] | undefined;
447
+ children?: /*elided*/ any[] | undefined;
432
448
  componentId?: number | undefined;
433
449
  cssClass?: string | undefined;
434
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
450
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
435
451
  events?: {
436
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
437
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
+ [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;
453
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
454
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
455
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
456
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
457
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
458
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
459
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
460
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
445
461
  } | undefined;
446
462
  directives?: {
447
463
  [x: string]: {
448
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
449
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
453
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
454
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
456
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
464
+ [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;
465
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
466
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
467
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
468
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
469
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
470
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
471
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
472
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
457
473
  } | undefined;
458
474
  touch?: {
459
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
460
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
462
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
463
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
464
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
465
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
466
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
467
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
475
+ [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;
476
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
477
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
478
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
479
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
480
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
481
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
482
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
483
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
468
484
  } | undefined;
469
485
  } | undefined;
470
- isVisible?: string | boolean | undefined;
486
+ isVisible?: boolean | string | undefined;
471
487
  dark?: boolean | undefined;
472
488
  light?: boolean | undefined;
473
489
  theme?: string | undefined;
474
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
490
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
475
491
  name: string;
476
- parent?: any | undefined;
492
+ parent?: /*elided*/ any | undefined;
477
493
  tabStop?: boolean | undefined;
478
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
479
- fillHeight?: boolean | undefined;
494
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
495
+ fillHeight?: boolean | string | undefined;
480
496
  }[];
481
497
  componentId: number;
482
498
  cssClass: string;
483
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
499
+ cssStyle: string | import("@zeedhi/core").IDictionary;
484
500
  events: {
485
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
486
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
487
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
488
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
489
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
+ [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;
502
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
503
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
504
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
505
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
506
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
507
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
508
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
509
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
494
510
  };
495
511
  directives: {
496
512
  [x: string]: {
497
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
498
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
499
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
+ [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;
514
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
515
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
516
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
517
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
518
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
519
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
520
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
521
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
506
522
  } | undefined;
507
523
  touch?: {
508
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
509
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
512
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
524
+ [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;
525
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
526
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
527
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
528
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
529
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
530
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
531
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
532
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
517
533
  } | undefined;
518
534
  };
519
- isVisible: string | boolean;
535
+ isVisible: boolean | string;
520
536
  dark: boolean;
521
537
  light: boolean;
522
538
  theme?: string | undefined;
523
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
539
+ keyMap: import("@zeedhi/core").IKeyMap;
524
540
  name: string;
525
- parent?: any | undefined;
541
+ parent?: /*elided*/ any | undefined;
526
542
  tabStop: boolean;
527
- userProperties: import("@zeedhi/core").IDictionary<any>;
528
- fillHeight: boolean;
543
+ userProperties: import("@zeedhi/core").IDictionary;
544
+ fillHeight: boolean | string;
529
545
  } | undefined;
530
546
  tabStop?: boolean | undefined;
531
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
532
- fillHeight?: boolean | undefined;
547
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
548
+ fillHeight?: boolean | string | undefined;
533
549
  }[];
534
550
  color: string;
535
551
  dismissColor: string;
@@ -551,210 +567,264 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
551
567
  [x: string]: any;
552
568
  allowDuplicate?: boolean | undefined;
553
569
  autofocus?: boolean | undefined;
554
- children?: any[] | undefined;
570
+ children?: /*elided*/ any[] | undefined;
555
571
  componentId?: number | undefined;
556
572
  cssClass?: string | undefined;
557
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
573
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
558
574
  events?: {
559
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
560
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
+ [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;
576
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
577
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
578
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
579
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
580
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
581
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
582
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
583
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
568
584
  } | undefined;
569
585
  directives?: {
570
586
  [x: string]: {
571
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
572
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
+ [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;
588
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
589
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
590
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
591
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
592
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
593
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
594
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
595
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
580
596
  } | undefined;
581
597
  touch?: {
582
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
583
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
588
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
+ [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;
599
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
600
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
601
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
602
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
603
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
604
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
605
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
606
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
591
607
  } | undefined;
592
608
  } | undefined;
593
- isVisible?: string | boolean | undefined;
609
+ isVisible?: boolean | string | undefined;
594
610
  dark?: boolean | undefined;
595
611
  light?: boolean | undefined;
596
612
  theme?: string | undefined;
597
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
613
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
598
614
  name: string;
599
- parent?: any | undefined;
615
+ parent?: {
616
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
617
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
618
+ allowDuplicate: boolean;
619
+ autofocus: boolean;
620
+ children: /*elided*/ any[];
621
+ componentId: number;
622
+ cssClass: string;
623
+ cssStyle: string | import("@zeedhi/core").IDictionary;
624
+ events: {
625
+ [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;
626
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
627
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
628
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
629
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
630
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
631
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
632
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
633
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
634
+ };
635
+ directives: {
636
+ [x: string]: {
637
+ [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;
638
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
639
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
640
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
641
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
642
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
643
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
644
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
645
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
646
+ } | undefined;
647
+ touch?: {
648
+ [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;
649
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
650
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
651
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
652
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
653
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
654
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
655
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
656
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
657
+ } | undefined;
658
+ };
659
+ isVisible: boolean | string;
660
+ dark: boolean;
661
+ light: boolean;
662
+ theme?: string | undefined;
663
+ keyMap: import("@zeedhi/core").IKeyMap;
664
+ name: string;
665
+ parent?: /*elided*/ any | undefined;
666
+ tabStop: boolean;
667
+ userProperties: import("@zeedhi/core").IDictionary;
668
+ fillHeight: boolean | string;
669
+ } | undefined;
600
670
  tabStop?: boolean | undefined;
601
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
602
- fillHeight?: boolean | undefined;
671
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
672
+ fillHeight?: boolean | string | undefined;
603
673
  }[];
604
674
  childrenInstances: any[];
605
675
  cssClass: string;
606
676
  cssStyle: string | import("@zeedhi/core").IDictionary<string>;
607
677
  directives: {
608
678
  [x: string]: {
609
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
610
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ [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;
680
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
681
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
682
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
683
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
684
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
685
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
686
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
687
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
618
688
  } | undefined;
619
689
  touch?: {
620
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
621
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ [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;
691
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
692
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
693
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
694
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
695
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
696
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
697
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
698
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
629
699
  } | undefined;
630
700
  };
631
701
  events: {
632
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
633
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
+ [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;
703
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
704
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
705
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
706
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
707
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
708
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
709
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
710
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
641
711
  };
642
712
  isVisible: boolean;
643
713
  name: string;
644
714
  dark: boolean;
645
715
  light: boolean;
646
716
  theme?: string | undefined;
647
- fillHeight: boolean;
717
+ fillHeight: boolean | string;
648
718
  parent?: {
649
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
650
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
719
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
720
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
651
721
  allowDuplicate: boolean;
652
722
  autofocus: boolean;
653
723
  children: {
654
724
  [x: string]: any;
655
725
  allowDuplicate?: boolean | undefined;
656
726
  autofocus?: boolean | undefined;
657
- children?: any[] | undefined;
727
+ children?: /*elided*/ any[] | undefined;
658
728
  componentId?: number | undefined;
659
729
  cssClass?: string | undefined;
660
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
730
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
661
731
  events?: {
662
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
+ [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;
733
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
734
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
735
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
736
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
737
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
738
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
739
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
740
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
671
741
  } | undefined;
672
742
  directives?: {
673
743
  [x: string]: {
674
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
675
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
+ [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;
745
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
746
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
747
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
748
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
749
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
750
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
751
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
752
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
683
753
  } | undefined;
684
754
  touch?: {
685
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
686
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
+ [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;
756
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
757
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
758
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
759
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
760
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
761
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
762
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
763
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
694
764
  } | undefined;
695
765
  } | undefined;
696
- isVisible?: string | boolean | undefined;
766
+ isVisible?: boolean | string | undefined;
697
767
  dark?: boolean | undefined;
698
768
  light?: boolean | undefined;
699
769
  theme?: string | undefined;
700
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
770
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
701
771
  name: string;
702
- parent?: any | undefined;
772
+ parent?: /*elided*/ any | undefined;
703
773
  tabStop?: boolean | undefined;
704
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
705
- fillHeight?: boolean | undefined;
774
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
775
+ fillHeight?: boolean | string | undefined;
706
776
  }[];
707
777
  componentId: number;
708
778
  cssClass: string;
709
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
779
+ cssStyle: string | import("@zeedhi/core").IDictionary;
710
780
  events: {
711
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
712
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
+ [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;
782
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
783
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
784
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
785
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
786
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
787
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
788
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
789
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
720
790
  };
721
791
  directives: {
722
792
  [x: string]: {
723
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
724
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ [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;
794
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
795
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
796
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
797
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
798
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
799
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
800
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
801
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
732
802
  } | undefined;
733
803
  touch?: {
734
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
735
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
804
+ [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;
805
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
806
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
807
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
808
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
809
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
810
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
811
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
812
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
743
813
  } | undefined;
744
814
  };
745
- isVisible: string | boolean;
815
+ isVisible: boolean | string;
746
816
  dark: boolean;
747
817
  light: boolean;
748
818
  theme?: string | undefined;
749
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
819
+ keyMap: import("@zeedhi/core").IKeyMap;
750
820
  name: string;
751
- parent?: any | undefined;
821
+ parent?: /*elided*/ any | undefined;
752
822
  tabStop: boolean;
753
- userProperties: import("@zeedhi/core").IDictionary<any>;
754
- fillHeight: boolean;
823
+ userProperties: import("@zeedhi/core").IDictionary;
824
+ fillHeight: boolean | string;
755
825
  } | undefined;
756
826
  componentId: number;
757
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
827
+ keyMap: import("@zeedhi/core").IKeyMap;
758
828
  isFocused: boolean;
759
829
  tabStop: boolean;
760
830
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -763,22 +833,22 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
763
833
  callEvent: (eventName: string, args: any) => boolean;
764
834
  addChild: (child: import("@zeedhi/common").IComponent) => void;
765
835
  removeChild: (name: string) => void;
766
- getChildInstance: <T_1>(name: string) => T_1;
767
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
836
+ getChildInstance: <T>(name: string) => T;
837
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
768
838
  onCreated: () => void;
769
839
  onBeforeMount: () => void;
770
840
  onMounted: (element: any) => void;
771
841
  onBeforeDestroy: () => void;
772
842
  onDestroyed: () => void;
773
- click: (event?: Event | undefined, element?: any) => void;
843
+ click: (event?: Event, element?: any) => void;
774
844
  focus: (event: Event, element: any) => void;
775
845
  blur: (event: Event, element: any) => void;
776
- mouseenter: (event?: Event | undefined, element?: any) => void;
777
- mouseleave: (event?: Event | undefined, element?: any) => void;
778
- mouseout: (event?: Event | undefined, element?: any) => void;
779
- mouseover: (event?: Event | undefined, element?: any) => void;
846
+ mouseenter: (event?: Event, element?: any) => void;
847
+ mouseleave: (event?: Event, element?: any) => void;
848
+ mouseout: (event?: Event, element?: any) => void;
849
+ mouseover: (event?: Event, element?: any) => void;
780
850
  };
781
- 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>>;
851
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
782
852
  alerts: Alert[];
783
853
  remove: (index: number) => void;
784
854
  hide: (index: number) => void;
@@ -798,16 +868,20 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
798
868
  isArray(arg: any): arg is any[];
799
869
  readonly prototype: any[];
800
870
  from<T>(arrayLike: ArrayLike<T>): T[];
801
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
802
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
803
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
804
- of<T_4>(...items: T_4[]): T_4[];
871
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
872
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
873
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
874
+ of<T>(...items: T[]): T[];
875
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
876
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
805
877
  readonly [Symbol.species]: ArrayConstructor;
806
878
  })[];
807
879
  default(): never[];
880
+ watch: boolean;
808
881
  };
809
882
  component: {
810
883
  type: StringConstructor;
884
+ watch: boolean;
811
885
  };
812
886
  allowDuplicate: {
813
887
  type: (BooleanConstructor | StringConstructor)[];
@@ -832,10 +906,12 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
832
906
  directives: {
833
907
  type: ObjectConstructor;
834
908
  default(): {};
909
+ watch: boolean;
835
910
  };
836
911
  events: {
837
912
  type: ObjectConstructor;
838
913
  default(): {};
914
+ watch: boolean;
839
915
  };
840
916
  instanceObject: {
841
917
  type: ObjectConstructor;
@@ -847,6 +923,7 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
847
923
  keyMap: {
848
924
  type: ObjectConstructor;
849
925
  default(): {};
926
+ watch: boolean;
850
927
  };
851
928
  light: {
852
929
  type: (BooleanConstructor | StringConstructor)[];
@@ -858,6 +935,7 @@ declare const alertComponent: import("vue").DefineComponent<import("vue").Extrac
858
935
  };
859
936
  parent: {
860
937
  type: ObjectConstructor;
938
+ watch: boolean;
861
939
  };
862
940
  tabStop: {
863
941
  type: (BooleanConstructor | StringConstructor)[];