@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
@@ -7,6 +7,7 @@ export declare const ZdLoginProps: {
7
7
  bottomLink: {
8
8
  type: () => IComponentRender[];
9
9
  default: () => never[];
10
+ watch: boolean;
10
11
  };
11
12
  cardWidth: {
12
13
  type: (NumberConstructor | StringConstructor)[];
@@ -47,6 +48,7 @@ export declare const ZdLoginProps: {
47
48
  socialLogin: {
48
49
  type: () => IComponentRender[];
49
50
  default: () => never[];
51
+ watch: boolean;
50
52
  };
51
53
  children: {
52
54
  type: (StringConstructor | {
@@ -57,16 +59,20 @@ export declare const ZdLoginProps: {
57
59
  isArray(arg: any): arg is any[];
58
60
  readonly prototype: any[];
59
61
  from<T>(arrayLike: ArrayLike<T>): T[];
60
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
61
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
62
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
63
- of<T_4>(...items: T_4[]): T_4[];
62
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
63
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
64
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
65
+ of<T>(...items: T[]): T[];
66
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
67
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
64
68
  readonly [Symbol.species]: ArrayConstructor;
65
69
  })[];
66
70
  default(): never[];
71
+ watch: boolean;
67
72
  };
68
73
  component: {
69
74
  type: StringConstructor;
75
+ watch: boolean;
70
76
  };
71
77
  allowDuplicate: {
72
78
  type: (BooleanConstructor | StringConstructor)[];
@@ -87,10 +93,12 @@ export declare const ZdLoginProps: {
87
93
  directives: {
88
94
  type: ObjectConstructor;
89
95
  default(): {};
96
+ watch: boolean;
90
97
  };
91
98
  events: {
92
99
  type: ObjectConstructor;
93
100
  default(): {};
101
+ watch: boolean;
94
102
  };
95
103
  instanceObject: {
96
104
  type: ObjectConstructor;
@@ -102,6 +110,7 @@ export declare const ZdLoginProps: {
102
110
  keyMap: {
103
111
  type: ObjectConstructor;
104
112
  default(): {};
113
+ watch: boolean;
105
114
  };
106
115
  light: {
107
116
  type: (BooleanConstructor | StringConstructor)[];
@@ -113,6 +122,7 @@ export declare const ZdLoginProps: {
113
122
  };
114
123
  parent: {
115
124
  type: ObjectConstructor;
125
+ watch: boolean;
116
126
  };
117
127
  tabStop: {
118
128
  type: (BooleanConstructor | StringConstructor)[];
@@ -130,6 +140,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
130
140
  bottomLink: {
131
141
  type: () => IComponentRender[];
132
142
  default: () => never[];
143
+ watch: boolean;
133
144
  };
134
145
  cardWidth: {
135
146
  type: (NumberConstructor | StringConstructor)[];
@@ -170,6 +181,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
170
181
  socialLogin: {
171
182
  type: () => IComponentRender[];
172
183
  default: () => never[];
184
+ watch: boolean;
173
185
  };
174
186
  children: {
175
187
  type: (StringConstructor | {
@@ -180,16 +192,20 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
180
192
  isArray(arg: any): arg is any[];
181
193
  readonly prototype: any[];
182
194
  from<T>(arrayLike: ArrayLike<T>): T[];
183
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
184
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
185
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
186
- of<T_4>(...items: T_4[]): T_4[];
195
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
196
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
197
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
198
+ of<T>(...items: T[]): T[];
199
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
200
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
187
201
  readonly [Symbol.species]: ArrayConstructor;
188
202
  })[];
189
203
  default(): never[];
204
+ watch: boolean;
190
205
  };
191
206
  component: {
192
207
  type: StringConstructor;
208
+ watch: boolean;
193
209
  };
194
210
  allowDuplicate: {
195
211
  type: (BooleanConstructor | StringConstructor)[];
@@ -210,10 +226,12 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
210
226
  directives: {
211
227
  type: ObjectConstructor;
212
228
  default(): {};
229
+ watch: boolean;
213
230
  };
214
231
  events: {
215
232
  type: ObjectConstructor;
216
233
  default(): {};
234
+ watch: boolean;
217
235
  };
218
236
  instanceObject: {
219
237
  type: ObjectConstructor;
@@ -225,6 +243,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
225
243
  keyMap: {
226
244
  type: ObjectConstructor;
227
245
  default(): {};
246
+ watch: boolean;
228
247
  };
229
248
  light: {
230
249
  type: (BooleanConstructor | StringConstructor)[];
@@ -236,6 +255,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
236
255
  };
237
256
  parent: {
238
257
  type: ObjectConstructor;
258
+ watch: boolean;
239
259
  };
240
260
  tabStop: {
241
261
  type: (BooleanConstructor | StringConstructor)[];
@@ -249,165 +269,165 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
249
269
  backgroundStyle: string;
250
270
  bottomLink: {
251
271
  [x: string]: any;
252
- children?: any[] | undefined;
272
+ children?: /*elided*/ any[] | undefined;
253
273
  component: string;
254
274
  allowDuplicate?: boolean | undefined;
255
275
  autofocus?: boolean | undefined;
256
276
  componentId?: number | undefined;
257
277
  cssClass?: string | undefined;
258
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
278
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
259
279
  events?: {
260
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
261
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
262
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
263
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
264
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
266
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
267
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
268
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
280
+ [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;
281
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
282
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
283
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
284
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
285
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
286
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
287
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
288
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
269
289
  } | undefined;
270
290
  directives?: {
271
291
  [x: string]: {
272
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
273
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
274
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
275
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
276
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
277
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
278
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
279
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
280
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
+ [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;
293
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
294
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
295
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
296
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
297
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
298
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
299
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
300
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
281
301
  } | undefined;
282
302
  touch?: {
283
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
284
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
285
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
286
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
287
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
288
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
289
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
303
+ [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;
304
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
305
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
306
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
307
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
308
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
309
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
310
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
311
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
292
312
  } | undefined;
293
313
  } | undefined;
294
- isVisible?: string | boolean | undefined;
314
+ isVisible?: boolean | string | undefined;
295
315
  dark?: boolean | undefined;
296
316
  light?: boolean | undefined;
297
317
  theme?: string | undefined;
298
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
318
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
299
319
  name: string;
300
320
  parent?: {
301
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
302
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
321
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
322
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
303
323
  allowDuplicate: boolean;
304
324
  autofocus: boolean;
305
325
  children: {
306
326
  [x: string]: any;
307
327
  allowDuplicate?: boolean | undefined;
308
328
  autofocus?: boolean | undefined;
309
- children?: any[] | undefined;
329
+ children?: /*elided*/ any[] | undefined;
310
330
  componentId?: number | undefined;
311
331
  cssClass?: string | undefined;
312
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
332
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
313
333
  events?: {
314
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
315
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
321
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
322
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
+ [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;
335
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
336
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
337
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
338
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
339
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
340
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
341
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
342
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
323
343
  } | undefined;
324
344
  directives?: {
325
345
  [x: string]: {
326
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
327
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
328
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
329
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
330
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
331
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
332
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
333
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
+ [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;
347
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
348
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
349
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
350
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
351
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
352
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
353
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
354
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
335
355
  } | undefined;
336
356
  touch?: {
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;
357
+ [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;
358
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
359
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
360
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
361
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
362
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
363
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
364
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
365
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
346
366
  } | undefined;
347
367
  } | undefined;
348
- isVisible?: string | boolean | undefined;
368
+ isVisible?: boolean | string | undefined;
349
369
  dark?: boolean | undefined;
350
370
  light?: boolean | undefined;
351
371
  theme?: string | undefined;
352
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
372
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
353
373
  name: string;
354
- parent?: any | undefined;
374
+ parent?: /*elided*/ any | undefined;
355
375
  tabStop?: boolean | undefined;
356
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
357
- fillHeight?: boolean | undefined;
376
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
377
+ fillHeight?: boolean | string | undefined;
358
378
  }[];
359
379
  componentId: number;
360
380
  cssClass: string;
361
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
381
+ cssStyle: string | import("@zeedhi/core").IDictionary;
362
382
  events: {
363
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
364
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
370
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
371
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
+ [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;
384
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
385
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
386
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
387
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
388
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
389
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
390
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
391
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
372
392
  };
373
393
  directives: {
374
394
  [x: string]: {
375
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
376
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
377
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
378
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
379
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
380
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
381
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
382
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
395
+ [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;
396
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
397
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
398
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
399
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
400
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
401
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
402
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
403
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
384
404
  } | undefined;
385
405
  touch?: {
386
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
387
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
388
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
389
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
390
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
391
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
392
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
393
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
394
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
406
+ [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;
407
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
408
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
409
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
410
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
411
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
412
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
413
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
414
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
395
415
  } | undefined;
396
416
  };
397
- isVisible: string | boolean;
417
+ isVisible: boolean | string;
398
418
  dark: boolean;
399
419
  light: boolean;
400
420
  theme?: string | undefined;
401
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
421
+ keyMap: import("@zeedhi/core").IKeyMap;
402
422
  name: string;
403
- parent?: any | undefined;
423
+ parent?: /*elided*/ any | undefined;
404
424
  tabStop: boolean;
405
- userProperties: import("@zeedhi/core").IDictionary<any>;
406
- fillHeight: boolean;
425
+ userProperties: import("@zeedhi/core").IDictionary;
426
+ fillHeight: boolean | string;
407
427
  } | undefined;
408
428
  tabStop?: boolean | undefined;
409
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
410
- fillHeight?: boolean | undefined;
429
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
430
+ fillHeight?: boolean | string | undefined;
411
431
  }[];
412
432
  cardWidth: string | number;
413
433
  color: string;
@@ -419,327 +439,327 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
419
439
  flatForm: boolean;
420
440
  socialLogin: {
421
441
  [x: string]: any;
422
- children?: any[] | undefined;
442
+ children?: /*elided*/ any[] | undefined;
423
443
  component: string;
424
444
  allowDuplicate?: boolean | undefined;
425
445
  autofocus?: boolean | undefined;
426
446
  componentId?: number | undefined;
427
447
  cssClass?: string | undefined;
428
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
448
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
429
449
  events?: {
430
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
431
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
432
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
433
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
434
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
435
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
436
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
437
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
+ [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;
451
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
452
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
453
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
454
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
455
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
456
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
457
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
458
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
439
459
  } | undefined;
440
460
  directives?: {
441
461
  [x: string]: {
442
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
443
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
445
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
446
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
447
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
448
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
449
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
462
+ [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;
463
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
464
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
465
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
466
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
467
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
468
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
469
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
470
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
451
471
  } | undefined;
452
472
  touch?: {
453
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
454
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
456
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
457
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
458
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
459
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
460
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
473
+ [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;
474
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
475
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
476
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
477
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
478
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
479
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
480
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
481
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
462
482
  } | undefined;
463
483
  } | undefined;
464
- isVisible?: string | boolean | undefined;
484
+ isVisible?: boolean | string | undefined;
465
485
  dark?: boolean | undefined;
466
486
  light?: boolean | undefined;
467
487
  theme?: string | undefined;
468
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
488
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
469
489
  name: string;
470
490
  parent?: {
471
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
472
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
491
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
492
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
473
493
  allowDuplicate: boolean;
474
494
  autofocus: boolean;
475
495
  children: {
476
496
  [x: string]: any;
477
497
  allowDuplicate?: boolean | undefined;
478
498
  autofocus?: boolean | undefined;
479
- children?: any[] | undefined;
499
+ children?: /*elided*/ any[] | undefined;
480
500
  componentId?: number | undefined;
481
501
  cssClass?: string | undefined;
482
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
502
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
483
503
  events?: {
484
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
485
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
486
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
487
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
488
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
489
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
+ [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;
505
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
506
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
507
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
508
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
509
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
510
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
511
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
512
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
493
513
  } | undefined;
494
514
  directives?: {
495
515
  [x: string]: {
496
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
497
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
498
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
499
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
+ [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;
517
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
518
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
519
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
520
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
521
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
522
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
523
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
524
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
505
525
  } | undefined;
506
526
  touch?: {
507
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
508
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
509
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
512
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
+ [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;
528
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
529
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
530
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
531
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
532
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
533
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
534
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
535
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
516
536
  } | undefined;
517
537
  } | undefined;
518
- isVisible?: string | boolean | undefined;
538
+ isVisible?: boolean | string | undefined;
519
539
  dark?: boolean | undefined;
520
540
  light?: boolean | undefined;
521
541
  theme?: string | undefined;
522
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
542
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
523
543
  name: string;
524
- parent?: any | undefined;
544
+ parent?: /*elided*/ any | undefined;
525
545
  tabStop?: boolean | undefined;
526
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
527
- fillHeight?: boolean | undefined;
546
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
547
+ fillHeight?: boolean | string | undefined;
528
548
  }[];
529
549
  componentId: number;
530
550
  cssClass: string;
531
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
551
+ cssStyle: string | import("@zeedhi/core").IDictionary;
532
552
  events: {
533
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
534
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
535
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
536
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
537
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
+ [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;
554
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
555
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
556
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
557
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
558
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
559
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
560
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
561
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
542
562
  };
543
563
  directives: {
544
564
  [x: string]: {
545
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
546
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
547
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
548
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
+ [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;
566
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
567
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
568
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
569
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
570
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
571
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
572
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
573
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
554
574
  } | undefined;
555
575
  touch?: {
556
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
557
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
558
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
559
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
560
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
+ [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;
577
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
578
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
579
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
580
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
581
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
582
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
583
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
584
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
565
585
  } | undefined;
566
586
  };
567
- isVisible: string | boolean;
587
+ isVisible: boolean | string;
568
588
  dark: boolean;
569
589
  light: boolean;
570
590
  theme?: string | undefined;
571
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
591
+ keyMap: import("@zeedhi/core").IKeyMap;
572
592
  name: string;
573
- parent?: any | undefined;
593
+ parent?: /*elided*/ any | undefined;
574
594
  tabStop: boolean;
575
- userProperties: import("@zeedhi/core").IDictionary<any>;
576
- fillHeight: boolean;
595
+ userProperties: import("@zeedhi/core").IDictionary;
596
+ fillHeight: boolean | string;
577
597
  } | undefined;
578
598
  tabStop?: boolean | undefined;
579
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
580
- fillHeight?: boolean | undefined;
599
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
600
+ fillHeight?: boolean | string | undefined;
581
601
  }[];
582
602
  children: {
583
603
  [x: string]: any;
584
- children?: any[] | undefined;
604
+ children?: /*elided*/ any[] | undefined;
585
605
  component: string;
586
606
  allowDuplicate?: boolean | undefined;
587
607
  autofocus?: boolean | undefined;
588
608
  componentId?: number | undefined;
589
609
  cssClass?: string | undefined;
590
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
610
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
591
611
  events?: {
592
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
593
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
594
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
595
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
596
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
597
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
599
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
+ [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;
613
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
614
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
615
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
616
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
617
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
618
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
619
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
620
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
601
621
  } | undefined;
602
622
  directives?: {
603
623
  [x: string]: {
604
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
605
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
+ [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;
625
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
626
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
627
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
628
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
629
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
630
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
631
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
632
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
613
633
  } | undefined;
614
634
  touch?: {
615
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
616
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ [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;
636
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
637
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
638
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
639
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
640
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
641
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
642
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
643
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
624
644
  } | undefined;
625
645
  } | undefined;
626
- isVisible?: string | boolean | undefined;
646
+ isVisible?: boolean | string | undefined;
627
647
  dark?: boolean | undefined;
628
648
  light?: boolean | undefined;
629
649
  theme?: string | undefined;
630
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
650
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
631
651
  name: string;
632
652
  parent?: {
633
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
634
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
653
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
654
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
635
655
  allowDuplicate: boolean;
636
656
  autofocus: boolean;
637
657
  children: {
638
658
  [x: string]: any;
639
659
  allowDuplicate?: boolean | undefined;
640
660
  autofocus?: boolean | undefined;
641
- children?: any[] | undefined;
661
+ children?: /*elided*/ any[] | undefined;
642
662
  componentId?: number | undefined;
643
663
  cssClass?: string | undefined;
644
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
664
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
645
665
  events?: {
646
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
647
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
648
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
649
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
650
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
651
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
+ [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;
667
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
668
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
669
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
670
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
671
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
672
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
673
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
674
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
655
675
  } | undefined;
656
676
  directives?: {
657
677
  [x: string]: {
658
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
659
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
+ [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;
679
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
680
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
681
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
682
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
683
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
684
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
685
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
686
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
667
687
  } | undefined;
668
688
  touch?: {
669
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
670
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
+ [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;
690
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
691
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
692
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
693
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
694
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
695
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
696
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
697
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
678
698
  } | undefined;
679
699
  } | undefined;
680
- isVisible?: string | boolean | undefined;
700
+ isVisible?: boolean | string | undefined;
681
701
  dark?: boolean | undefined;
682
702
  light?: boolean | undefined;
683
703
  theme?: string | undefined;
684
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
704
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
685
705
  name: string;
686
- parent?: any | undefined;
706
+ parent?: /*elided*/ any | undefined;
687
707
  tabStop?: boolean | undefined;
688
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
689
- fillHeight?: boolean | undefined;
708
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
709
+ fillHeight?: boolean | string | undefined;
690
710
  }[];
691
711
  componentId: number;
692
712
  cssClass: string;
693
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
713
+ cssStyle: string | import("@zeedhi/core").IDictionary;
694
714
  events: {
695
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
696
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
697
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
698
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
699
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
700
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
701
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
703
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ [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;
716
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
717
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
718
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
719
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
720
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
721
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
722
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
723
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
704
724
  };
705
725
  directives: {
706
726
  [x: string]: {
707
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
708
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ [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;
728
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
729
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
730
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
731
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
732
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
733
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
734
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
735
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
716
736
  } | undefined;
717
737
  touch?: {
718
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
719
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ [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;
739
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
740
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
741
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
742
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
743
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
744
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
745
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
746
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
727
747
  } | undefined;
728
748
  };
729
- isVisible: string | boolean;
749
+ isVisible: boolean | string;
730
750
  dark: boolean;
731
751
  light: boolean;
732
752
  theme?: string | undefined;
733
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
753
+ keyMap: import("@zeedhi/core").IKeyMap;
734
754
  name: string;
735
- parent?: any | undefined;
755
+ parent?: /*elided*/ any | undefined;
736
756
  tabStop: boolean;
737
- userProperties: import("@zeedhi/core").IDictionary<any>;
738
- fillHeight: boolean;
757
+ userProperties: import("@zeedhi/core").IDictionary;
758
+ fillHeight: boolean | string;
739
759
  } | undefined;
740
760
  tabStop?: boolean | undefined;
741
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
742
- fillHeight?: boolean | undefined;
761
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
762
+ fillHeight?: boolean | string | undefined;
743
763
  }[];
744
764
  component: string;
745
765
  allowDuplicate: boolean;
@@ -749,155 +769,155 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
749
769
  cssStyle: string | import("@zeedhi/core").IDictionary<string>;
750
770
  directives: {
751
771
  [x: string]: {
752
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
753
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>> | undefined)[] | undefined;
773
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
774
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
775
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
776
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
777
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
778
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
779
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
780
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
761
781
  } | undefined;
762
782
  touch?: {
763
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
764
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
+ [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;
784
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
785
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
786
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
787
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
788
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
789
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
790
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
791
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
772
792
  } | undefined;
773
793
  };
774
794
  events: {
775
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
776
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
782
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ [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;
796
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
797
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
798
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
799
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
800
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
801
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
802
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
803
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
784
804
  };
785
805
  isVisible: boolean;
786
806
  name: string;
787
807
  dark: boolean;
788
808
  light: boolean;
789
809
  theme?: string | undefined;
790
- fillHeight: boolean;
810
+ fillHeight: boolean | string;
791
811
  parent?: {
792
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
793
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
812
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
813
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
794
814
  allowDuplicate: boolean;
795
815
  autofocus: boolean;
796
816
  children: {
797
817
  [x: string]: any;
798
818
  allowDuplicate?: boolean | undefined;
799
819
  autofocus?: boolean | undefined;
800
- children?: any[] | undefined;
820
+ children?: /*elided*/ any[] | undefined;
801
821
  componentId?: number | undefined;
802
822
  cssClass?: string | undefined;
803
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
823
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
804
824
  events?: {
805
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
806
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
811
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
+ [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;
826
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
827
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
828
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
829
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
830
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
831
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
832
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
833
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
814
834
  } | undefined;
815
835
  directives?: {
816
836
  [x: string]: {
817
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
818
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
837
+ [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;
838
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
839
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
840
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
841
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
842
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
843
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
844
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
845
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
826
846
  } | undefined;
827
847
  touch?: {
828
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
829
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
834
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
835
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
836
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
848
+ [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;
849
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
850
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
851
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
852
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
853
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
854
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
855
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
856
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
837
857
  } | undefined;
838
858
  } | undefined;
839
- isVisible?: string | boolean | undefined;
859
+ isVisible?: boolean | string | undefined;
840
860
  dark?: boolean | undefined;
841
861
  light?: boolean | undefined;
842
862
  theme?: string | undefined;
843
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
863
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
844
864
  name: string;
845
- parent?: any | undefined;
865
+ parent?: /*elided*/ any | undefined;
846
866
  tabStop?: boolean | undefined;
847
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
848
- fillHeight?: boolean | undefined;
867
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
868
+ fillHeight?: boolean | string | undefined;
849
869
  }[];
850
870
  componentId: number;
851
871
  cssClass: string;
852
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
872
+ cssStyle: string | import("@zeedhi/core").IDictionary;
853
873
  events: {
854
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
855
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
858
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
862
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
+ [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;
875
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
876
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
877
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
878
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
879
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
880
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
881
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
882
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
863
883
  };
864
884
  directives: {
865
885
  [x: string]: {
866
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
867
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
886
+ [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;
887
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
888
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
889
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
890
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
891
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
892
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
893
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
894
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
875
895
  } | undefined;
876
896
  touch?: {
877
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
878
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
884
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
885
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
897
+ [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;
898
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
899
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
900
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
901
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
902
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
903
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
904
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
905
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any, Event>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any, Event>>> | undefined;
886
906
  } | undefined;
887
907
  };
888
- isVisible: string | boolean;
908
+ isVisible: boolean | string;
889
909
  dark: boolean;
890
910
  light: boolean;
891
911
  theme?: string | undefined;
892
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
912
+ keyMap: import("@zeedhi/core").IKeyMap;
893
913
  name: string;
894
- parent?: any | undefined;
914
+ parent?: /*elided*/ any | undefined;
895
915
  tabStop: boolean;
896
- userProperties: import("@zeedhi/core").IDictionary<any>;
897
- fillHeight: boolean;
916
+ userProperties: import("@zeedhi/core").IDictionary;
917
+ fillHeight: boolean | string;
898
918
  } | undefined;
899
919
  componentId: number;
900
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
920
+ keyMap: import("@zeedhi/core").IKeyMap;
901
921
  isFocused: boolean;
902
922
  tabStop: boolean;
903
923
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -906,22 +926,22 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
906
926
  callEvent: (eventName: string, args: any) => boolean;
907
927
  addChild: (child: import("@zeedhi/common").IComponent) => void;
908
928
  removeChild: (name: string) => void;
909
- getChildInstance: <T_1>(name: string) => T_1;
910
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
929
+ getChildInstance: <T>(name: string) => T;
930
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
911
931
  onCreated: () => void;
912
932
  onBeforeMount: () => void;
913
933
  onMounted: (element: any) => void;
914
934
  onBeforeDestroy: () => void;
915
935
  onDestroyed: () => void;
916
- click: (event?: Event | undefined, element?: any) => void;
936
+ click: (event?: Event, element?: any) => void;
917
937
  focus: (event: Event, element: any) => void;
918
938
  blur: (event: Event, element: any) => void;
919
- mouseenter: (event?: Event | undefined, element?: any) => void;
920
- mouseleave: (event?: Event | undefined, element?: any) => void;
921
- mouseout: (event?: Event | undefined, element?: any) => void;
922
- mouseover: (event?: Event | undefined, element?: any) => void;
939
+ mouseenter: (event?: Event, element?: any) => void;
940
+ mouseleave: (event?: Event, element?: any) => void;
941
+ mouseout: (event?: Event, element?: any) => void;
942
+ mouseover: (event?: Event, element?: any) => void;
923
943
  };
924
- 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>>;
944
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
925
945
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
926
946
  backgroundStyle: {
927
947
  type: StringConstructor;
@@ -930,6 +950,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
930
950
  bottomLink: {
931
951
  type: () => IComponentRender[];
932
952
  default: () => never[];
953
+ watch: boolean;
933
954
  };
934
955
  cardWidth: {
935
956
  type: (NumberConstructor | StringConstructor)[];
@@ -970,6 +991,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
970
991
  socialLogin: {
971
992
  type: () => IComponentRender[];
972
993
  default: () => never[];
994
+ watch: boolean;
973
995
  };
974
996
  children: {
975
997
  type: (StringConstructor | {
@@ -980,16 +1002,20 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
980
1002
  isArray(arg: any): arg is any[];
981
1003
  readonly prototype: any[];
982
1004
  from<T>(arrayLike: ArrayLike<T>): T[];
983
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
984
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
985
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
986
- of<T_4>(...items: T_4[]): T_4[];
1005
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1006
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
1007
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1008
+ of<T>(...items: T[]): T[];
1009
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
1010
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
987
1011
  readonly [Symbol.species]: ArrayConstructor;
988
1012
  })[];
989
1013
  default(): never[];
1014
+ watch: boolean;
990
1015
  };
991
1016
  component: {
992
1017
  type: StringConstructor;
1018
+ watch: boolean;
993
1019
  };
994
1020
  allowDuplicate: {
995
1021
  type: (BooleanConstructor | StringConstructor)[];
@@ -1010,10 +1036,12 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
1010
1036
  directives: {
1011
1037
  type: ObjectConstructor;
1012
1038
  default(): {};
1039
+ watch: boolean;
1013
1040
  };
1014
1041
  events: {
1015
1042
  type: ObjectConstructor;
1016
1043
  default(): {};
1044
+ watch: boolean;
1017
1045
  };
1018
1046
  instanceObject: {
1019
1047
  type: ObjectConstructor;
@@ -1025,6 +1053,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
1025
1053
  keyMap: {
1026
1054
  type: ObjectConstructor;
1027
1055
  default(): {};
1056
+ watch: boolean;
1028
1057
  };
1029
1058
  light: {
1030
1059
  type: (BooleanConstructor | StringConstructor)[];
@@ -1036,6 +1065,7 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
1036
1065
  };
1037
1066
  parent: {
1038
1067
  type: ObjectConstructor;
1068
+ watch: boolean;
1039
1069
  };
1040
1070
  tabStop: {
1041
1071
  type: (BooleanConstructor | StringConstructor)[];
@@ -1058,10 +1088,10 @@ declare const loginComponent: import("vue").DefineComponent<import("vue").Extrac
1058
1088
  light: string | boolean;
1059
1089
  tabStop: string | boolean;
1060
1090
  color: string;
1061
- layout: string;
1062
1091
  backgroundStyle: string;
1063
1092
  bottomLink: IComponentRender[];
1064
1093
  cardWidth: string | number;
1094
+ layout: string;
1065
1095
  logo: string;
1066
1096
  logoMessage: string;
1067
1097
  poweredByImage: string;