@zeedhi/vuetify 3.0.9 → 3.0.11

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 (348) hide show
  1. package/dist/zd-vuetify.css +17050 -30124
  2. package/dist/zd-vuetify.min.css +5 -0
  3. package/dist/zd-vuetify.min.js +40 -0
  4. package/dist/zd-vuetify.mjs +26244 -0
  5. package/package.json +23 -16
  6. package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +1 -1
  7. package/src/components/zd-badge/ZdBadge.vue +2 -2
  8. package/src/components/zd-button/ZdButton.vue +1 -1
  9. package/src/components/zd-card/ZdCard.vue +2 -2
  10. package/src/components/zd-carousel/ZdCarousel.vue +1 -0
  11. package/src/components/zd-checkbox/ZdCheckbox.vue +4 -0
  12. package/src/components/zd-col/ZdCol.vue +1 -0
  13. package/src/components/zd-component/ZdComponent.ts +1 -1
  14. package/src/components/zd-container/ZdContainer.vue +3 -3
  15. package/src/components/zd-currency/ZdCurrency.vue +1 -0
  16. package/src/components/zd-date-input/ZdDateInput.ts +21 -96
  17. package/src/components/zd-date-input/ZdDateInput.vue +3 -8
  18. package/src/components/zd-date-range/ZdDateRange.ts +15 -95
  19. package/src/components/zd-date-range/ZdDateRange.vue +14 -18
  20. package/src/components/zd-divider/ZdDivider.vue +1 -0
  21. package/src/components/zd-footer/ZdFooter.ts +3 -15
  22. package/src/components/zd-footer/ZdFooter.vue +6 -1
  23. package/src/components/zd-form/ZdForm.ts +1 -1
  24. package/src/components/zd-grid/cell/ZdGridCell.vue +1 -1
  25. package/src/components/zd-grid/column-header/ZdGridColumnHeader.ts +1 -1
  26. package/src/components/zd-grid/footer/ZdGridFooter.vue +2 -2
  27. package/src/components/zd-grid/toolbar/ZdGridToolbar.vue +2 -2
  28. package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -1
  29. package/src/components/zd-header/ZdHeader.ts +3 -19
  30. package/src/components/zd-header/ZdHeader.vue +7 -5
  31. package/src/components/zd-icon/ZdIcon.vue +1 -0
  32. package/src/components/zd-image/ZdImage.vue +1 -0
  33. package/src/components/zd-increment/ZdIncrement.vue +1 -0
  34. package/src/components/zd-iterable/ZdIterableNoData.vue +6 -6
  35. package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.vue +1 -0
  36. package/src/components/zd-iterable/zd-search/ZdSearch.vue +1 -0
  37. package/src/components/zd-iterable-component-render/ZdIterableComponentRender.vue +11 -11
  38. package/src/components/zd-layout/ZdLayout.vue +2 -2
  39. package/src/components/zd-login/ZdLogin.vue +5 -4
  40. package/src/components/zd-login/ZdLoginButton.vue +1 -0
  41. package/src/components/zd-main/ZdMain.vue +2 -2
  42. package/src/components/zd-master-detail/ZdMasterDetail.vue +2 -2
  43. package/src/components/zd-menu/ZdMenu.ts +4 -2
  44. package/src/components/zd-menu/ZdMenuLink.vue +1 -1
  45. package/src/components/zd-menu/ZdMenuSeparator.vue +1 -1
  46. package/src/components/zd-modal/ZdModal.vue +8 -8
  47. package/src/components/zd-modal/ZdModalCloseButton.vue +1 -1
  48. package/src/components/zd-month/ZdMonth.vue +1 -0
  49. package/src/components/zd-password/ZdPassword.vue +1 -0
  50. package/src/components/zd-progress/ZdProgress.vue +2 -2
  51. package/src/components/zd-radio/ZdRadio.vue +14 -10
  52. package/src/components/zd-row/ZdRow.vue +1 -0
  53. package/src/components/zd-select/ZdSelect.vue +4 -4
  54. package/src/components/zd-select-multiple/ZdSelectMultiple.ts +1 -1
  55. package/src/components/zd-select-multiple/ZdSelectMultiple.vue +4 -4
  56. package/src/components/zd-switch/ZdSwitch.vue +41 -41
  57. package/src/components/zd-table/ZdTable.vue +1 -0
  58. package/src/components/zd-tabs/ZdTab.ts +0 -3
  59. package/src/components/zd-tabs/ZdTab.vue +2 -2
  60. package/src/components/zd-tabs/ZdTabItem.vue +12 -11
  61. package/src/components/zd-tabs/ZdTabs.vue +5 -21
  62. package/src/components/zd-text/ZdText.ts +3 -2
  63. package/src/components/zd-time/ZdTime.vue +1 -0
  64. package/src/components/zd-tooltip/ZdTooltip.vue +2 -2
  65. package/src/components/zd-tree/ZdTree.vue +6 -5
  66. package/src/composables/index.ts +2 -0
  67. package/src/composables/useDateKeydown.ts +195 -0
  68. package/src/composables/usePickerValue.ts +22 -0
  69. package/src/index.ts +0 -2
  70. package/src/styles/_zd-input.scss +2 -0
  71. package/src/styles/index.scss +2 -2
  72. package/src/utils/logger/logger.ts +3 -1
  73. package/src/utils/mergeDictionaries.ts +1 -1
  74. package/src/utils/plugins/getIconPlugin.ts +21 -4
  75. package/types/components/tek-grid/TekGrid.d.ts +7258 -0
  76. package/types/components/tek-grid/TekGrid.ts.d.ts +7258 -0
  77. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -0
  78. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +129 -0
  79. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
  80. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
  81. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
  82. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
  83. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -0
  84. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -0
  85. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
  86. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
  87. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
  88. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
  89. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -0
  90. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1892 -0
  91. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
  92. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
  93. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
  94. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
  95. package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +50 -0
  96. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +25 -0
  97. package/types/components/zd-alert/ZdAlert.ts.d.ts +884 -0
  98. package/types/components/zd-badge/ZdBadge.ts.d.ts +624 -0
  99. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +697 -0
  100. package/types/components/zd-button/ZdButton.ts.d.ts +1158 -0
  101. package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +785 -0
  102. package/types/components/zd-card/ZdCard.ts.d.ts +1028 -0
  103. package/types/components/zd-carousel/ZdCarousel.ts.d.ts +2007 -0
  104. package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +642 -0
  105. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +2010 -0
  106. package/types/components/zd-chip/ZdChip.ts.d.ts +1256 -0
  107. package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +791 -0
  108. package/types/components/zd-col/ZdCol.ts.d.ts +741 -0
  109. package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +1583 -0
  110. package/types/components/zd-container/ZdContainer.ts.d.ts +722 -0
  111. package/types/components/zd-currency/ZdCurrency.ts.d.ts +2024 -0
  112. package/types/components/zd-date-input/ZdDateInput.d.ts +2 -2
  113. package/types/components/zd-date-input/ZdDateInput.ts.d.ts +960 -0
  114. package/types/components/zd-date-range/ZdDateRange.d.ts +25 -12
  115. package/types/components/zd-dialog/ZdDialog.ts.d.ts +262 -0
  116. package/types/components/zd-divider/ZdDivider.ts.d.ts +623 -0
  117. package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +836 -0
  118. package/types/components/zd-footer/ZdFooter.ts.d.ts +1262 -0
  119. package/types/components/zd-form/ZdForm.ts.d.ts +118 -0
  120. package/types/components/zd-frame/ZdFrame.ts.d.ts +138 -0
  121. package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +805 -0
  122. package/types/components/zd-grid/ZdGrid.ts.d.ts +7304 -0
  123. package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +14 -0
  124. package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +68 -0
  125. package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +58 -0
  126. package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +53 -0
  127. package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +112 -0
  128. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +46 -0
  129. package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +165 -0
  130. package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +47 -0
  131. package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +2087 -0
  132. package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +16 -0
  133. package/types/components/zd-grid/row/TableRow.ts.d.ts +34 -0
  134. package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +105 -0
  135. package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +2086 -0
  136. package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +8663 -0
  137. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +1 -1
  138. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +637 -0
  139. package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +126 -0
  140. package/types/components/zd-header/ZdHeader.ts.d.ts +1320 -0
  141. package/types/components/zd-icon/ZdIcon.ts.d.ts +383 -0
  142. package/types/components/zd-image/ZdImage.ts.d.ts +753 -0
  143. package/types/components/zd-increment/ZdIncrement.ts.d.ts +2069 -0
  144. package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +2089 -0
  145. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +1645 -0
  146. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +1081 -0
  147. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +2763 -0
  148. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +1627 -0
  149. package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +766 -0
  150. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +2484 -0
  151. package/types/components/zd-layout/ZdLayout.d.ts +1 -1
  152. package/types/components/zd-layout/ZdLayout.ts.d.ts +647 -0
  153. package/types/components/zd-list/ZdList.d.ts +3 -3
  154. package/types/components/zd-list/ZdList.ts.d.ts +1140 -0
  155. package/types/components/zd-list/ZdListGroup.d.ts +2 -2
  156. package/types/components/zd-list/ZdListGroup.ts.d.ts +1332 -0
  157. package/types/components/zd-list/ZdListItem.d.ts +1 -1
  158. package/types/components/zd-list/ZdListItem.ts.d.ts +848 -0
  159. package/types/components/zd-loading/ZdLoading.ts.d.ts +350 -0
  160. package/types/components/zd-login/ZdLogin.ts.d.ts +1072 -0
  161. package/types/components/zd-login/ZdLoginButton.ts.d.ts +1910 -0
  162. package/types/components/zd-main/ZdMain.ts.d.ts +619 -0
  163. package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +684 -0
  164. package/types/components/zd-menu/ZdMenu.ts.d.ts +4484 -0
  165. package/types/components/zd-menu/ZdMenuButton.ts.d.ts +1142 -0
  166. package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +6286 -0
  167. package/types/components/zd-menu/ZdMenuLink.ts.d.ts +10437 -0
  168. package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +600 -0
  169. package/types/components/zd-modal/ZdModal.ts.d.ts +10 -0
  170. package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +1137 -0
  171. package/types/components/zd-month/ZdMonth.d.ts +5 -6
  172. package/types/components/zd-month/ZdMonth.ts.d.ts +2217 -0
  173. package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +2021 -0
  174. package/types/components/zd-password/ZdPassword.ts.d.ts +2014 -0
  175. package/types/components/zd-progress/ZdProgress.ts.d.ts +859 -0
  176. package/types/components/zd-radio/ZdRadio.ts.d.ts +682 -0
  177. package/types/components/zd-row/ZdRow.ts.d.ts +734 -0
  178. package/types/components/zd-select/ZdSelect.ts.d.ts +313 -0
  179. package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +333 -0
  180. package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +414 -0
  181. package/types/components/zd-switch/ZdSwitch.ts.d.ts +1918 -0
  182. package/types/components/zd-table/ZdTable.ts.d.ts +1092 -0
  183. package/types/components/zd-tabs/ZdTab.d.ts +0 -9
  184. package/types/components/zd-tabs/ZdTab.ts.d.ts +674 -0
  185. package/types/components/zd-tabs/ZdTabItem.ts.d.ts +268 -0
  186. package/types/components/zd-tabs/ZdTabs.ts.d.ts +929 -0
  187. package/types/components/zd-tag/ZdTag.ts.d.ts +613 -0
  188. package/types/components/zd-text/ZdText.d.ts +46 -37
  189. package/types/components/zd-text/ZdText.ts.d.ts +670 -0
  190. package/types/components/zd-text-input/ZdTextInput.ts.d.ts +746 -0
  191. package/types/components/zd-textarea/ZdTextarea.ts.d.ts +877 -0
  192. package/types/components/zd-time/ZdTime.ts.d.ts +2224 -0
  193. package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +781 -0
  194. package/types/components/zd-tree/ZdTree.ts.d.ts +1878 -0
  195. package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +26 -0
  196. package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +74 -0
  197. package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +4178 -0
  198. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +92 -0
  199. package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +124 -0
  200. package/types/composables/index.d.ts +2 -0
  201. package/types/composables/useDateKeydown.d.ts +3 -0
  202. package/types/composables/usePickerValue.d.ts +10 -0
  203. package/types/composables/useTableLayout.d.ts +25 -0
  204. package/types/utils/isArrayOperation.d.ts +2 -0
  205. package/vite.config.browser.ts +53 -0
  206. package/vite.config.lib.ts +42 -0
  207. package/.package.json +0 -54
  208. package/dist/components/index.js +0 -275
  209. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +0 -56
  210. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +0 -33
  211. package/dist/components/zd-alert/ZdAlert.js +0 -112
  212. package/dist/components/zd-badge/ZdBadge.js +0 -28
  213. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +0 -55
  214. package/dist/components/zd-button/ZdButton.js +0 -230
  215. package/dist/components/zd-button-group/ZdButtonGroup.js +0 -110
  216. package/dist/components/zd-card/ZdCard.js +0 -132
  217. package/dist/components/zd-carousel/ZdCarousel.js +0 -242
  218. package/dist/components/zd-checkbox/ZdCheckbox.js +0 -35
  219. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +0 -62
  220. package/dist/components/zd-chip/ZdChip.js +0 -94
  221. package/dist/components/zd-code-viewer/ZdCodeViewer.js +0 -55
  222. package/dist/components/zd-code-viewer/prism.js +0 -14
  223. package/dist/components/zd-col/ZdCol.js +0 -45
  224. package/dist/components/zd-collapse-card/ZdCollapseCard.js +0 -85
  225. package/dist/components/zd-component/ZdComponent.js +0 -259
  226. package/dist/components/zd-component/ZdComponentRender.js +0 -14
  227. package/dist/components/zd-container/ZdContainer.js +0 -42
  228. package/dist/components/zd-currency/ZdCurrency.js +0 -24
  229. package/dist/components/zd-date-input/ZdDateInput.js +0 -247
  230. package/dist/components/zd-date-range/ZdDateRange.js +0 -251
  231. package/dist/components/zd-dialog/ZdDialog.js +0 -34
  232. package/dist/components/zd-divider/ZdDivider.js +0 -28
  233. package/dist/components/zd-dropdown/ZdDropdown.js +0 -93
  234. package/dist/components/zd-footer/ZdFooter.js +0 -77
  235. package/dist/components/zd-form/ZdForm.js +0 -85
  236. package/dist/components/zd-frame/ZdFrame.js +0 -76
  237. package/dist/components/zd-frame-page/ZdFramePage.js +0 -21
  238. package/dist/components/zd-grid/ZdGrid.js +0 -284
  239. package/dist/components/zd-grid/cell/ZdGridAction.js +0 -12
  240. package/dist/components/zd-grid/cell/ZdGridCell.js +0 -59
  241. package/dist/components/zd-grid/cell/ZdGridCellContent.js +0 -59
  242. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +0 -38
  243. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +0 -70
  244. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +0 -31
  245. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +0 -102
  246. package/dist/components/zd-grid/column-header/ZdGridSort.js +0 -32
  247. package/dist/components/zd-grid/composables/grid-instance.js +0 -12
  248. package/dist/components/zd-grid/footer/ZdGridFooter.js +0 -16
  249. package/dist/components/zd-grid/helper/ZdGridHelper.js +0 -12
  250. package/dist/components/zd-grid/row/TableRow.js +0 -25
  251. package/dist/components/zd-grid/row/ZdGridRow.js +0 -70
  252. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +0 -15
  253. package/dist/components/zd-grid-editable/ZdGridEditable.js +0 -174
  254. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +0 -135
  255. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +0 -99
  256. package/dist/components/zd-header/ZdHeader.js +0 -111
  257. package/dist/components/zd-icon/ZdIcon.js +0 -63
  258. package/dist/components/zd-image/ZdImage.js +0 -48
  259. package/dist/components/zd-increment/ZdIncrement.js +0 -38
  260. package/dist/components/zd-input/ZdInput.js +0 -164
  261. package/dist/components/zd-iterable/ZdIterable.js +0 -38
  262. package/dist/components/zd-iterable/ZdIterableNoData.js +0 -20
  263. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +0 -50
  264. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +0 -21
  265. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +0 -55
  266. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +0 -36
  267. package/dist/components/zd-iterable/zd-search/ZdSearch.js +0 -42
  268. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +0 -108
  269. package/dist/components/zd-layout/ZdLayout.js +0 -41
  270. package/dist/components/zd-list/ZdList.js +0 -84
  271. package/dist/components/zd-list/ZdListGroup.js +0 -38
  272. package/dist/components/zd-list/ZdListItem.js +0 -66
  273. package/dist/components/zd-loading/ZdLoading.js +0 -61
  274. package/dist/components/zd-login/ZdLogin.js +0 -68
  275. package/dist/components/zd-login/ZdLoginButton.js +0 -28
  276. package/dist/components/zd-main/ZdMain.js +0 -33
  277. package/dist/components/zd-master-detail/ZdMasterDetail.js +0 -48
  278. package/dist/components/zd-menu/ZdMenu.js +0 -302
  279. package/dist/components/zd-menu/ZdMenuButton.js +0 -42
  280. package/dist/components/zd-menu/ZdMenuGroup.js +0 -66
  281. package/dist/components/zd-menu/ZdMenuLink.js +0 -63
  282. package/dist/components/zd-menu/ZdMenuSeparator.js +0 -26
  283. package/dist/components/zd-modal/ZdModal.js +0 -123
  284. package/dist/components/zd-modal/ZdModalCloseButton.js +0 -36
  285. package/dist/components/zd-month/ZdMonth.js +0 -31
  286. package/dist/components/zd-number-input/ZdNumberInput.js +0 -84
  287. package/dist/components/zd-password/ZdPassword.js +0 -23
  288. package/dist/components/zd-progress/ZdProgress.js +0 -52
  289. package/dist/components/zd-radio/ZdRadio.js +0 -56
  290. package/dist/components/zd-row/ZdRow.js +0 -43
  291. package/dist/components/zd-select/ZdSelect.js +0 -191
  292. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +0 -326
  293. package/dist/components/zd-svg-map/ZdSvgMap.js +0 -211
  294. package/dist/components/zd-switch/ZdSwitch.js +0 -39
  295. package/dist/components/zd-table/ZdTable.js +0 -42
  296. package/dist/components/zd-tabs/ZdTab.js +0 -92
  297. package/dist/components/zd-tabs/ZdTabItem.js +0 -17
  298. package/dist/components/zd-tabs/ZdTabs.js +0 -84
  299. package/dist/components/zd-tag/ZdTag.js +0 -34
  300. package/dist/components/zd-text/ZdText.js +0 -35
  301. package/dist/components/zd-text-input/ZdTextInput.js +0 -174
  302. package/dist/components/zd-textarea/ZdTextarea.js +0 -76
  303. package/dist/components/zd-time/ZdTime.js +0 -159
  304. package/dist/components/zd-toggleable/ZdToggleable.js +0 -13
  305. package/dist/components/zd-tooltip/ZdTooltip.js +0 -92
  306. package/dist/components/zd-tree/ZdTree.js +0 -315
  307. package/dist/components/zd-tree/ZdTreeAfterTitle.js +0 -17
  308. package/dist/components/zd-tree/ZdTreeCheckbox.js +0 -97
  309. package/dist/components/zd-tree-grid/ZdTreeGrid.js +0 -101
  310. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +0 -81
  311. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +0 -85
  312. package/dist/composables/cellSelection.js +0 -37
  313. package/dist/composables/columnDrag.js +0 -82
  314. package/dist/composables/columnResize.js +0 -115
  315. package/dist/composables/density.js +0 -13
  316. package/dist/composables/doubleClick.js +0 -32
  317. package/dist/composables/fixedColumns.js +0 -106
  318. package/dist/composables/gridColorVars.js +0 -30
  319. package/dist/composables/gridColumns.js +0 -87
  320. package/dist/composables/gridSelection.js +0 -91
  321. package/dist/composables/gridSorting.js +0 -19
  322. package/dist/composables/hasSlot.js +0 -25
  323. package/dist/composables/index.js +0 -16
  324. package/dist/composables/maska.js +0 -36
  325. package/dist/composables/tableNavigation.js +0 -126
  326. package/dist/composables/useIsMobile.js +0 -8
  327. package/dist/composables/virtualScroll.js +0 -92
  328. package/dist/composables/watchUrl.js +0 -14
  329. package/dist/errors/index.js +0 -3
  330. package/dist/errors/not-provided.js +0 -11
  331. package/dist/errors/row-not-found.js +0 -9
  332. package/dist/errors/zeedhi-error.js +0 -8
  333. package/dist/index.js +0 -49
  334. package/dist/propsMixins/heightProps.js +0 -17
  335. package/dist/propsMixins/index.js +0 -3
  336. package/dist/propsMixins/interfaces.js +0 -1
  337. package/dist/propsMixins/widthProps.js +0 -13
  338. package/dist/utils/buildProps.js +0 -3
  339. package/dist/utils/fillHeight.js +0 -18
  340. package/dist/utils/icons/icons.js +0 -28
  341. package/dist/utils/index.js +0 -6
  342. package/dist/utils/logger/logger.js +0 -7
  343. package/dist/utils/mergeDictionaries.js +0 -22
  344. package/dist/utils/plugins/formatSizePlugin.js +0 -6
  345. package/dist/utils/plugins/getIconPlugin.js +0 -11
  346. package/dist/utils/plugins/index.js +0 -4
  347. package/dist/utils/plugins/styleObjectPlugin.js +0 -13
  348. package/dist/zd-vuetify.js +0 -59211
@@ -0,0 +1,2021 @@
1
+ export declare const ZdNumberInputProps: {
2
+ align: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ mask: {
7
+ type: ObjectConstructor;
8
+ default: () => import("@zeedhi/core").IDictionary<any>;
9
+ };
10
+ value: {
11
+ type: (StringConstructor | NumberConstructor)[];
12
+ default: null;
13
+ };
14
+ appendIcon: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ appendOuterIcon: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ prefix: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ prependIcon: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ prependOuterIcon: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ suffix: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ valueWithPrefix: {
39
+ type: (StringConstructor | BooleanConstructor)[];
40
+ default: boolean;
41
+ };
42
+ valueWithSuffix: {
43
+ type: (StringConstructor | BooleanConstructor)[];
44
+ default: boolean;
45
+ };
46
+ type: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ disableMaska: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ width: {
55
+ type: (StringConstructor | NumberConstructor)[];
56
+ };
57
+ minWidth: {
58
+ type: (StringConstructor | NumberConstructor)[];
59
+ default: string;
60
+ };
61
+ maxWidth: {
62
+ type: (StringConstructor | NumberConstructor)[];
63
+ default: string;
64
+ };
65
+ fillHeight: {
66
+ type: (StringConstructor | BooleanConstructor)[];
67
+ default: boolean;
68
+ };
69
+ height: {
70
+ type: (StringConstructor | NumberConstructor)[];
71
+ };
72
+ minHeight: {
73
+ type: (StringConstructor | NumberConstructor)[];
74
+ default: string;
75
+ };
76
+ maxHeight: {
77
+ type: (StringConstructor | NumberConstructor)[];
78
+ default: string;
79
+ };
80
+ alwaysShowError: {
81
+ type: (StringConstructor | BooleanConstructor)[];
82
+ default: boolean;
83
+ };
84
+ autofill: {
85
+ type: (StringConstructor | BooleanConstructor)[];
86
+ default: boolean;
87
+ };
88
+ clearable: {
89
+ type: (StringConstructor | BooleanConstructor)[];
90
+ default: boolean;
91
+ };
92
+ color: {
93
+ type: StringConstructor;
94
+ default: string;
95
+ };
96
+ dense: {
97
+ type: (StringConstructor | BooleanConstructor)[];
98
+ default: boolean;
99
+ };
100
+ disabled: {
101
+ type: (StringConstructor | BooleanConstructor)[];
102
+ default: boolean;
103
+ };
104
+ hint: {
105
+ type: StringConstructor;
106
+ default: string;
107
+ };
108
+ label: {
109
+ type: StringConstructor;
110
+ default: string;
111
+ };
112
+ maxLength: {
113
+ type: (StringConstructor | NumberConstructor)[];
114
+ default: undefined;
115
+ };
116
+ persistentHint: {
117
+ type: (StringConstructor | BooleanConstructor)[];
118
+ default: boolean;
119
+ };
120
+ placeholder: {
121
+ type: StringConstructor;
122
+ default: string;
123
+ };
124
+ readonly: {
125
+ type: (StringConstructor | BooleanConstructor)[];
126
+ default: boolean;
127
+ };
128
+ autoHintDetails: {
129
+ type: (StringConstructor | BooleanConstructor)[];
130
+ default: boolean;
131
+ };
132
+ reverse: {
133
+ type: (StringConstructor | BooleanConstructor)[];
134
+ default: boolean;
135
+ };
136
+ showBorder: {
137
+ type: (StringConstructor | BooleanConstructor)[];
138
+ default: boolean;
139
+ };
140
+ showHelper: {
141
+ type: (StringConstructor | BooleanConstructor)[];
142
+ default: boolean;
143
+ };
144
+ showLabel: {
145
+ type: (StringConstructor | BooleanConstructor)[];
146
+ default: boolean;
147
+ };
148
+ storePath: {
149
+ type: StringConstructor;
150
+ default: string;
151
+ };
152
+ validations: {
153
+ type: (StringConstructor | ObjectConstructor)[];
154
+ default: {};
155
+ };
156
+ children: {
157
+ type: (StringConstructor | {
158
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
159
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
160
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
161
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
162
+ isArray(arg: any): arg is any[];
163
+ readonly prototype: any[];
164
+ from<T>(arrayLike: ArrayLike<T>): T[];
165
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
166
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
167
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
168
+ of<T_4>(...items: T_4[]): T_4[];
169
+ readonly [Symbol.species]: ArrayConstructor;
170
+ })[];
171
+ default(): never[];
172
+ };
173
+ component: {
174
+ type: StringConstructor;
175
+ };
176
+ allowDuplicate: {
177
+ type: (StringConstructor | BooleanConstructor)[];
178
+ default: boolean;
179
+ };
180
+ autofocus: {
181
+ type: (StringConstructor | BooleanConstructor)[];
182
+ default: boolean;
183
+ };
184
+ cssClass: {
185
+ type: StringConstructor;
186
+ default: string;
187
+ };
188
+ cssStyle: {
189
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
190
+ default: string;
191
+ };
192
+ dark: {
193
+ type: (StringConstructor | BooleanConstructor)[];
194
+ default: boolean;
195
+ };
196
+ directives: {
197
+ type: ObjectConstructor;
198
+ default(): {};
199
+ };
200
+ events: {
201
+ type: ObjectConstructor;
202
+ default(): {};
203
+ };
204
+ instanceObject: {
205
+ type: ObjectConstructor;
206
+ };
207
+ isVisible: {
208
+ type: (StringConstructor | BooleanConstructor)[];
209
+ default: boolean;
210
+ };
211
+ keyMap: {
212
+ type: ObjectConstructor;
213
+ default(): {};
214
+ };
215
+ light: {
216
+ type: (StringConstructor | BooleanConstructor)[];
217
+ default: boolean;
218
+ };
219
+ name: {
220
+ type: StringConstructor;
221
+ required: true;
222
+ };
223
+ parent: {
224
+ type: ObjectConstructor;
225
+ };
226
+ tabStop: {
227
+ type: (StringConstructor | BooleanConstructor)[];
228
+ default: boolean;
229
+ };
230
+ theme: {
231
+ type: StringConstructor;
232
+ };
233
+ };
234
+ declare const numberInputComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
235
+ align: {
236
+ type: StringConstructor;
237
+ default: string;
238
+ };
239
+ mask: {
240
+ type: ObjectConstructor;
241
+ default: () => import("@zeedhi/core").IDictionary<any>;
242
+ };
243
+ value: {
244
+ type: (StringConstructor | NumberConstructor)[];
245
+ default: null;
246
+ };
247
+ appendIcon: {
248
+ type: StringConstructor;
249
+ default: string;
250
+ };
251
+ appendOuterIcon: {
252
+ type: StringConstructor;
253
+ default: string;
254
+ };
255
+ prefix: {
256
+ type: StringConstructor;
257
+ default: string;
258
+ };
259
+ prependIcon: {
260
+ type: StringConstructor;
261
+ default: string;
262
+ };
263
+ prependOuterIcon: {
264
+ type: StringConstructor;
265
+ default: string;
266
+ };
267
+ suffix: {
268
+ type: StringConstructor;
269
+ default: string;
270
+ };
271
+ valueWithPrefix: {
272
+ type: (StringConstructor | BooleanConstructor)[];
273
+ default: boolean;
274
+ };
275
+ valueWithSuffix: {
276
+ type: (StringConstructor | BooleanConstructor)[];
277
+ default: boolean;
278
+ };
279
+ type: {
280
+ type: StringConstructor;
281
+ default: string;
282
+ };
283
+ disableMaska: {
284
+ type: BooleanConstructor;
285
+ default: boolean;
286
+ };
287
+ width: {
288
+ type: (StringConstructor | NumberConstructor)[];
289
+ };
290
+ minWidth: {
291
+ type: (StringConstructor | NumberConstructor)[];
292
+ default: string;
293
+ };
294
+ maxWidth: {
295
+ type: (StringConstructor | NumberConstructor)[];
296
+ default: string;
297
+ };
298
+ fillHeight: {
299
+ type: (StringConstructor | BooleanConstructor)[];
300
+ default: boolean;
301
+ };
302
+ height: {
303
+ type: (StringConstructor | NumberConstructor)[];
304
+ };
305
+ minHeight: {
306
+ type: (StringConstructor | NumberConstructor)[];
307
+ default: string;
308
+ };
309
+ maxHeight: {
310
+ type: (StringConstructor | NumberConstructor)[];
311
+ default: string;
312
+ };
313
+ alwaysShowError: {
314
+ type: (StringConstructor | BooleanConstructor)[];
315
+ default: boolean;
316
+ };
317
+ autofill: {
318
+ type: (StringConstructor | BooleanConstructor)[];
319
+ default: boolean;
320
+ };
321
+ clearable: {
322
+ type: (StringConstructor | BooleanConstructor)[];
323
+ default: boolean;
324
+ };
325
+ color: {
326
+ type: StringConstructor;
327
+ default: string;
328
+ };
329
+ dense: {
330
+ type: (StringConstructor | BooleanConstructor)[];
331
+ default: boolean;
332
+ };
333
+ disabled: {
334
+ type: (StringConstructor | BooleanConstructor)[];
335
+ default: boolean;
336
+ };
337
+ hint: {
338
+ type: StringConstructor;
339
+ default: string;
340
+ };
341
+ label: {
342
+ type: StringConstructor;
343
+ default: string;
344
+ };
345
+ maxLength: {
346
+ type: (StringConstructor | NumberConstructor)[];
347
+ default: undefined;
348
+ };
349
+ persistentHint: {
350
+ type: (StringConstructor | BooleanConstructor)[];
351
+ default: boolean;
352
+ };
353
+ placeholder: {
354
+ type: StringConstructor;
355
+ default: string;
356
+ };
357
+ readonly: {
358
+ type: (StringConstructor | BooleanConstructor)[];
359
+ default: boolean;
360
+ };
361
+ autoHintDetails: {
362
+ type: (StringConstructor | BooleanConstructor)[];
363
+ default: boolean;
364
+ };
365
+ reverse: {
366
+ type: (StringConstructor | BooleanConstructor)[];
367
+ default: boolean;
368
+ };
369
+ showBorder: {
370
+ type: (StringConstructor | BooleanConstructor)[];
371
+ default: boolean;
372
+ };
373
+ showHelper: {
374
+ type: (StringConstructor | BooleanConstructor)[];
375
+ default: boolean;
376
+ };
377
+ showLabel: {
378
+ type: (StringConstructor | BooleanConstructor)[];
379
+ default: boolean;
380
+ };
381
+ storePath: {
382
+ type: StringConstructor;
383
+ default: string;
384
+ };
385
+ validations: {
386
+ type: (StringConstructor | ObjectConstructor)[];
387
+ default: {};
388
+ };
389
+ children: {
390
+ type: (StringConstructor | {
391
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
392
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
393
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
394
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
395
+ isArray(arg: any): arg is any[];
396
+ readonly prototype: any[];
397
+ from<T>(arrayLike: ArrayLike<T>): T[];
398
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
399
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
400
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
401
+ of<T_4>(...items: T_4[]): T_4[];
402
+ readonly [Symbol.species]: ArrayConstructor;
403
+ })[];
404
+ default(): never[];
405
+ };
406
+ component: {
407
+ type: StringConstructor;
408
+ };
409
+ allowDuplicate: {
410
+ type: (StringConstructor | BooleanConstructor)[];
411
+ default: boolean;
412
+ };
413
+ autofocus: {
414
+ type: (StringConstructor | BooleanConstructor)[];
415
+ default: boolean;
416
+ };
417
+ cssClass: {
418
+ type: StringConstructor;
419
+ default: string;
420
+ };
421
+ cssStyle: {
422
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
423
+ default: string;
424
+ };
425
+ dark: {
426
+ type: (StringConstructor | BooleanConstructor)[];
427
+ default: boolean;
428
+ };
429
+ directives: {
430
+ type: ObjectConstructor;
431
+ default(): {};
432
+ };
433
+ events: {
434
+ type: ObjectConstructor;
435
+ default(): {};
436
+ };
437
+ instanceObject: {
438
+ type: ObjectConstructor;
439
+ };
440
+ isVisible: {
441
+ type: (StringConstructor | BooleanConstructor)[];
442
+ default: boolean;
443
+ };
444
+ keyMap: {
445
+ type: ObjectConstructor;
446
+ default(): {};
447
+ };
448
+ light: {
449
+ type: (StringConstructor | BooleanConstructor)[];
450
+ default: boolean;
451
+ };
452
+ name: {
453
+ type: StringConstructor;
454
+ required: true;
455
+ };
456
+ parent: {
457
+ type: ObjectConstructor;
458
+ };
459
+ tabStop: {
460
+ type: (StringConstructor | BooleanConstructor)[];
461
+ default: boolean;
462
+ };
463
+ theme: {
464
+ type: StringConstructor;
465
+ };
466
+ }>, {
467
+ instance: {
468
+ mask: any;
469
+ align: string;
470
+ autoNumericObj: any;
471
+ validateMask: () => void;
472
+ value: any;
473
+ displayValue: any;
474
+ formatter: (value: any) => string;
475
+ parser: (value: any) => any;
476
+ appendIcon: string;
477
+ appendOuterIcon: string;
478
+ prefix: string;
479
+ prependIcon: string;
480
+ prependOuterIcon: string;
481
+ suffix: string;
482
+ type: string;
483
+ valueWithPrefix: boolean;
484
+ valueWithSuffix: boolean;
485
+ onCreated: () => void;
486
+ appendIconClick: (event: Event, element: any) => void;
487
+ appendOuterIconClick: (event: Event, element: any) => void;
488
+ prependIconClick: (event: Event, element: any) => void;
489
+ prependOuterIconClick: (event: Event, element: any) => void;
490
+ getMask: () => any;
491
+ alwaysShowError: boolean;
492
+ autofill: boolean;
493
+ clearable: boolean;
494
+ color: string;
495
+ dense: boolean;
496
+ disabled: boolean;
497
+ events: {
498
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
499
+ change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
+ input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
+ keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
+ keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
507
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
508
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
509
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
+ };
512
+ hint: string;
513
+ label: string;
514
+ maxLength: number;
515
+ persistentHint: boolean;
516
+ placeholder: string;
517
+ readonly: boolean;
518
+ reverse: boolean;
519
+ rules: ((value?: any) => string | boolean)[];
520
+ showBorder: boolean;
521
+ showHelper: boolean;
522
+ showLabel: boolean;
523
+ autoHintDetails: boolean;
524
+ storePath: string;
525
+ validations: import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<string | number>>;
526
+ formParent?: {
527
+ children: {
528
+ [x: string]: any;
529
+ grid?: {
530
+ cols?: string | undefined;
531
+ lg?: string | undefined;
532
+ md?: string | undefined;
533
+ sm?: string | undefined;
534
+ xl?: string | undefined;
535
+ 'offset-lg'?: string | undefined;
536
+ 'offset-md'?: string | undefined;
537
+ 'offset-sm'?: string | undefined;
538
+ 'offset-xl'?: string | undefined;
539
+ } | undefined;
540
+ children?: {
541
+ [x: string]: any;
542
+ children?: any[] | undefined;
543
+ component: string;
544
+ allowDuplicate?: boolean | undefined;
545
+ autofocus?: boolean | undefined;
546
+ componentId?: number | undefined;
547
+ cssClass?: string | undefined;
548
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
549
+ events?: {
550
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
551
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
557
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
558
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
559
+ } | undefined;
560
+ directives?: {
561
+ [x: string]: {
562
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
563
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
570
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
571
+ } | undefined;
572
+ touch?: {
573
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
574
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
581
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
582
+ } | undefined;
583
+ } | undefined;
584
+ isVisible?: string | boolean | undefined;
585
+ dark?: boolean | undefined;
586
+ light?: boolean | undefined;
587
+ theme?: string | undefined;
588
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
589
+ name: string;
590
+ parent?: {
591
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
592
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
593
+ allowDuplicate: boolean;
594
+ autofocus: boolean;
595
+ children: {
596
+ [x: string]: any;
597
+ allowDuplicate?: boolean | undefined;
598
+ autofocus?: boolean | undefined;
599
+ children?: any[] | undefined;
600
+ componentId?: number | undefined;
601
+ cssClass?: string | undefined;
602
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
603
+ events?: {
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;
613
+ } | undefined;
614
+ directives?: {
615
+ [x: string]: {
616
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
617
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
+ } | undefined;
626
+ touch?: {
627
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
628
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
+ } | undefined;
637
+ } | undefined;
638
+ isVisible?: string | boolean | undefined;
639
+ dark?: boolean | undefined;
640
+ light?: boolean | undefined;
641
+ theme?: string | undefined;
642
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
643
+ name: string;
644
+ parent?: any | undefined;
645
+ tabStop?: boolean | undefined;
646
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
647
+ fillHeight?: boolean | undefined;
648
+ }[];
649
+ componentId: number;
650
+ cssClass: string;
651
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
652
+ events: {
653
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
654
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
655
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
656
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
+ };
663
+ directives: {
664
+ [x: string]: {
665
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
666
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ } | undefined;
675
+ touch?: {
676
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
677
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
+ } | undefined;
686
+ };
687
+ isVisible: string | boolean;
688
+ dark: boolean;
689
+ light: boolean;
690
+ theme?: string | undefined;
691
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
692
+ name: string;
693
+ parent?: any | undefined;
694
+ tabStop: boolean;
695
+ userProperties: import("@zeedhi/core").IDictionary<any>;
696
+ fillHeight: boolean;
697
+ } | undefined;
698
+ tabStop?: boolean | undefined;
699
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
700
+ fillHeight?: boolean | undefined;
701
+ }[] | undefined;
702
+ component: string;
703
+ allowDuplicate?: boolean | undefined;
704
+ autofocus?: boolean | undefined;
705
+ componentId?: number | undefined;
706
+ cssClass?: string | undefined;
707
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
708
+ events?: {
709
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
710
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ } | undefined;
719
+ directives?: {
720
+ [x: string]: {
721
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
722
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
+ } | undefined;
731
+ touch?: {
732
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
733
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
+ } | undefined;
742
+ } | undefined;
743
+ isVisible?: string | boolean | undefined;
744
+ dark?: boolean | undefined;
745
+ light?: boolean | undefined;
746
+ theme?: string | undefined;
747
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
748
+ name: string;
749
+ parent?: {
750
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
751
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
752
+ allowDuplicate: boolean;
753
+ autofocus: boolean;
754
+ children: {
755
+ [x: string]: any;
756
+ allowDuplicate?: boolean | undefined;
757
+ autofocus?: boolean | undefined;
758
+ children?: any[] | undefined;
759
+ componentId?: number | undefined;
760
+ cssClass?: string | undefined;
761
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
762
+ events?: {
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;
772
+ } | undefined;
773
+ directives?: {
774
+ [x: string]: {
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;
784
+ } | undefined;
785
+ touch?: {
786
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
787
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ } | undefined;
796
+ } | undefined;
797
+ isVisible?: string | boolean | undefined;
798
+ dark?: boolean | undefined;
799
+ light?: boolean | undefined;
800
+ theme?: string | undefined;
801
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
802
+ name: string;
803
+ parent?: any | undefined;
804
+ tabStop?: boolean | undefined;
805
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
806
+ fillHeight?: boolean | undefined;
807
+ }[];
808
+ componentId: number;
809
+ cssClass: string;
810
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
811
+ events: {
812
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
813
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
815
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
816
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
817
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
+ };
822
+ directives: {
823
+ [x: string]: {
824
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
825
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
827
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
+ } | undefined;
834
+ touch?: {
835
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
836
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
837
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
838
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
839
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
840
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
841
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
842
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
843
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
844
+ } | undefined;
845
+ };
846
+ isVisible: string | boolean;
847
+ dark: boolean;
848
+ light: boolean;
849
+ theme?: string | undefined;
850
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
851
+ name: string;
852
+ parent?: any | undefined;
853
+ tabStop: boolean;
854
+ userProperties: import("@zeedhi/core").IDictionary<any>;
855
+ fillHeight: boolean;
856
+ } | undefined;
857
+ tabStop?: boolean | undefined;
858
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
859
+ fillHeight?: boolean | undefined;
860
+ }[];
861
+ align?: string | undefined;
862
+ justify?: string | undefined;
863
+ height: string | number;
864
+ minHeight: string | number;
865
+ maxHeight: string | number;
866
+ width: string | number;
867
+ minWidth: string | number;
868
+ maxWidth: string | number;
869
+ events: {
870
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
871
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
872
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
873
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
874
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
875
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
876
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
877
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
878
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
879
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
880
+ };
881
+ submitFunction?: (() => void) | undefined;
882
+ value: import("@zeedhi/core").IDictionary<any>;
883
+ clearForm: () => void;
884
+ registerInput: (component: import("@zeedhi/common").Input) => void;
885
+ readonly childrenProps: {
886
+ [x: string]: any;
887
+ children?: {
888
+ [x: string]: any;
889
+ children?: any[] | undefined;
890
+ component: string;
891
+ allowDuplicate?: boolean | undefined;
892
+ autofocus?: boolean | undefined;
893
+ componentId?: number | undefined;
894
+ cssClass?: string | undefined;
895
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
896
+ events?: {
897
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
898
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
899
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ } | undefined;
907
+ directives?: {
908
+ [x: string]: {
909
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
910
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
911
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
912
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
913
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
914
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
915
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
916
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
917
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
918
+ } | undefined;
919
+ touch?: {
920
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
921
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
922
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
923
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
924
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
925
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
926
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
927
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
928
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
929
+ } | undefined;
930
+ } | undefined;
931
+ isVisible?: string | boolean | undefined;
932
+ dark?: boolean | undefined;
933
+ light?: boolean | undefined;
934
+ theme?: string | undefined;
935
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
936
+ name: string;
937
+ parent?: {
938
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
939
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
940
+ allowDuplicate: boolean;
941
+ autofocus: boolean;
942
+ children: {
943
+ [x: string]: any;
944
+ allowDuplicate?: boolean | undefined;
945
+ autofocus?: boolean | undefined;
946
+ children?: any[] | undefined;
947
+ componentId?: number | undefined;
948
+ cssClass?: string | undefined;
949
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
950
+ events?: {
951
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
952
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
+ } | undefined;
961
+ directives?: {
962
+ [x: string]: {
963
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
964
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
966
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
967
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
968
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
969
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
972
+ } | undefined;
973
+ touch?: {
974
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
975
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
978
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
+ } | undefined;
984
+ } | undefined;
985
+ isVisible?: string | boolean | undefined;
986
+ dark?: boolean | undefined;
987
+ light?: boolean | undefined;
988
+ theme?: string | undefined;
989
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
990
+ name: string;
991
+ parent?: any | undefined;
992
+ tabStop?: boolean | undefined;
993
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
994
+ fillHeight?: boolean | undefined;
995
+ }[];
996
+ componentId: number;
997
+ cssClass: string;
998
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
999
+ events: {
1000
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1001
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1006
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1009
+ };
1010
+ directives: {
1011
+ [x: string]: {
1012
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1013
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1020
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1021
+ } | undefined;
1022
+ touch?: {
1023
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1024
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1025
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1026
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1032
+ } | undefined;
1033
+ };
1034
+ isVisible: string | boolean;
1035
+ dark: boolean;
1036
+ light: boolean;
1037
+ theme?: string | undefined;
1038
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1039
+ name: string;
1040
+ parent?: any | undefined;
1041
+ tabStop: boolean;
1042
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1043
+ fillHeight: boolean;
1044
+ } | undefined;
1045
+ tabStop?: boolean | undefined;
1046
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1047
+ fillHeight?: boolean | undefined;
1048
+ }[] | undefined;
1049
+ component: string;
1050
+ allowDuplicate?: boolean | undefined;
1051
+ autofocus?: boolean | undefined;
1052
+ componentId?: number | undefined;
1053
+ cssClass?: string | undefined;
1054
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1055
+ events?: {
1056
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1057
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1058
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1059
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ } | undefined;
1066
+ directives?: {
1067
+ [x: string]: {
1068
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1069
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1070
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1071
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1072
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1073
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1074
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1075
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1076
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1077
+ } | undefined;
1078
+ touch?: {
1079
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1080
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1082
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1086
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1088
+ } | undefined;
1089
+ } | undefined;
1090
+ isVisible?: string | boolean | undefined;
1091
+ dark?: boolean | undefined;
1092
+ light?: boolean | undefined;
1093
+ theme?: string | undefined;
1094
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1095
+ name: string;
1096
+ parent?: {
1097
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1098
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1099
+ allowDuplicate: boolean;
1100
+ autofocus: boolean;
1101
+ children: {
1102
+ [x: string]: any;
1103
+ allowDuplicate?: boolean | undefined;
1104
+ autofocus?: boolean | undefined;
1105
+ children?: any[] | undefined;
1106
+ componentId?: number | undefined;
1107
+ cssClass?: string | undefined;
1108
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1109
+ events?: {
1110
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1111
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1113
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
+ } | undefined;
1120
+ directives?: {
1121
+ [x: string]: {
1122
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1123
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1126
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1127
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1128
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
+ } | undefined;
1132
+ touch?: {
1133
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1134
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1137
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1138
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1139
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1140
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
+ } | undefined;
1143
+ } | undefined;
1144
+ isVisible?: string | boolean | undefined;
1145
+ dark?: boolean | undefined;
1146
+ light?: boolean | undefined;
1147
+ theme?: string | undefined;
1148
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1149
+ name: string;
1150
+ parent?: any | undefined;
1151
+ tabStop?: boolean | undefined;
1152
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1153
+ fillHeight?: boolean | undefined;
1154
+ }[];
1155
+ componentId: number;
1156
+ cssClass: string;
1157
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1158
+ events: {
1159
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1160
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1161
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1162
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1163
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
+ };
1169
+ directives: {
1170
+ [x: string]: {
1171
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1172
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1173
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1174
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1176
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1177
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1178
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1179
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1180
+ } | undefined;
1181
+ touch?: {
1182
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1183
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1184
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1185
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1186
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1187
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1188
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1189
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1190
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1191
+ } | undefined;
1192
+ };
1193
+ isVisible: string | boolean;
1194
+ dark: boolean;
1195
+ light: boolean;
1196
+ theme?: string | undefined;
1197
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1198
+ name: string;
1199
+ parent?: any | undefined;
1200
+ tabStop: boolean;
1201
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1202
+ fillHeight: boolean;
1203
+ } | undefined;
1204
+ tabStop?: boolean | undefined;
1205
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1206
+ fillHeight?: boolean | undefined;
1207
+ }[];
1208
+ readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1209
+ validate: () => Promise<{
1210
+ valid: boolean;
1211
+ }>;
1212
+ setViewValidate: (viewValidate: () => Promise<{
1213
+ valid: boolean;
1214
+ errors: {
1215
+ id: string | number;
1216
+ errorMessages: string[];
1217
+ }[];
1218
+ }>) => void;
1219
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1220
+ callSubmitEvent: (event: Event, element: any) => void;
1221
+ onMounted: (element: any) => void;
1222
+ submit: () => void;
1223
+ resetValidation: () => void;
1224
+ component: string;
1225
+ allowDuplicate: boolean;
1226
+ autofocus: boolean;
1227
+ childrenInstances: any[];
1228
+ cssClass: string;
1229
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1230
+ directives: {
1231
+ [x: string]: {
1232
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1233
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1234
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1240
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1241
+ } | undefined;
1242
+ touch?: {
1243
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1244
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1245
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1246
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1247
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
+ } | undefined;
1253
+ };
1254
+ isVisible: boolean;
1255
+ name: string;
1256
+ dark: boolean;
1257
+ light: boolean;
1258
+ theme?: string | undefined;
1259
+ fillHeight: boolean;
1260
+ parent?: {
1261
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1262
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1263
+ allowDuplicate: boolean;
1264
+ autofocus: boolean;
1265
+ children: {
1266
+ [x: string]: any;
1267
+ allowDuplicate?: boolean | undefined;
1268
+ autofocus?: boolean | undefined;
1269
+ children?: any[] | undefined;
1270
+ componentId?: number | undefined;
1271
+ cssClass?: string | undefined;
1272
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1273
+ events?: {
1274
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1275
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1279
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1280
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1281
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1282
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1283
+ } | undefined;
1284
+ directives?: {
1285
+ [x: string]: {
1286
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1287
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1289
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1290
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1291
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1292
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1293
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1294
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1295
+ } | undefined;
1296
+ touch?: {
1297
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1298
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1302
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1303
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1304
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1305
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1306
+ } | undefined;
1307
+ } | undefined;
1308
+ isVisible?: string | boolean | undefined;
1309
+ dark?: boolean | undefined;
1310
+ light?: boolean | undefined;
1311
+ theme?: string | undefined;
1312
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1313
+ name: string;
1314
+ parent?: any | undefined;
1315
+ tabStop?: boolean | undefined;
1316
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1317
+ fillHeight?: boolean | undefined;
1318
+ }[];
1319
+ componentId: number;
1320
+ cssClass: string;
1321
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1322
+ events: {
1323
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1324
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1325
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1326
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1327
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1328
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1329
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1330
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1331
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1332
+ };
1333
+ directives: {
1334
+ [x: string]: {
1335
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1336
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1337
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1338
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1339
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1340
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1341
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1342
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1343
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1344
+ } | undefined;
1345
+ touch?: {
1346
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1347
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1348
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1349
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1350
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1351
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1352
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1353
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1354
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1355
+ } | undefined;
1356
+ };
1357
+ isVisible: string | boolean;
1358
+ dark: boolean;
1359
+ light: boolean;
1360
+ theme?: string | undefined;
1361
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1362
+ name: string;
1363
+ parent?: any | undefined;
1364
+ tabStop: boolean;
1365
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1366
+ fillHeight: boolean;
1367
+ } | undefined;
1368
+ componentId: number;
1369
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1370
+ isFocused: boolean;
1371
+ tabStop: boolean;
1372
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1373
+ setViewFocus: (viewFocus: () => void) => void;
1374
+ setFocus: () => void;
1375
+ callEvent: (eventName: string, args: any) => boolean;
1376
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1377
+ removeChild: (name: string) => void;
1378
+ getChildInstance: <T_1>(name: string) => T_1;
1379
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1380
+ onCreated: () => void;
1381
+ onBeforeMount: () => void;
1382
+ onBeforeDestroy: () => void;
1383
+ onDestroyed: () => void;
1384
+ click: (event?: Event | undefined, element?: any) => void;
1385
+ focus: (event: Event, element: any) => void;
1386
+ blur: (event: Event, element: any) => void;
1387
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1388
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1389
+ mouseout: (event?: Event | undefined, element?: any) => void;
1390
+ mouseover: (event?: Event | undefined, element?: any) => void;
1391
+ } | undefined;
1392
+ validate: () => Promise<string[]>;
1393
+ setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1394
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1395
+ resetValidation: () => void;
1396
+ addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1397
+ removeValidation: (name: string) => void;
1398
+ clearValidations: () => void;
1399
+ isValid: (value?: any) => boolean;
1400
+ change: (event?: Event | undefined, element?: any) => void;
1401
+ input: (event?: Event | undefined, element?: any) => void;
1402
+ keyup: (event?: Event | undefined, element?: any) => void;
1403
+ keydown: (event?: Event | undefined, element?: any) => void;
1404
+ children: {
1405
+ [x: string]: any;
1406
+ children?: any[] | undefined;
1407
+ component: string;
1408
+ allowDuplicate?: boolean | undefined;
1409
+ autofocus?: boolean | undefined;
1410
+ componentId?: number | undefined;
1411
+ cssClass?: string | undefined;
1412
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1413
+ events?: {
1414
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1415
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1420
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1421
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1422
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1423
+ } | undefined;
1424
+ directives?: {
1425
+ [x: string]: {
1426
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1427
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1428
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1429
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1430
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1431
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1432
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1433
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1434
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1435
+ } | undefined;
1436
+ touch?: {
1437
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1438
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1439
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1440
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1443
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1444
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1445
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1446
+ } | undefined;
1447
+ } | undefined;
1448
+ isVisible?: string | boolean | undefined;
1449
+ dark?: boolean | undefined;
1450
+ light?: boolean | undefined;
1451
+ theme?: string | undefined;
1452
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1453
+ name: string;
1454
+ parent?: {
1455
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1456
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1457
+ allowDuplicate: boolean;
1458
+ autofocus: boolean;
1459
+ children: {
1460
+ [x: string]: any;
1461
+ allowDuplicate?: boolean | undefined;
1462
+ autofocus?: boolean | undefined;
1463
+ children?: any[] | undefined;
1464
+ componentId?: number | undefined;
1465
+ cssClass?: string | undefined;
1466
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1467
+ events?: {
1468
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1469
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1472
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1473
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1474
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1477
+ } | undefined;
1478
+ directives?: {
1479
+ [x: string]: {
1480
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1481
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1482
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1483
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1485
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1489
+ } | undefined;
1490
+ touch?: {
1491
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1492
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1493
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1494
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1495
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1496
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1497
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1498
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1499
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1500
+ } | undefined;
1501
+ } | undefined;
1502
+ isVisible?: string | boolean | undefined;
1503
+ dark?: boolean | undefined;
1504
+ light?: boolean | undefined;
1505
+ theme?: string | undefined;
1506
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1507
+ name: string;
1508
+ parent?: any | undefined;
1509
+ tabStop?: boolean | undefined;
1510
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1511
+ fillHeight?: boolean | undefined;
1512
+ }[];
1513
+ componentId: number;
1514
+ cssClass: string;
1515
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1516
+ events: {
1517
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1518
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1519
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1520
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1521
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1522
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1523
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1524
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1525
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1526
+ };
1527
+ directives: {
1528
+ [x: string]: {
1529
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1530
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1531
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1532
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1533
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1534
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1535
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1536
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1537
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1538
+ } | undefined;
1539
+ touch?: {
1540
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1541
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1542
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1543
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1544
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1545
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1546
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1547
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1548
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1549
+ } | undefined;
1550
+ };
1551
+ isVisible: string | boolean;
1552
+ dark: boolean;
1553
+ light: boolean;
1554
+ theme?: string | undefined;
1555
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1556
+ name: string;
1557
+ parent?: any | undefined;
1558
+ tabStop: boolean;
1559
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1560
+ fillHeight: boolean;
1561
+ } | undefined;
1562
+ tabStop?: boolean | undefined;
1563
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1564
+ fillHeight?: boolean | undefined;
1565
+ }[];
1566
+ component: string;
1567
+ allowDuplicate: boolean;
1568
+ autofocus: boolean;
1569
+ childrenInstances: any[];
1570
+ cssClass: string;
1571
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1572
+ directives: {
1573
+ [x: string]: {
1574
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1575
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1576
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1577
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1578
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1579
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1580
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1581
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1582
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1583
+ } | undefined;
1584
+ touch?: {
1585
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1586
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1587
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1588
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1589
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1590
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1591
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1592
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1593
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1594
+ } | undefined;
1595
+ };
1596
+ isVisible: boolean;
1597
+ name: string;
1598
+ dark: boolean;
1599
+ light: boolean;
1600
+ theme?: string | undefined;
1601
+ fillHeight: boolean;
1602
+ parent?: {
1603
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1604
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1605
+ allowDuplicate: boolean;
1606
+ autofocus: boolean;
1607
+ children: {
1608
+ [x: string]: any;
1609
+ allowDuplicate?: boolean | undefined;
1610
+ autofocus?: boolean | undefined;
1611
+ children?: any[] | undefined;
1612
+ componentId?: number | undefined;
1613
+ cssClass?: string | undefined;
1614
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1615
+ events?: {
1616
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1617
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1618
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1619
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1620
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1621
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1622
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1623
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1624
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1625
+ } | undefined;
1626
+ directives?: {
1627
+ [x: string]: {
1628
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1629
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1630
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1631
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1632
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1633
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1634
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1635
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1636
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1637
+ } | undefined;
1638
+ touch?: {
1639
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1640
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1641
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1642
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1643
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1644
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1645
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1646
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1647
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1648
+ } | undefined;
1649
+ } | undefined;
1650
+ isVisible?: string | boolean | undefined;
1651
+ dark?: boolean | undefined;
1652
+ light?: boolean | undefined;
1653
+ theme?: string | undefined;
1654
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1655
+ name: string;
1656
+ parent?: any | undefined;
1657
+ tabStop?: boolean | undefined;
1658
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1659
+ fillHeight?: boolean | undefined;
1660
+ }[];
1661
+ componentId: number;
1662
+ cssClass: string;
1663
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1664
+ events: {
1665
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1666
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1667
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1668
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1669
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1670
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1671
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1672
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1673
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1674
+ };
1675
+ directives: {
1676
+ [x: string]: {
1677
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1678
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1679
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1680
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1681
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1682
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1683
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1684
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1685
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1686
+ } | undefined;
1687
+ touch?: {
1688
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1689
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1690
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1691
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1692
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1693
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1694
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1695
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1696
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1697
+ } | undefined;
1698
+ };
1699
+ isVisible: string | boolean;
1700
+ dark: boolean;
1701
+ light: boolean;
1702
+ theme?: string | undefined;
1703
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1704
+ name: string;
1705
+ parent?: any | undefined;
1706
+ tabStop: boolean;
1707
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1708
+ fillHeight: boolean;
1709
+ } | undefined;
1710
+ componentId: number;
1711
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1712
+ isFocused: boolean;
1713
+ tabStop: boolean;
1714
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1715
+ setViewFocus: (viewFocus: () => void) => void;
1716
+ setFocus: () => void;
1717
+ callEvent: (eventName: string, args: any) => boolean;
1718
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1719
+ removeChild: (name: string) => void;
1720
+ getChildInstance: <T_1>(name: string) => T_1;
1721
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1722
+ onBeforeMount: () => void;
1723
+ onMounted: (element: any) => void;
1724
+ onBeforeDestroy: () => void;
1725
+ onDestroyed: () => void;
1726
+ click: (event?: Event | undefined, element?: any) => void;
1727
+ focus: (event: Event, element: any) => void;
1728
+ blur: (event: Event, element: any) => void;
1729
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1730
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1731
+ mouseout: (event?: Event | undefined, element?: any) => void;
1732
+ mouseover: (event?: Event | undefined, element?: any) => void;
1733
+ };
1734
+ 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>>;
1735
+ numberInput: (value: any) => void;
1736
+ alterMask: (event: KeyboardEvent) => void;
1737
+ getInputAutocompleteValue: () => "one-time-code" | "off";
1738
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1739
+ align: {
1740
+ type: StringConstructor;
1741
+ default: string;
1742
+ };
1743
+ mask: {
1744
+ type: ObjectConstructor;
1745
+ default: () => import("@zeedhi/core").IDictionary<any>;
1746
+ };
1747
+ value: {
1748
+ type: (StringConstructor | NumberConstructor)[];
1749
+ default: null;
1750
+ };
1751
+ appendIcon: {
1752
+ type: StringConstructor;
1753
+ default: string;
1754
+ };
1755
+ appendOuterIcon: {
1756
+ type: StringConstructor;
1757
+ default: string;
1758
+ };
1759
+ prefix: {
1760
+ type: StringConstructor;
1761
+ default: string;
1762
+ };
1763
+ prependIcon: {
1764
+ type: StringConstructor;
1765
+ default: string;
1766
+ };
1767
+ prependOuterIcon: {
1768
+ type: StringConstructor;
1769
+ default: string;
1770
+ };
1771
+ suffix: {
1772
+ type: StringConstructor;
1773
+ default: string;
1774
+ };
1775
+ valueWithPrefix: {
1776
+ type: (StringConstructor | BooleanConstructor)[];
1777
+ default: boolean;
1778
+ };
1779
+ valueWithSuffix: {
1780
+ type: (StringConstructor | BooleanConstructor)[];
1781
+ default: boolean;
1782
+ };
1783
+ type: {
1784
+ type: StringConstructor;
1785
+ default: string;
1786
+ };
1787
+ disableMaska: {
1788
+ type: BooleanConstructor;
1789
+ default: boolean;
1790
+ };
1791
+ width: {
1792
+ type: (StringConstructor | NumberConstructor)[];
1793
+ };
1794
+ minWidth: {
1795
+ type: (StringConstructor | NumberConstructor)[];
1796
+ default: string;
1797
+ };
1798
+ maxWidth: {
1799
+ type: (StringConstructor | NumberConstructor)[];
1800
+ default: string;
1801
+ };
1802
+ fillHeight: {
1803
+ type: (StringConstructor | BooleanConstructor)[];
1804
+ default: boolean;
1805
+ };
1806
+ height: {
1807
+ type: (StringConstructor | NumberConstructor)[];
1808
+ };
1809
+ minHeight: {
1810
+ type: (StringConstructor | NumberConstructor)[];
1811
+ default: string;
1812
+ };
1813
+ maxHeight: {
1814
+ type: (StringConstructor | NumberConstructor)[];
1815
+ default: string;
1816
+ };
1817
+ alwaysShowError: {
1818
+ type: (StringConstructor | BooleanConstructor)[];
1819
+ default: boolean;
1820
+ };
1821
+ autofill: {
1822
+ type: (StringConstructor | BooleanConstructor)[];
1823
+ default: boolean;
1824
+ };
1825
+ clearable: {
1826
+ type: (StringConstructor | BooleanConstructor)[];
1827
+ default: boolean;
1828
+ };
1829
+ color: {
1830
+ type: StringConstructor;
1831
+ default: string;
1832
+ };
1833
+ dense: {
1834
+ type: (StringConstructor | BooleanConstructor)[];
1835
+ default: boolean;
1836
+ };
1837
+ disabled: {
1838
+ type: (StringConstructor | BooleanConstructor)[];
1839
+ default: boolean;
1840
+ };
1841
+ hint: {
1842
+ type: StringConstructor;
1843
+ default: string;
1844
+ };
1845
+ label: {
1846
+ type: StringConstructor;
1847
+ default: string;
1848
+ };
1849
+ maxLength: {
1850
+ type: (StringConstructor | NumberConstructor)[];
1851
+ default: undefined;
1852
+ };
1853
+ persistentHint: {
1854
+ type: (StringConstructor | BooleanConstructor)[];
1855
+ default: boolean;
1856
+ };
1857
+ placeholder: {
1858
+ type: StringConstructor;
1859
+ default: string;
1860
+ };
1861
+ readonly: {
1862
+ type: (StringConstructor | BooleanConstructor)[];
1863
+ default: boolean;
1864
+ };
1865
+ autoHintDetails: {
1866
+ type: (StringConstructor | BooleanConstructor)[];
1867
+ default: boolean;
1868
+ };
1869
+ reverse: {
1870
+ type: (StringConstructor | BooleanConstructor)[];
1871
+ default: boolean;
1872
+ };
1873
+ showBorder: {
1874
+ type: (StringConstructor | BooleanConstructor)[];
1875
+ default: boolean;
1876
+ };
1877
+ showHelper: {
1878
+ type: (StringConstructor | BooleanConstructor)[];
1879
+ default: boolean;
1880
+ };
1881
+ showLabel: {
1882
+ type: (StringConstructor | BooleanConstructor)[];
1883
+ default: boolean;
1884
+ };
1885
+ storePath: {
1886
+ type: StringConstructor;
1887
+ default: string;
1888
+ };
1889
+ validations: {
1890
+ type: (StringConstructor | ObjectConstructor)[];
1891
+ default: {};
1892
+ };
1893
+ children: {
1894
+ type: (StringConstructor | {
1895
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1896
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1897
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1898
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1899
+ isArray(arg: any): arg is any[];
1900
+ readonly prototype: any[];
1901
+ from<T>(arrayLike: ArrayLike<T>): T[];
1902
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1903
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1904
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1905
+ of<T_4>(...items: T_4[]): T_4[];
1906
+ readonly [Symbol.species]: ArrayConstructor;
1907
+ })[];
1908
+ default(): never[];
1909
+ };
1910
+ component: {
1911
+ type: StringConstructor;
1912
+ };
1913
+ allowDuplicate: {
1914
+ type: (StringConstructor | BooleanConstructor)[];
1915
+ default: boolean;
1916
+ };
1917
+ autofocus: {
1918
+ type: (StringConstructor | BooleanConstructor)[];
1919
+ default: boolean;
1920
+ };
1921
+ cssClass: {
1922
+ type: StringConstructor;
1923
+ default: string;
1924
+ };
1925
+ cssStyle: {
1926
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1927
+ default: string;
1928
+ };
1929
+ dark: {
1930
+ type: (StringConstructor | BooleanConstructor)[];
1931
+ default: boolean;
1932
+ };
1933
+ directives: {
1934
+ type: ObjectConstructor;
1935
+ default(): {};
1936
+ };
1937
+ events: {
1938
+ type: ObjectConstructor;
1939
+ default(): {};
1940
+ };
1941
+ instanceObject: {
1942
+ type: ObjectConstructor;
1943
+ };
1944
+ isVisible: {
1945
+ type: (StringConstructor | BooleanConstructor)[];
1946
+ default: boolean;
1947
+ };
1948
+ keyMap: {
1949
+ type: ObjectConstructor;
1950
+ default(): {};
1951
+ };
1952
+ light: {
1953
+ type: (StringConstructor | BooleanConstructor)[];
1954
+ default: boolean;
1955
+ };
1956
+ name: {
1957
+ type: StringConstructor;
1958
+ required: true;
1959
+ };
1960
+ parent: {
1961
+ type: ObjectConstructor;
1962
+ };
1963
+ tabStop: {
1964
+ type: (StringConstructor | BooleanConstructor)[];
1965
+ default: boolean;
1966
+ };
1967
+ theme: {
1968
+ type: StringConstructor;
1969
+ };
1970
+ }>> & Readonly<{}>, {
1971
+ reverse: string | boolean;
1972
+ allowDuplicate: string | boolean;
1973
+ type: string;
1974
+ autofocus: string | boolean;
1975
+ children: string | import("@zeedhi/common").IComponentRender[];
1976
+ cssClass: string;
1977
+ cssStyle: import("vue").StyleValue;
1978
+ dark: string | boolean;
1979
+ directives: Record<string, any>;
1980
+ events: Record<string, any>;
1981
+ isVisible: string | boolean;
1982
+ keyMap: Record<string, any>;
1983
+ light: string | boolean;
1984
+ tabStop: string | boolean;
1985
+ align: string;
1986
+ alwaysShowError: string | boolean;
1987
+ autofill: string | boolean;
1988
+ clearable: string | boolean;
1989
+ color: string;
1990
+ dense: string | boolean;
1991
+ disabled: string | boolean;
1992
+ hint: string;
1993
+ label: string;
1994
+ mask: Record<string, any>;
1995
+ maxLength: string | number;
1996
+ persistentHint: string | boolean;
1997
+ placeholder: string;
1998
+ readonly: string | boolean;
1999
+ autoHintDetails: string | boolean;
2000
+ showBorder: string | boolean;
2001
+ showHelper: string | boolean;
2002
+ showLabel: string | boolean;
2003
+ storePath: string;
2004
+ validations: string | Record<string, any>;
2005
+ value: string | number;
2006
+ minWidth: string | number;
2007
+ maxWidth: string | number;
2008
+ fillHeight: string | boolean;
2009
+ minHeight: string | number;
2010
+ maxHeight: string | number;
2011
+ appendIcon: string;
2012
+ appendOuterIcon: string;
2013
+ prefix: string;
2014
+ prependIcon: string;
2015
+ prependOuterIcon: string;
2016
+ suffix: string;
2017
+ valueWithPrefix: string | boolean;
2018
+ valueWithSuffix: string | boolean;
2019
+ disableMaska: boolean;
2020
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2021
+ export default numberInputComponent;