@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,2217 @@
1
+ export declare const ZdMonthProps: {
2
+ dateFormat: {
3
+ type: StringConstructor;
4
+ };
5
+ displayFormat: {
6
+ type: StringConstructor;
7
+ };
8
+ allowedDates: {
9
+ type: import("vue").PropType<string | string[] | ((date: string) => boolean)>;
10
+ default: undefined;
11
+ };
12
+ appendIcon: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ appendOuterIcon: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ autocomplete: {
21
+ type: (StringConstructor | BooleanConstructor)[];
22
+ default: boolean;
23
+ };
24
+ color: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ firstDayOfWeek: {
29
+ type: (StringConstructor | NumberConstructor)[];
30
+ default: number;
31
+ };
32
+ fullWidth: {
33
+ type: (StringConstructor | BooleanConstructor)[];
34
+ default: boolean;
35
+ };
36
+ prependIcon: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ prependOuterIcon: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ showWeek: {
45
+ type: (StringConstructor | BooleanConstructor)[];
46
+ default: boolean;
47
+ };
48
+ showDatePicker: {
49
+ type: (StringConstructor | BooleanConstructor)[];
50
+ default: boolean;
51
+ };
52
+ width: {
53
+ type: (StringConstructor | NumberConstructor)[];
54
+ default: number;
55
+ };
56
+ mask: {
57
+ type: StringConstructor;
58
+ default: undefined;
59
+ };
60
+ inputFormat: {
61
+ type: StringConstructor;
62
+ };
63
+ helperOptions: {
64
+ type: (StringConstructor | ArrayConstructor)[];
65
+ default: () => never[];
66
+ };
67
+ helperValue: {
68
+ type: StringConstructor;
69
+ default: string;
70
+ };
71
+ max: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ min: {
76
+ type: StringConstructor;
77
+ default: string;
78
+ };
79
+ viewMode: {
80
+ type: StringConstructor;
81
+ default: string;
82
+ };
83
+ prefix: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ suffix: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ };
91
+ valueWithPrefix: {
92
+ type: (StringConstructor | BooleanConstructor)[];
93
+ default: boolean;
94
+ };
95
+ valueWithSuffix: {
96
+ type: (StringConstructor | BooleanConstructor)[];
97
+ default: boolean;
98
+ };
99
+ type: {
100
+ type: StringConstructor;
101
+ default: string;
102
+ };
103
+ disableMaska: {
104
+ type: BooleanConstructor;
105
+ default: boolean;
106
+ };
107
+ minWidth: {
108
+ type: (StringConstructor | NumberConstructor)[];
109
+ default: string;
110
+ };
111
+ maxWidth: {
112
+ type: (StringConstructor | NumberConstructor)[];
113
+ default: string;
114
+ };
115
+ fillHeight: {
116
+ type: (StringConstructor | BooleanConstructor)[];
117
+ default: boolean;
118
+ };
119
+ height: {
120
+ type: (StringConstructor | NumberConstructor)[];
121
+ };
122
+ minHeight: {
123
+ type: (StringConstructor | NumberConstructor)[];
124
+ default: string;
125
+ };
126
+ maxHeight: {
127
+ type: (StringConstructor | NumberConstructor)[];
128
+ default: string;
129
+ };
130
+ align: {
131
+ type: StringConstructor;
132
+ default: string;
133
+ };
134
+ alwaysShowError: {
135
+ type: (StringConstructor | BooleanConstructor)[];
136
+ default: boolean;
137
+ };
138
+ autofill: {
139
+ type: (StringConstructor | BooleanConstructor)[];
140
+ default: boolean;
141
+ };
142
+ clearable: {
143
+ type: (StringConstructor | BooleanConstructor)[];
144
+ default: boolean;
145
+ };
146
+ dense: {
147
+ type: (StringConstructor | BooleanConstructor)[];
148
+ default: boolean;
149
+ };
150
+ disabled: {
151
+ type: (StringConstructor | BooleanConstructor)[];
152
+ default: boolean;
153
+ };
154
+ hint: {
155
+ type: StringConstructor;
156
+ default: string;
157
+ };
158
+ label: {
159
+ type: StringConstructor;
160
+ default: string;
161
+ };
162
+ maxLength: {
163
+ type: (StringConstructor | NumberConstructor)[];
164
+ default: undefined;
165
+ };
166
+ persistentHint: {
167
+ type: (StringConstructor | BooleanConstructor)[];
168
+ default: boolean;
169
+ };
170
+ placeholder: {
171
+ type: StringConstructor;
172
+ default: string;
173
+ };
174
+ readonly: {
175
+ type: (StringConstructor | BooleanConstructor)[];
176
+ default: boolean;
177
+ };
178
+ autoHintDetails: {
179
+ type: (StringConstructor | BooleanConstructor)[];
180
+ default: boolean;
181
+ };
182
+ reverse: {
183
+ type: (StringConstructor | BooleanConstructor)[];
184
+ default: boolean;
185
+ };
186
+ showBorder: {
187
+ type: (StringConstructor | BooleanConstructor)[];
188
+ default: boolean;
189
+ };
190
+ showHelper: {
191
+ type: (StringConstructor | BooleanConstructor)[];
192
+ default: boolean;
193
+ };
194
+ showLabel: {
195
+ type: (StringConstructor | BooleanConstructor)[];
196
+ default: boolean;
197
+ };
198
+ storePath: {
199
+ type: StringConstructor;
200
+ default: string;
201
+ };
202
+ validations: {
203
+ type: (StringConstructor | ObjectConstructor)[];
204
+ default: {};
205
+ };
206
+ value: {
207
+ default: null;
208
+ };
209
+ children: {
210
+ type: (StringConstructor | {
211
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
212
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
213
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
214
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
215
+ isArray(arg: any): arg is any[];
216
+ readonly prototype: any[];
217
+ from<T>(arrayLike: ArrayLike<T>): T[];
218
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
219
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
220
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
221
+ of<T_4>(...items: T_4[]): T_4[];
222
+ readonly [Symbol.species]: ArrayConstructor;
223
+ })[];
224
+ default(): never[];
225
+ };
226
+ component: {
227
+ type: StringConstructor;
228
+ };
229
+ allowDuplicate: {
230
+ type: (StringConstructor | BooleanConstructor)[];
231
+ default: boolean;
232
+ };
233
+ autofocus: {
234
+ type: (StringConstructor | BooleanConstructor)[];
235
+ default: boolean;
236
+ };
237
+ cssClass: {
238
+ type: StringConstructor;
239
+ default: string;
240
+ };
241
+ cssStyle: {
242
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
243
+ default: string;
244
+ };
245
+ dark: {
246
+ type: (StringConstructor | BooleanConstructor)[];
247
+ default: boolean;
248
+ };
249
+ directives: {
250
+ type: ObjectConstructor;
251
+ default(): {};
252
+ };
253
+ events: {
254
+ type: ObjectConstructor;
255
+ default(): {};
256
+ };
257
+ instanceObject: {
258
+ type: ObjectConstructor;
259
+ };
260
+ isVisible: {
261
+ type: (StringConstructor | BooleanConstructor)[];
262
+ default: boolean;
263
+ };
264
+ keyMap: {
265
+ type: ObjectConstructor;
266
+ default(): {};
267
+ };
268
+ light: {
269
+ type: (StringConstructor | BooleanConstructor)[];
270
+ default: boolean;
271
+ };
272
+ name: {
273
+ type: StringConstructor;
274
+ required: true;
275
+ };
276
+ parent: {
277
+ type: ObjectConstructor;
278
+ };
279
+ tabStop: {
280
+ type: (StringConstructor | BooleanConstructor)[];
281
+ default: boolean;
282
+ };
283
+ theme: {
284
+ type: StringConstructor;
285
+ };
286
+ };
287
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
288
+ dateFormat: {
289
+ type: StringConstructor;
290
+ };
291
+ displayFormat: {
292
+ type: StringConstructor;
293
+ };
294
+ allowedDates: {
295
+ type: import("vue").PropType<string | string[] | ((date: string) => boolean)>;
296
+ default: undefined;
297
+ };
298
+ appendIcon: {
299
+ type: StringConstructor;
300
+ default: string;
301
+ };
302
+ appendOuterIcon: {
303
+ type: StringConstructor;
304
+ default: string;
305
+ };
306
+ autocomplete: {
307
+ type: (StringConstructor | BooleanConstructor)[];
308
+ default: boolean;
309
+ };
310
+ color: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ firstDayOfWeek: {
315
+ type: (StringConstructor | NumberConstructor)[];
316
+ default: number;
317
+ };
318
+ fullWidth: {
319
+ type: (StringConstructor | BooleanConstructor)[];
320
+ default: boolean;
321
+ };
322
+ prependIcon: {
323
+ type: StringConstructor;
324
+ default: string;
325
+ };
326
+ prependOuterIcon: {
327
+ type: StringConstructor;
328
+ default: string;
329
+ };
330
+ showWeek: {
331
+ type: (StringConstructor | BooleanConstructor)[];
332
+ default: boolean;
333
+ };
334
+ showDatePicker: {
335
+ type: (StringConstructor | BooleanConstructor)[];
336
+ default: boolean;
337
+ };
338
+ width: {
339
+ type: (StringConstructor | NumberConstructor)[];
340
+ default: number;
341
+ };
342
+ mask: {
343
+ type: StringConstructor;
344
+ default: undefined;
345
+ };
346
+ inputFormat: {
347
+ type: StringConstructor;
348
+ };
349
+ helperOptions: {
350
+ type: (StringConstructor | ArrayConstructor)[];
351
+ default: () => never[];
352
+ };
353
+ helperValue: {
354
+ type: StringConstructor;
355
+ default: string;
356
+ };
357
+ max: {
358
+ type: StringConstructor;
359
+ default: string;
360
+ };
361
+ min: {
362
+ type: StringConstructor;
363
+ default: string;
364
+ };
365
+ viewMode: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ prefix: {
370
+ type: StringConstructor;
371
+ default: string;
372
+ };
373
+ suffix: {
374
+ type: StringConstructor;
375
+ default: string;
376
+ };
377
+ valueWithPrefix: {
378
+ type: (StringConstructor | BooleanConstructor)[];
379
+ default: boolean;
380
+ };
381
+ valueWithSuffix: {
382
+ type: (StringConstructor | BooleanConstructor)[];
383
+ default: boolean;
384
+ };
385
+ type: {
386
+ type: StringConstructor;
387
+ default: string;
388
+ };
389
+ disableMaska: {
390
+ type: BooleanConstructor;
391
+ default: boolean;
392
+ };
393
+ minWidth: {
394
+ type: (StringConstructor | NumberConstructor)[];
395
+ default: string;
396
+ };
397
+ maxWidth: {
398
+ type: (StringConstructor | NumberConstructor)[];
399
+ default: string;
400
+ };
401
+ fillHeight: {
402
+ type: (StringConstructor | BooleanConstructor)[];
403
+ default: boolean;
404
+ };
405
+ height: {
406
+ type: (StringConstructor | NumberConstructor)[];
407
+ };
408
+ minHeight: {
409
+ type: (StringConstructor | NumberConstructor)[];
410
+ default: string;
411
+ };
412
+ maxHeight: {
413
+ type: (StringConstructor | NumberConstructor)[];
414
+ default: string;
415
+ };
416
+ align: {
417
+ type: StringConstructor;
418
+ default: string;
419
+ };
420
+ alwaysShowError: {
421
+ type: (StringConstructor | BooleanConstructor)[];
422
+ default: boolean;
423
+ };
424
+ autofill: {
425
+ type: (StringConstructor | BooleanConstructor)[];
426
+ default: boolean;
427
+ };
428
+ clearable: {
429
+ type: (StringConstructor | BooleanConstructor)[];
430
+ default: boolean;
431
+ };
432
+ dense: {
433
+ type: (StringConstructor | BooleanConstructor)[];
434
+ default: boolean;
435
+ };
436
+ disabled: {
437
+ type: (StringConstructor | BooleanConstructor)[];
438
+ default: boolean;
439
+ };
440
+ hint: {
441
+ type: StringConstructor;
442
+ default: string;
443
+ };
444
+ label: {
445
+ type: StringConstructor;
446
+ default: string;
447
+ };
448
+ maxLength: {
449
+ type: (StringConstructor | NumberConstructor)[];
450
+ default: undefined;
451
+ };
452
+ persistentHint: {
453
+ type: (StringConstructor | BooleanConstructor)[];
454
+ default: boolean;
455
+ };
456
+ placeholder: {
457
+ type: StringConstructor;
458
+ default: string;
459
+ };
460
+ readonly: {
461
+ type: (StringConstructor | BooleanConstructor)[];
462
+ default: boolean;
463
+ };
464
+ autoHintDetails: {
465
+ type: (StringConstructor | BooleanConstructor)[];
466
+ default: boolean;
467
+ };
468
+ reverse: {
469
+ type: (StringConstructor | BooleanConstructor)[];
470
+ default: boolean;
471
+ };
472
+ showBorder: {
473
+ type: (StringConstructor | BooleanConstructor)[];
474
+ default: boolean;
475
+ };
476
+ showHelper: {
477
+ type: (StringConstructor | BooleanConstructor)[];
478
+ default: boolean;
479
+ };
480
+ showLabel: {
481
+ type: (StringConstructor | BooleanConstructor)[];
482
+ default: boolean;
483
+ };
484
+ storePath: {
485
+ type: StringConstructor;
486
+ default: string;
487
+ };
488
+ validations: {
489
+ type: (StringConstructor | ObjectConstructor)[];
490
+ default: {};
491
+ };
492
+ value: {
493
+ default: null;
494
+ };
495
+ children: {
496
+ type: (StringConstructor | {
497
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
498
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
499
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
500
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
501
+ isArray(arg: any): arg is any[];
502
+ readonly prototype: any[];
503
+ from<T>(arrayLike: ArrayLike<T>): T[];
504
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
505
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
506
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
507
+ of<T_4>(...items: T_4[]): T_4[];
508
+ readonly [Symbol.species]: ArrayConstructor;
509
+ })[];
510
+ default(): never[];
511
+ };
512
+ component: {
513
+ type: StringConstructor;
514
+ };
515
+ allowDuplicate: {
516
+ type: (StringConstructor | BooleanConstructor)[];
517
+ default: boolean;
518
+ };
519
+ autofocus: {
520
+ type: (StringConstructor | BooleanConstructor)[];
521
+ default: boolean;
522
+ };
523
+ cssClass: {
524
+ type: StringConstructor;
525
+ default: string;
526
+ };
527
+ cssStyle: {
528
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
529
+ default: string;
530
+ };
531
+ dark: {
532
+ type: (StringConstructor | BooleanConstructor)[];
533
+ default: boolean;
534
+ };
535
+ directives: {
536
+ type: ObjectConstructor;
537
+ default(): {};
538
+ };
539
+ events: {
540
+ type: ObjectConstructor;
541
+ default(): {};
542
+ };
543
+ instanceObject: {
544
+ type: ObjectConstructor;
545
+ };
546
+ isVisible: {
547
+ type: (StringConstructor | BooleanConstructor)[];
548
+ default: boolean;
549
+ };
550
+ keyMap: {
551
+ type: ObjectConstructor;
552
+ default(): {};
553
+ };
554
+ light: {
555
+ type: (StringConstructor | BooleanConstructor)[];
556
+ default: boolean;
557
+ };
558
+ name: {
559
+ type: StringConstructor;
560
+ required: true;
561
+ };
562
+ parent: {
563
+ type: ObjectConstructor;
564
+ };
565
+ tabStop: {
566
+ type: (StringConstructor | BooleanConstructor)[];
567
+ default: boolean;
568
+ };
569
+ theme: {
570
+ type: StringConstructor;
571
+ };
572
+ }>, {
573
+ instance: {
574
+ dateFormat: string;
575
+ displayFormat: string;
576
+ inputFormat?: string | undefined;
577
+ viewMode: string;
578
+ blur: (event: Event, element: any) => void;
579
+ focus: (event: Event, element: any) => void;
580
+ allowedDates?: string[] | ((date: string) => boolean) | undefined;
581
+ autocomplete: boolean;
582
+ showDatePicker: boolean;
583
+ firstDayOfWeek: string | number;
584
+ fullWidth: boolean;
585
+ showWeek: boolean;
586
+ helperOptions?: string[] | undefined;
587
+ helperValue?: string | undefined;
588
+ max?: string | undefined;
589
+ min?: string | undefined;
590
+ width: string | number;
591
+ appendIconClick: (event: Event, element: any) => void;
592
+ formatter: (value: string) => string;
593
+ parser: (value: string) => any;
594
+ selectDate: (date: string, event?: Event | undefined, element?: any) => void;
595
+ value: string;
596
+ displayValue: string;
597
+ updateMask: () => any;
598
+ setDateValue: (displayValue: string) => void;
599
+ isValidDate: (value: string, format: string, strict?: boolean | undefined) => boolean;
600
+ isValidFormatDate: (value: string, format: string, strict?: boolean | undefined) => boolean;
601
+ getNativeDate: () => Date | null;
602
+ setNativeDate: (date: Date) => void;
603
+ getAllowedDates: (date: Date) => boolean;
604
+ formatISODateValue: (value: string) => string;
605
+ parseISODateValue: (value: string) => any;
606
+ dateValidation: () => string | boolean;
607
+ click: (event?: Event | undefined, element?: any) => void;
608
+ onMounted: () => void;
609
+ togglePicker: () => void;
610
+ iconClick: (event: Event, element: any) => void;
611
+ updateHelperHint: () => void;
612
+ change: (event?: Event | undefined, element?: any) => void;
613
+ getMask: () => string;
614
+ appendIcon: string;
615
+ appendOuterIcon: string;
616
+ prefix: string;
617
+ prependIcon: string;
618
+ prependOuterIcon: string;
619
+ suffix: string;
620
+ type: string;
621
+ valueWithPrefix: boolean;
622
+ valueWithSuffix: boolean;
623
+ onCreated: () => void;
624
+ appendOuterIconClick: (event: Event, element: any) => void;
625
+ prependIconClick: (event: Event, element: any) => void;
626
+ prependOuterIconClick: (event: Event, element: any) => void;
627
+ align: string;
628
+ alwaysShowError: boolean;
629
+ autofill: boolean;
630
+ clearable: boolean;
631
+ color: string;
632
+ dense: boolean;
633
+ disabled: boolean;
634
+ events: {
635
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
636
+ change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
+ input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
+ keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
+ keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
645
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
647
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
648
+ };
649
+ hint: string;
650
+ label: string;
651
+ mask?: any;
652
+ maxLength: number;
653
+ persistentHint: boolean;
654
+ placeholder: string;
655
+ readonly: boolean;
656
+ reverse: boolean;
657
+ rules: ((value?: any) => string | boolean)[];
658
+ showBorder: boolean;
659
+ showHelper: boolean;
660
+ showLabel: boolean;
661
+ autoHintDetails: boolean;
662
+ storePath: string;
663
+ validations: import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<string | number>>;
664
+ formParent?: {
665
+ children: {
666
+ [x: string]: any;
667
+ grid?: {
668
+ cols?: string | undefined;
669
+ lg?: string | undefined;
670
+ md?: string | undefined;
671
+ sm?: string | undefined;
672
+ xl?: string | undefined;
673
+ 'offset-lg'?: string | undefined;
674
+ 'offset-md'?: string | undefined;
675
+ 'offset-sm'?: string | undefined;
676
+ 'offset-xl'?: string | undefined;
677
+ } | undefined;
678
+ children?: {
679
+ [x: string]: any;
680
+ children?: any[] | undefined;
681
+ component: string;
682
+ allowDuplicate?: boolean | undefined;
683
+ autofocus?: boolean | undefined;
684
+ componentId?: number | undefined;
685
+ cssClass?: string | undefined;
686
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
687
+ events?: {
688
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
689
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
695
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
696
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
697
+ } | undefined;
698
+ directives?: {
699
+ [x: string]: {
700
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
701
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
703
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
704
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
708
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
+ } | undefined;
710
+ touch?: {
711
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
712
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ } | undefined;
721
+ } | undefined;
722
+ isVisible?: string | boolean | undefined;
723
+ dark?: boolean | undefined;
724
+ light?: boolean | undefined;
725
+ theme?: string | undefined;
726
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
727
+ name: string;
728
+ parent?: {
729
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
730
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
731
+ allowDuplicate: boolean;
732
+ autofocus: boolean;
733
+ children: {
734
+ [x: string]: any;
735
+ allowDuplicate?: boolean | undefined;
736
+ autofocus?: boolean | undefined;
737
+ children?: any[] | undefined;
738
+ componentId?: number | undefined;
739
+ cssClass?: string | undefined;
740
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
741
+ events?: {
742
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
743
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
750
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
+ } | undefined;
752
+ directives?: {
753
+ [x: string]: {
754
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
755
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
762
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
+ } | undefined;
764
+ touch?: {
765
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
766
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ } | undefined;
775
+ } | undefined;
776
+ isVisible?: string | boolean | undefined;
777
+ dark?: boolean | undefined;
778
+ light?: boolean | undefined;
779
+ theme?: string | undefined;
780
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
781
+ name: string;
782
+ parent?: any | undefined;
783
+ tabStop?: boolean | undefined;
784
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
785
+ fillHeight?: boolean | undefined;
786
+ }[];
787
+ componentId: number;
788
+ cssClass: string;
789
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
790
+ events: {
791
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
792
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
+ };
801
+ directives: {
802
+ [x: string]: {
803
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
804
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
805
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
806
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
811
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
+ } | undefined;
813
+ touch?: {
814
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
815
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
816
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
817
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
+ } | undefined;
824
+ };
825
+ isVisible: string | boolean;
826
+ dark: boolean;
827
+ light: boolean;
828
+ theme?: string | undefined;
829
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
830
+ name: string;
831
+ parent?: any | undefined;
832
+ tabStop: boolean;
833
+ userProperties: import("@zeedhi/core").IDictionary<any>;
834
+ fillHeight: boolean;
835
+ } | undefined;
836
+ tabStop?: boolean | undefined;
837
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
838
+ fillHeight?: boolean | undefined;
839
+ }[] | undefined;
840
+ component: string;
841
+ allowDuplicate?: boolean | undefined;
842
+ autofocus?: boolean | undefined;
843
+ componentId?: number | undefined;
844
+ cssClass?: string | undefined;
845
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
846
+ events?: {
847
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
848
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
849
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
850
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
851
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
852
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
853
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
854
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
855
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
+ } | undefined;
857
+ directives?: {
858
+ [x: string]: {
859
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
860
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
862
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
863
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
864
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
865
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
866
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
867
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
+ } | undefined;
869
+ touch?: {
870
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
871
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
875
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
876
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
+ } | undefined;
880
+ } | undefined;
881
+ isVisible?: string | boolean | undefined;
882
+ dark?: boolean | undefined;
883
+ light?: boolean | undefined;
884
+ theme?: string | undefined;
885
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
886
+ name: string;
887
+ parent?: {
888
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
889
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
890
+ allowDuplicate: boolean;
891
+ autofocus: boolean;
892
+ children: {
893
+ [x: string]: any;
894
+ allowDuplicate?: boolean | undefined;
895
+ autofocus?: boolean | undefined;
896
+ children?: any[] | undefined;
897
+ componentId?: number | undefined;
898
+ cssClass?: string | undefined;
899
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
900
+ events?: {
901
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
902
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
907
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
908
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
909
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
910
+ } | undefined;
911
+ directives?: {
912
+ [x: string]: {
913
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
914
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
915
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
916
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
917
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
918
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
919
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
920
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
921
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
922
+ } | undefined;
923
+ touch?: {
924
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
925
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
926
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
927
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
928
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
929
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
932
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
+ } | undefined;
934
+ } | undefined;
935
+ isVisible?: string | boolean | undefined;
936
+ dark?: boolean | undefined;
937
+ light?: boolean | undefined;
938
+ theme?: string | undefined;
939
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
940
+ name: string;
941
+ parent?: any | undefined;
942
+ tabStop?: boolean | undefined;
943
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
944
+ fillHeight?: boolean | undefined;
945
+ }[];
946
+ componentId: number;
947
+ cssClass: string;
948
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
949
+ events: {
950
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
951
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
952
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
+ };
960
+ directives: {
961
+ [x: string]: {
962
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
963
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
966
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
967
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
968
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
969
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
+ } | undefined;
972
+ touch?: {
973
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
974
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
978
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
+ } | undefined;
983
+ };
984
+ isVisible: string | boolean;
985
+ dark: boolean;
986
+ light: boolean;
987
+ theme?: string | undefined;
988
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
989
+ name: string;
990
+ parent?: any | undefined;
991
+ tabStop: boolean;
992
+ userProperties: import("@zeedhi/core").IDictionary<any>;
993
+ fillHeight: boolean;
994
+ } | undefined;
995
+ tabStop?: boolean | undefined;
996
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
997
+ fillHeight?: boolean | undefined;
998
+ }[];
999
+ align?: string | undefined;
1000
+ justify?: string | undefined;
1001
+ height: string | number;
1002
+ minHeight: string | number;
1003
+ maxHeight: string | number;
1004
+ width: string | number;
1005
+ minWidth: string | number;
1006
+ maxWidth: string | number;
1007
+ events: {
1008
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
1009
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1010
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1011
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1012
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1013
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1014
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1015
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1016
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1017
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1018
+ };
1019
+ submitFunction?: (() => void) | undefined;
1020
+ value: import("@zeedhi/core").IDictionary<any>;
1021
+ clearForm: () => void;
1022
+ registerInput: (component: import("@zeedhi/common").Input) => void;
1023
+ readonly childrenProps: {
1024
+ [x: string]: any;
1025
+ children?: {
1026
+ [x: string]: any;
1027
+ children?: any[] | undefined;
1028
+ component: string;
1029
+ allowDuplicate?: boolean | undefined;
1030
+ autofocus?: boolean | undefined;
1031
+ componentId?: number | undefined;
1032
+ cssClass?: string | undefined;
1033
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1034
+ events?: {
1035
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1036
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1043
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1044
+ } | undefined;
1045
+ directives?: {
1046
+ [x: string]: {
1047
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1048
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1055
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1056
+ } | undefined;
1057
+ touch?: {
1058
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1059
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1066
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1067
+ } | undefined;
1068
+ } | undefined;
1069
+ isVisible?: string | boolean | undefined;
1070
+ dark?: boolean | undefined;
1071
+ light?: boolean | undefined;
1072
+ theme?: string | undefined;
1073
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1074
+ name: string;
1075
+ parent?: {
1076
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1077
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1078
+ allowDuplicate: boolean;
1079
+ autofocus: boolean;
1080
+ children: {
1081
+ [x: string]: any;
1082
+ allowDuplicate?: boolean | undefined;
1083
+ autofocus?: boolean | undefined;
1084
+ children?: any[] | undefined;
1085
+ componentId?: number | undefined;
1086
+ cssClass?: string | undefined;
1087
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1088
+ events?: {
1089
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1090
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1097
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1098
+ } | undefined;
1099
+ directives?: {
1100
+ [x: string]: {
1101
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1102
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1109
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1110
+ } | undefined;
1111
+ touch?: {
1112
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1113
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
+ } | undefined;
1122
+ } | undefined;
1123
+ isVisible?: string | boolean | undefined;
1124
+ dark?: boolean | undefined;
1125
+ light?: boolean | undefined;
1126
+ theme?: string | undefined;
1127
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1128
+ name: string;
1129
+ parent?: any | undefined;
1130
+ tabStop?: boolean | undefined;
1131
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1132
+ fillHeight?: boolean | undefined;
1133
+ }[];
1134
+ componentId: number;
1135
+ cssClass: string;
1136
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1137
+ events: {
1138
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1139
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1140
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1147
+ };
1148
+ directives: {
1149
+ [x: string]: {
1150
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1151
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1152
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1153
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1154
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1158
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1159
+ } | undefined;
1160
+ touch?: {
1161
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1162
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1163
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1169
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1170
+ } | undefined;
1171
+ };
1172
+ isVisible: string | boolean;
1173
+ dark: boolean;
1174
+ light: boolean;
1175
+ theme?: string | undefined;
1176
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1177
+ name: string;
1178
+ parent?: any | undefined;
1179
+ tabStop: boolean;
1180
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1181
+ fillHeight: boolean;
1182
+ } | undefined;
1183
+ tabStop?: boolean | undefined;
1184
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1185
+ fillHeight?: boolean | undefined;
1186
+ }[] | undefined;
1187
+ component: string;
1188
+ allowDuplicate?: boolean | undefined;
1189
+ autofocus?: boolean | undefined;
1190
+ componentId?: number | undefined;
1191
+ cssClass?: string | undefined;
1192
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1193
+ events?: {
1194
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1195
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1198
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1199
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1200
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1201
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1202
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1203
+ } | undefined;
1204
+ directives?: {
1205
+ [x: string]: {
1206
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1207
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
+ } | undefined;
1216
+ touch?: {
1217
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1218
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1223
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
+ } | undefined;
1227
+ } | undefined;
1228
+ isVisible?: string | boolean | undefined;
1229
+ dark?: boolean | undefined;
1230
+ light?: boolean | undefined;
1231
+ theme?: string | undefined;
1232
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1233
+ name: string;
1234
+ parent?: {
1235
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1236
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1237
+ allowDuplicate: boolean;
1238
+ autofocus: boolean;
1239
+ children: {
1240
+ [x: string]: any;
1241
+ allowDuplicate?: boolean | undefined;
1242
+ autofocus?: boolean | undefined;
1243
+ children?: any[] | undefined;
1244
+ componentId?: number | undefined;
1245
+ cssClass?: string | undefined;
1246
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1247
+ events?: {
1248
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1249
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1253
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1254
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1255
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1256
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1257
+ } | undefined;
1258
+ directives?: {
1259
+ [x: string]: {
1260
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1261
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1263
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1264
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1265
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1266
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1267
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1268
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1269
+ } | undefined;
1270
+ touch?: {
1271
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1272
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1273
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1279
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1280
+ } | undefined;
1281
+ } | undefined;
1282
+ isVisible?: string | boolean | undefined;
1283
+ dark?: boolean | undefined;
1284
+ light?: boolean | undefined;
1285
+ theme?: string | undefined;
1286
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1287
+ name: string;
1288
+ parent?: any | undefined;
1289
+ tabStop?: boolean | undefined;
1290
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1291
+ fillHeight?: boolean | undefined;
1292
+ }[];
1293
+ componentId: number;
1294
+ cssClass: string;
1295
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1296
+ events: {
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
+ };
1307
+ directives: {
1308
+ [x: string]: {
1309
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1310
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1312
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1313
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1314
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1315
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1316
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1317
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1318
+ } | undefined;
1319
+ touch?: {
1320
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1321
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1322
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1323
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1324
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1325
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1326
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1327
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1328
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1329
+ } | undefined;
1330
+ };
1331
+ isVisible: string | boolean;
1332
+ dark: boolean;
1333
+ light: boolean;
1334
+ theme?: string | undefined;
1335
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1336
+ name: string;
1337
+ parent?: any | undefined;
1338
+ tabStop: boolean;
1339
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1340
+ fillHeight: boolean;
1341
+ } | undefined;
1342
+ tabStop?: boolean | undefined;
1343
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1344
+ fillHeight?: boolean | undefined;
1345
+ }[];
1346
+ readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1347
+ validate: () => Promise<{
1348
+ valid: boolean;
1349
+ }>;
1350
+ setViewValidate: (viewValidate: () => Promise<{
1351
+ valid: boolean;
1352
+ errors: {
1353
+ id: string | number;
1354
+ errorMessages: string[];
1355
+ }[];
1356
+ }>) => void;
1357
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1358
+ callSubmitEvent: (event: Event, element: any) => void;
1359
+ onMounted: (element: any) => void;
1360
+ submit: () => void;
1361
+ resetValidation: () => void;
1362
+ component: string;
1363
+ allowDuplicate: boolean;
1364
+ autofocus: boolean;
1365
+ childrenInstances: any[];
1366
+ cssClass: string;
1367
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1368
+ directives: {
1369
+ [x: string]: {
1370
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1371
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1372
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1373
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1374
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1375
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1376
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1377
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1378
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1379
+ } | undefined;
1380
+ touch?: {
1381
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1382
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1383
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1384
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1385
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1386
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1387
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1388
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1389
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1390
+ } | undefined;
1391
+ };
1392
+ isVisible: boolean;
1393
+ name: string;
1394
+ dark: boolean;
1395
+ light: boolean;
1396
+ theme?: string | undefined;
1397
+ fillHeight: boolean;
1398
+ parent?: {
1399
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1400
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1401
+ allowDuplicate: boolean;
1402
+ autofocus: boolean;
1403
+ children: {
1404
+ [x: string]: any;
1405
+ allowDuplicate?: boolean | undefined;
1406
+ autofocus?: boolean | undefined;
1407
+ children?: any[] | undefined;
1408
+ componentId?: number | undefined;
1409
+ cssClass?: string | undefined;
1410
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1411
+ events?: {
1412
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1413
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1414
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1415
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1420
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1421
+ } | undefined;
1422
+ directives?: {
1423
+ [x: string]: {
1424
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1425
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1426
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1427
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1428
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1429
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1430
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1431
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1432
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1433
+ } | undefined;
1434
+ touch?: {
1435
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1436
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1437
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1438
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1439
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1440
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1443
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1444
+ } | undefined;
1445
+ } | undefined;
1446
+ isVisible?: string | boolean | undefined;
1447
+ dark?: boolean | undefined;
1448
+ light?: boolean | undefined;
1449
+ theme?: string | undefined;
1450
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1451
+ name: string;
1452
+ parent?: any | undefined;
1453
+ tabStop?: boolean | undefined;
1454
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1455
+ fillHeight?: boolean | undefined;
1456
+ }[];
1457
+ componentId: number;
1458
+ cssClass: string;
1459
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1460
+ events: {
1461
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1462
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1463
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1464
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1465
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1466
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1467
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1468
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1469
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
+ };
1471
+ directives: {
1472
+ [x: string]: {
1473
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1474
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1477
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1478
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1479
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1480
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1481
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1482
+ } | undefined;
1483
+ touch?: {
1484
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1485
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1489
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1490
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1491
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1492
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1493
+ } | undefined;
1494
+ };
1495
+ isVisible: string | boolean;
1496
+ dark: boolean;
1497
+ light: boolean;
1498
+ theme?: string | undefined;
1499
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1500
+ name: string;
1501
+ parent?: any | undefined;
1502
+ tabStop: boolean;
1503
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1504
+ fillHeight: boolean;
1505
+ } | undefined;
1506
+ componentId: number;
1507
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1508
+ isFocused: boolean;
1509
+ tabStop: boolean;
1510
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1511
+ setViewFocus: (viewFocus: () => void) => void;
1512
+ setFocus: () => void;
1513
+ callEvent: (eventName: string, args: any) => boolean;
1514
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1515
+ removeChild: (name: string) => void;
1516
+ getChildInstance: <T_6>(name: string) => T_6;
1517
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1518
+ onCreated: () => void;
1519
+ onBeforeMount: () => void;
1520
+ onBeforeDestroy: () => void;
1521
+ onDestroyed: () => void;
1522
+ click: (event?: Event | undefined, element?: any) => void;
1523
+ focus: (event: Event, element: any) => void;
1524
+ blur: (event: Event, element: any) => void;
1525
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1526
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1527
+ mouseout: (event?: Event | undefined, element?: any) => void;
1528
+ mouseover: (event?: Event | undefined, element?: any) => void;
1529
+ } | undefined;
1530
+ validate: () => Promise<string[]>;
1531
+ setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1532
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1533
+ resetValidation: () => void;
1534
+ addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1535
+ removeValidation: (name: string) => void;
1536
+ clearValidations: () => void;
1537
+ isValid: (value?: any) => boolean;
1538
+ input: (event?: Event | undefined, element?: any) => void;
1539
+ keyup: (event?: Event | undefined, element?: any) => void;
1540
+ keydown: (event?: Event | undefined, element?: any) => void;
1541
+ children: {
1542
+ [x: string]: any;
1543
+ children?: any[] | undefined;
1544
+ component: string;
1545
+ allowDuplicate?: boolean | undefined;
1546
+ autofocus?: boolean | undefined;
1547
+ componentId?: number | undefined;
1548
+ cssClass?: string | undefined;
1549
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1550
+ events?: {
1551
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1552
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1553
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1554
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1555
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1556
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1557
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1558
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1559
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1560
+ } | undefined;
1561
+ directives?: {
1562
+ [x: string]: {
1563
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1564
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1565
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1566
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1567
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1568
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1569
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1570
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1571
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1572
+ } | undefined;
1573
+ touch?: {
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
+ } | undefined;
1585
+ isVisible?: string | boolean | undefined;
1586
+ dark?: boolean | undefined;
1587
+ light?: boolean | undefined;
1588
+ theme?: string | undefined;
1589
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1590
+ name: string;
1591
+ parent?: {
1592
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1593
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1594
+ allowDuplicate: boolean;
1595
+ autofocus: boolean;
1596
+ children: {
1597
+ [x: string]: any;
1598
+ allowDuplicate?: boolean | undefined;
1599
+ autofocus?: boolean | undefined;
1600
+ children?: any[] | undefined;
1601
+ componentId?: number | undefined;
1602
+ cssClass?: string | undefined;
1603
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1604
+ events?: {
1605
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1606
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1607
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1608
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1609
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1610
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1611
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1612
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1613
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1614
+ } | undefined;
1615
+ directives?: {
1616
+ [x: string]: {
1617
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1618
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1619
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1620
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1621
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1622
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1623
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1624
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1625
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1626
+ } | undefined;
1627
+ touch?: {
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
+ } | undefined;
1639
+ isVisible?: string | boolean | undefined;
1640
+ dark?: boolean | undefined;
1641
+ light?: boolean | undefined;
1642
+ theme?: string | undefined;
1643
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1644
+ name: string;
1645
+ parent?: any | undefined;
1646
+ tabStop?: boolean | undefined;
1647
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1648
+ fillHeight?: boolean | undefined;
1649
+ }[];
1650
+ componentId: number;
1651
+ cssClass: string;
1652
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1653
+ events: {
1654
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1655
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1656
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1657
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1658
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1659
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1660
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1661
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1662
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1663
+ };
1664
+ directives: {
1665
+ [x: string]: {
1666
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1667
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1668
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1669
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1670
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1671
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1672
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1673
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1674
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1675
+ } | undefined;
1676
+ touch?: {
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
+ };
1688
+ isVisible: string | boolean;
1689
+ dark: boolean;
1690
+ light: boolean;
1691
+ theme?: string | undefined;
1692
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1693
+ name: string;
1694
+ parent?: any | undefined;
1695
+ tabStop: boolean;
1696
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1697
+ fillHeight: boolean;
1698
+ } | undefined;
1699
+ tabStop?: boolean | undefined;
1700
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1701
+ fillHeight?: boolean | undefined;
1702
+ }[];
1703
+ component: string;
1704
+ allowDuplicate: boolean;
1705
+ autofocus: boolean;
1706
+ childrenInstances: any[];
1707
+ cssClass: string;
1708
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1709
+ directives: {
1710
+ [x: string]: {
1711
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1712
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1713
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1714
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1715
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1716
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1717
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1718
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1719
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1720
+ } | undefined;
1721
+ touch?: {
1722
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1723
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1724
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1725
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1726
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1727
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1728
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1729
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1730
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1731
+ } | undefined;
1732
+ };
1733
+ isVisible: boolean;
1734
+ name: string;
1735
+ dark: boolean;
1736
+ light: boolean;
1737
+ theme?: string | undefined;
1738
+ fillHeight: boolean;
1739
+ parent?: {
1740
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1741
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1742
+ allowDuplicate: boolean;
1743
+ autofocus: boolean;
1744
+ children: {
1745
+ [x: string]: any;
1746
+ allowDuplicate?: boolean | undefined;
1747
+ autofocus?: boolean | undefined;
1748
+ children?: any[] | undefined;
1749
+ componentId?: number | undefined;
1750
+ cssClass?: string | undefined;
1751
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1752
+ events?: {
1753
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1754
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1755
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1756
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1757
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1758
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1759
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1760
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1761
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1762
+ } | undefined;
1763
+ directives?: {
1764
+ [x: string]: {
1765
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1766
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1767
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1768
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1769
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1770
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1771
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1772
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1773
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1774
+ } | undefined;
1775
+ touch?: {
1776
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1777
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1778
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1779
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1780
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1781
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1782
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1783
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1784
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1785
+ } | undefined;
1786
+ } | undefined;
1787
+ isVisible?: string | boolean | undefined;
1788
+ dark?: boolean | undefined;
1789
+ light?: boolean | undefined;
1790
+ theme?: string | undefined;
1791
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1792
+ name: string;
1793
+ parent?: any | undefined;
1794
+ tabStop?: boolean | undefined;
1795
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1796
+ fillHeight?: boolean | undefined;
1797
+ }[];
1798
+ componentId: number;
1799
+ cssClass: string;
1800
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1801
+ events: {
1802
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1803
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1804
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1805
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1806
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1807
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1808
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1809
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1810
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1811
+ };
1812
+ directives: {
1813
+ [x: string]: {
1814
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1815
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1816
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1817
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1818
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1819
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1820
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1821
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1822
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1823
+ } | undefined;
1824
+ touch?: {
1825
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1826
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1827
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1828
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1829
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1830
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1831
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1832
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1833
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1834
+ } | undefined;
1835
+ };
1836
+ isVisible: string | boolean;
1837
+ dark: boolean;
1838
+ light: boolean;
1839
+ theme?: string | undefined;
1840
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1841
+ name: string;
1842
+ parent?: any | undefined;
1843
+ tabStop: boolean;
1844
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1845
+ fillHeight: boolean;
1846
+ } | undefined;
1847
+ componentId: number;
1848
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1849
+ isFocused: boolean;
1850
+ tabStop: boolean;
1851
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1852
+ setViewFocus: (viewFocus: () => void) => void;
1853
+ setFocus: () => void;
1854
+ callEvent: (eventName: string, args: any) => boolean;
1855
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1856
+ removeChild: (name: string) => void;
1857
+ getChildInstance: <T_6>(name: string) => T_6;
1858
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1859
+ onBeforeMount: () => void;
1860
+ onBeforeDestroy: () => void;
1861
+ onDestroyed: () => void;
1862
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1863
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1864
+ mouseout: (event?: Event | undefined, element?: any) => void;
1865
+ mouseover: (event?: Event | undefined, element?: any) => void;
1866
+ };
1867
+ 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>>;
1868
+ onMonthOrYearChange: (newValue: number, type: 'month' | 'year') => void;
1869
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1870
+ dateFormat: {
1871
+ type: StringConstructor;
1872
+ };
1873
+ displayFormat: {
1874
+ type: StringConstructor;
1875
+ };
1876
+ allowedDates: {
1877
+ type: import("vue").PropType<string | string[] | ((date: string) => boolean)>;
1878
+ default: undefined;
1879
+ };
1880
+ appendIcon: {
1881
+ type: StringConstructor;
1882
+ default: string;
1883
+ };
1884
+ appendOuterIcon: {
1885
+ type: StringConstructor;
1886
+ default: string;
1887
+ };
1888
+ autocomplete: {
1889
+ type: (StringConstructor | BooleanConstructor)[];
1890
+ default: boolean;
1891
+ };
1892
+ color: {
1893
+ type: StringConstructor;
1894
+ default: string;
1895
+ };
1896
+ firstDayOfWeek: {
1897
+ type: (StringConstructor | NumberConstructor)[];
1898
+ default: number;
1899
+ };
1900
+ fullWidth: {
1901
+ type: (StringConstructor | BooleanConstructor)[];
1902
+ default: boolean;
1903
+ };
1904
+ prependIcon: {
1905
+ type: StringConstructor;
1906
+ default: string;
1907
+ };
1908
+ prependOuterIcon: {
1909
+ type: StringConstructor;
1910
+ default: string;
1911
+ };
1912
+ showWeek: {
1913
+ type: (StringConstructor | BooleanConstructor)[];
1914
+ default: boolean;
1915
+ };
1916
+ showDatePicker: {
1917
+ type: (StringConstructor | BooleanConstructor)[];
1918
+ default: boolean;
1919
+ };
1920
+ width: {
1921
+ type: (StringConstructor | NumberConstructor)[];
1922
+ default: number;
1923
+ };
1924
+ mask: {
1925
+ type: StringConstructor;
1926
+ default: undefined;
1927
+ };
1928
+ inputFormat: {
1929
+ type: StringConstructor;
1930
+ };
1931
+ helperOptions: {
1932
+ type: (StringConstructor | ArrayConstructor)[];
1933
+ default: () => never[];
1934
+ };
1935
+ helperValue: {
1936
+ type: StringConstructor;
1937
+ default: string;
1938
+ };
1939
+ max: {
1940
+ type: StringConstructor;
1941
+ default: string;
1942
+ };
1943
+ min: {
1944
+ type: StringConstructor;
1945
+ default: string;
1946
+ };
1947
+ viewMode: {
1948
+ type: StringConstructor;
1949
+ default: string;
1950
+ };
1951
+ prefix: {
1952
+ type: StringConstructor;
1953
+ default: string;
1954
+ };
1955
+ suffix: {
1956
+ type: StringConstructor;
1957
+ default: string;
1958
+ };
1959
+ valueWithPrefix: {
1960
+ type: (StringConstructor | BooleanConstructor)[];
1961
+ default: boolean;
1962
+ };
1963
+ valueWithSuffix: {
1964
+ type: (StringConstructor | BooleanConstructor)[];
1965
+ default: boolean;
1966
+ };
1967
+ type: {
1968
+ type: StringConstructor;
1969
+ default: string;
1970
+ };
1971
+ disableMaska: {
1972
+ type: BooleanConstructor;
1973
+ default: boolean;
1974
+ };
1975
+ minWidth: {
1976
+ type: (StringConstructor | NumberConstructor)[];
1977
+ default: string;
1978
+ };
1979
+ maxWidth: {
1980
+ type: (StringConstructor | NumberConstructor)[];
1981
+ default: string;
1982
+ };
1983
+ fillHeight: {
1984
+ type: (StringConstructor | BooleanConstructor)[];
1985
+ default: boolean;
1986
+ };
1987
+ height: {
1988
+ type: (StringConstructor | NumberConstructor)[];
1989
+ };
1990
+ minHeight: {
1991
+ type: (StringConstructor | NumberConstructor)[];
1992
+ default: string;
1993
+ };
1994
+ maxHeight: {
1995
+ type: (StringConstructor | NumberConstructor)[];
1996
+ default: string;
1997
+ };
1998
+ align: {
1999
+ type: StringConstructor;
2000
+ default: string;
2001
+ };
2002
+ alwaysShowError: {
2003
+ type: (StringConstructor | BooleanConstructor)[];
2004
+ default: boolean;
2005
+ };
2006
+ autofill: {
2007
+ type: (StringConstructor | BooleanConstructor)[];
2008
+ default: boolean;
2009
+ };
2010
+ clearable: {
2011
+ type: (StringConstructor | BooleanConstructor)[];
2012
+ default: boolean;
2013
+ };
2014
+ dense: {
2015
+ type: (StringConstructor | BooleanConstructor)[];
2016
+ default: boolean;
2017
+ };
2018
+ disabled: {
2019
+ type: (StringConstructor | BooleanConstructor)[];
2020
+ default: boolean;
2021
+ };
2022
+ hint: {
2023
+ type: StringConstructor;
2024
+ default: string;
2025
+ };
2026
+ label: {
2027
+ type: StringConstructor;
2028
+ default: string;
2029
+ };
2030
+ maxLength: {
2031
+ type: (StringConstructor | NumberConstructor)[];
2032
+ default: undefined;
2033
+ };
2034
+ persistentHint: {
2035
+ type: (StringConstructor | BooleanConstructor)[];
2036
+ default: boolean;
2037
+ };
2038
+ placeholder: {
2039
+ type: StringConstructor;
2040
+ default: string;
2041
+ };
2042
+ readonly: {
2043
+ type: (StringConstructor | BooleanConstructor)[];
2044
+ default: boolean;
2045
+ };
2046
+ autoHintDetails: {
2047
+ type: (StringConstructor | BooleanConstructor)[];
2048
+ default: boolean;
2049
+ };
2050
+ reverse: {
2051
+ type: (StringConstructor | BooleanConstructor)[];
2052
+ default: boolean;
2053
+ };
2054
+ showBorder: {
2055
+ type: (StringConstructor | BooleanConstructor)[];
2056
+ default: boolean;
2057
+ };
2058
+ showHelper: {
2059
+ type: (StringConstructor | BooleanConstructor)[];
2060
+ default: boolean;
2061
+ };
2062
+ showLabel: {
2063
+ type: (StringConstructor | BooleanConstructor)[];
2064
+ default: boolean;
2065
+ };
2066
+ storePath: {
2067
+ type: StringConstructor;
2068
+ default: string;
2069
+ };
2070
+ validations: {
2071
+ type: (StringConstructor | ObjectConstructor)[];
2072
+ default: {};
2073
+ };
2074
+ value: {
2075
+ default: null;
2076
+ };
2077
+ children: {
2078
+ type: (StringConstructor | {
2079
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2080
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2081
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2082
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2083
+ isArray(arg: any): arg is any[];
2084
+ readonly prototype: any[];
2085
+ from<T>(arrayLike: ArrayLike<T>): T[];
2086
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
2087
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
2088
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
2089
+ of<T_4>(...items: T_4[]): T_4[];
2090
+ readonly [Symbol.species]: ArrayConstructor;
2091
+ })[];
2092
+ default(): never[];
2093
+ };
2094
+ component: {
2095
+ type: StringConstructor;
2096
+ };
2097
+ allowDuplicate: {
2098
+ type: (StringConstructor | BooleanConstructor)[];
2099
+ default: boolean;
2100
+ };
2101
+ autofocus: {
2102
+ type: (StringConstructor | BooleanConstructor)[];
2103
+ default: boolean;
2104
+ };
2105
+ cssClass: {
2106
+ type: StringConstructor;
2107
+ default: string;
2108
+ };
2109
+ cssStyle: {
2110
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
2111
+ default: string;
2112
+ };
2113
+ dark: {
2114
+ type: (StringConstructor | BooleanConstructor)[];
2115
+ default: boolean;
2116
+ };
2117
+ directives: {
2118
+ type: ObjectConstructor;
2119
+ default(): {};
2120
+ };
2121
+ events: {
2122
+ type: ObjectConstructor;
2123
+ default(): {};
2124
+ };
2125
+ instanceObject: {
2126
+ type: ObjectConstructor;
2127
+ };
2128
+ isVisible: {
2129
+ type: (StringConstructor | BooleanConstructor)[];
2130
+ default: boolean;
2131
+ };
2132
+ keyMap: {
2133
+ type: ObjectConstructor;
2134
+ default(): {};
2135
+ };
2136
+ light: {
2137
+ type: (StringConstructor | BooleanConstructor)[];
2138
+ default: boolean;
2139
+ };
2140
+ name: {
2141
+ type: StringConstructor;
2142
+ required: true;
2143
+ };
2144
+ parent: {
2145
+ type: ObjectConstructor;
2146
+ };
2147
+ tabStop: {
2148
+ type: (StringConstructor | BooleanConstructor)[];
2149
+ default: boolean;
2150
+ };
2151
+ theme: {
2152
+ type: StringConstructor;
2153
+ };
2154
+ }>> & Readonly<{}>, {
2155
+ reverse: string | boolean;
2156
+ allowDuplicate: string | boolean;
2157
+ type: string;
2158
+ autofocus: string | boolean;
2159
+ children: string | import("@zeedhi/common").IComponentRender[];
2160
+ cssClass: string;
2161
+ cssStyle: import("vue").StyleValue;
2162
+ dark: string | boolean;
2163
+ directives: Record<string, any>;
2164
+ events: Record<string, any>;
2165
+ isVisible: string | boolean;
2166
+ keyMap: Record<string, any>;
2167
+ light: string | boolean;
2168
+ tabStop: string | boolean;
2169
+ align: string;
2170
+ alwaysShowError: string | boolean;
2171
+ autofill: string | boolean;
2172
+ clearable: string | boolean;
2173
+ color: string;
2174
+ dense: string | boolean;
2175
+ disabled: string | boolean;
2176
+ hint: string;
2177
+ label: string;
2178
+ mask: string;
2179
+ maxLength: string | number;
2180
+ persistentHint: string | boolean;
2181
+ placeholder: string;
2182
+ readonly: string | boolean;
2183
+ autoHintDetails: string | boolean;
2184
+ showBorder: string | boolean;
2185
+ showHelper: string | boolean;
2186
+ showLabel: string | boolean;
2187
+ storePath: string;
2188
+ validations: string | Record<string, any>;
2189
+ value: null;
2190
+ width: string | number;
2191
+ minWidth: string | number;
2192
+ maxWidth: string | number;
2193
+ fillHeight: string | boolean;
2194
+ minHeight: string | number;
2195
+ maxHeight: string | number;
2196
+ appendIcon: string;
2197
+ appendOuterIcon: string;
2198
+ prefix: string;
2199
+ prependIcon: string;
2200
+ prependOuterIcon: string;
2201
+ suffix: string;
2202
+ valueWithPrefix: string | boolean;
2203
+ valueWithSuffix: string | boolean;
2204
+ disableMaska: boolean;
2205
+ allowedDates: string | string[] | ((date: string) => boolean);
2206
+ autocomplete: string | boolean;
2207
+ firstDayOfWeek: string | number;
2208
+ fullWidth: string | boolean;
2209
+ showWeek: string | boolean;
2210
+ showDatePicker: string | boolean;
2211
+ helperOptions: string | unknown[];
2212
+ helperValue: string;
2213
+ max: string;
2214
+ min: string;
2215
+ viewMode: string;
2216
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2217
+ export default _default;