@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,1320 @@
1
+ /**
2
+ * Header component
3
+ */
4
+ export declare const ZdHeaderProps: {
5
+ absolute: {
6
+ type: (StringConstructor | BooleanConstructor)[];
7
+ default: boolean;
8
+ };
9
+ app: {
10
+ type: (StringConstructor | BooleanConstructor)[];
11
+ default: boolean;
12
+ };
13
+ centerSlot: {
14
+ type: ArrayConstructor;
15
+ default: () => never[];
16
+ };
17
+ color: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ dense: {
22
+ type: (StringConstructor | BooleanConstructor)[];
23
+ default: boolean;
24
+ };
25
+ elevation: {
26
+ type: (StringConstructor | NumberConstructor)[];
27
+ default: undefined;
28
+ };
29
+ fixed: {
30
+ type: (StringConstructor | BooleanConstructor)[];
31
+ default: boolean;
32
+ };
33
+ height: {
34
+ type: (StringConstructor | NumberConstructor)[];
35
+ default: string;
36
+ };
37
+ leftSlot: {
38
+ type: ArrayConstructor;
39
+ default: () => never[];
40
+ };
41
+ maxHeight: {
42
+ type: (StringConstructor | NumberConstructor)[];
43
+ };
44
+ maxWidth: {
45
+ type: (StringConstructor | NumberConstructor)[];
46
+ };
47
+ minHeight: {
48
+ type: (StringConstructor | NumberConstructor)[];
49
+ };
50
+ minWidth: {
51
+ type: (StringConstructor | NumberConstructor)[];
52
+ };
53
+ padless: {
54
+ type: (StringConstructor | BooleanConstructor)[];
55
+ default: boolean;
56
+ };
57
+ rightSlot: {
58
+ type: ArrayConstructor;
59
+ default: () => never[];
60
+ };
61
+ width: {
62
+ type: (StringConstructor | NumberConstructor)[];
63
+ };
64
+ image: {
65
+ type: StringConstructor;
66
+ default: undefined;
67
+ };
68
+ order: {
69
+ type: (StringConstructor | NumberConstructor)[];
70
+ default: number;
71
+ };
72
+ children: {
73
+ type: (StringConstructor | {
74
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
75
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
76
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
77
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
78
+ isArray(arg: any): arg is any[];
79
+ readonly prototype: any[];
80
+ from<T>(arrayLike: ArrayLike<T>): T[];
81
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
82
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
83
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
84
+ of<T_4>(...items: T_4[]): T_4[];
85
+ readonly [Symbol.species]: ArrayConstructor;
86
+ })[];
87
+ default(): never[];
88
+ };
89
+ component: {
90
+ type: StringConstructor;
91
+ };
92
+ allowDuplicate: {
93
+ type: (StringConstructor | BooleanConstructor)[];
94
+ default: boolean;
95
+ };
96
+ autofocus: {
97
+ type: (StringConstructor | BooleanConstructor)[];
98
+ default: boolean;
99
+ };
100
+ cssClass: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ cssStyle: {
105
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
106
+ default: string;
107
+ };
108
+ dark: {
109
+ type: (StringConstructor | BooleanConstructor)[];
110
+ default: boolean;
111
+ };
112
+ directives: {
113
+ type: ObjectConstructor;
114
+ default(): {};
115
+ };
116
+ events: {
117
+ type: ObjectConstructor;
118
+ default(): {};
119
+ };
120
+ instanceObject: {
121
+ type: ObjectConstructor;
122
+ };
123
+ isVisible: {
124
+ type: (StringConstructor | BooleanConstructor)[];
125
+ default: boolean;
126
+ };
127
+ keyMap: {
128
+ type: ObjectConstructor;
129
+ default(): {};
130
+ };
131
+ light: {
132
+ type: (StringConstructor | BooleanConstructor)[];
133
+ default: boolean;
134
+ };
135
+ name: {
136
+ type: StringConstructor;
137
+ required: true;
138
+ };
139
+ parent: {
140
+ type: ObjectConstructor;
141
+ };
142
+ tabStop: {
143
+ type: (StringConstructor | BooleanConstructor)[];
144
+ default: boolean;
145
+ };
146
+ theme: {
147
+ type: StringConstructor;
148
+ };
149
+ };
150
+ declare const headerComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
151
+ absolute: {
152
+ type: (StringConstructor | BooleanConstructor)[];
153
+ default: boolean;
154
+ };
155
+ app: {
156
+ type: (StringConstructor | BooleanConstructor)[];
157
+ default: boolean;
158
+ };
159
+ centerSlot: {
160
+ type: ArrayConstructor;
161
+ default: () => never[];
162
+ };
163
+ color: {
164
+ type: StringConstructor;
165
+ default: string;
166
+ };
167
+ dense: {
168
+ type: (StringConstructor | BooleanConstructor)[];
169
+ default: boolean;
170
+ };
171
+ elevation: {
172
+ type: (StringConstructor | NumberConstructor)[];
173
+ default: undefined;
174
+ };
175
+ fixed: {
176
+ type: (StringConstructor | BooleanConstructor)[];
177
+ default: boolean;
178
+ };
179
+ height: {
180
+ type: (StringConstructor | NumberConstructor)[];
181
+ default: string;
182
+ };
183
+ leftSlot: {
184
+ type: ArrayConstructor;
185
+ default: () => never[];
186
+ };
187
+ maxHeight: {
188
+ type: (StringConstructor | NumberConstructor)[];
189
+ };
190
+ maxWidth: {
191
+ type: (StringConstructor | NumberConstructor)[];
192
+ };
193
+ minHeight: {
194
+ type: (StringConstructor | NumberConstructor)[];
195
+ };
196
+ minWidth: {
197
+ type: (StringConstructor | NumberConstructor)[];
198
+ };
199
+ padless: {
200
+ type: (StringConstructor | BooleanConstructor)[];
201
+ default: boolean;
202
+ };
203
+ rightSlot: {
204
+ type: ArrayConstructor;
205
+ default: () => never[];
206
+ };
207
+ width: {
208
+ type: (StringConstructor | NumberConstructor)[];
209
+ };
210
+ image: {
211
+ type: StringConstructor;
212
+ default: undefined;
213
+ };
214
+ order: {
215
+ type: (StringConstructor | NumberConstructor)[];
216
+ default: number;
217
+ };
218
+ children: {
219
+ type: (StringConstructor | {
220
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
221
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
222
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
223
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
224
+ isArray(arg: any): arg is any[];
225
+ readonly prototype: any[];
226
+ from<T>(arrayLike: ArrayLike<T>): T[];
227
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
228
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
229
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
230
+ of<T_4>(...items: T_4[]): T_4[];
231
+ readonly [Symbol.species]: ArrayConstructor;
232
+ })[];
233
+ default(): never[];
234
+ };
235
+ component: {
236
+ type: StringConstructor;
237
+ };
238
+ allowDuplicate: {
239
+ type: (StringConstructor | BooleanConstructor)[];
240
+ default: boolean;
241
+ };
242
+ autofocus: {
243
+ type: (StringConstructor | BooleanConstructor)[];
244
+ default: boolean;
245
+ };
246
+ cssClass: {
247
+ type: StringConstructor;
248
+ default: string;
249
+ };
250
+ cssStyle: {
251
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
252
+ default: string;
253
+ };
254
+ dark: {
255
+ type: (StringConstructor | BooleanConstructor)[];
256
+ default: boolean;
257
+ };
258
+ directives: {
259
+ type: ObjectConstructor;
260
+ default(): {};
261
+ };
262
+ events: {
263
+ type: ObjectConstructor;
264
+ default(): {};
265
+ };
266
+ instanceObject: {
267
+ type: ObjectConstructor;
268
+ };
269
+ isVisible: {
270
+ type: (StringConstructor | BooleanConstructor)[];
271
+ default: boolean;
272
+ };
273
+ keyMap: {
274
+ type: ObjectConstructor;
275
+ default(): {};
276
+ };
277
+ light: {
278
+ type: (StringConstructor | BooleanConstructor)[];
279
+ default: boolean;
280
+ };
281
+ name: {
282
+ type: StringConstructor;
283
+ required: true;
284
+ };
285
+ parent: {
286
+ type: ObjectConstructor;
287
+ };
288
+ tabStop: {
289
+ type: (StringConstructor | BooleanConstructor)[];
290
+ default: boolean;
291
+ };
292
+ theme: {
293
+ type: StringConstructor;
294
+ };
295
+ }>, {
296
+ instance: {
297
+ absolute: boolean;
298
+ app: boolean;
299
+ centerSlot: {
300
+ [x: string]: any;
301
+ children?: any[] | undefined;
302
+ component: string;
303
+ allowDuplicate?: boolean | undefined;
304
+ autofocus?: boolean | undefined;
305
+ componentId?: number | undefined;
306
+ cssClass?: string | undefined;
307
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
308
+ events?: {
309
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
310
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
311
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
312
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
313
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
314
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
315
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
+ } | undefined;
319
+ directives?: {
320
+ [x: string]: {
321
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
322
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
323
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
324
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
325
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
326
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
327
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
328
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
329
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
330
+ } | undefined;
331
+ touch?: {
332
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
333
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
335
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
336
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
337
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
338
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
339
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
340
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
341
+ } | undefined;
342
+ } | undefined;
343
+ isVisible?: string | boolean | undefined;
344
+ dark?: boolean | undefined;
345
+ light?: boolean | undefined;
346
+ theme?: string | undefined;
347
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
348
+ name: string;
349
+ parent?: {
350
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
351
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
352
+ allowDuplicate: boolean;
353
+ autofocus: boolean;
354
+ children: {
355
+ [x: string]: any;
356
+ allowDuplicate?: boolean | undefined;
357
+ autofocus?: boolean | undefined;
358
+ children?: any[] | undefined;
359
+ componentId?: number | undefined;
360
+ cssClass?: string | undefined;
361
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
362
+ events?: {
363
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
364
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
370
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
371
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
372
+ } | undefined;
373
+ directives?: {
374
+ [x: string]: {
375
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
376
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
377
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
378
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
379
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
380
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
381
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
382
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
384
+ } | undefined;
385
+ touch?: {
386
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
387
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
388
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
389
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
390
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
391
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
392
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
393
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
394
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
395
+ } | undefined;
396
+ } | undefined;
397
+ isVisible?: string | boolean | undefined;
398
+ dark?: boolean | undefined;
399
+ light?: boolean | undefined;
400
+ theme?: string | undefined;
401
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
402
+ name: string;
403
+ parent?: any | undefined;
404
+ tabStop?: boolean | undefined;
405
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
406
+ fillHeight?: boolean | undefined;
407
+ }[];
408
+ componentId: number;
409
+ cssClass: string;
410
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
411
+ events: {
412
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
413
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
414
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
415
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
416
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
417
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
418
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
419
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
420
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
421
+ };
422
+ directives: {
423
+ [x: string]: {
424
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
425
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
426
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
427
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
428
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
429
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
430
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
431
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
432
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
433
+ } | undefined;
434
+ touch?: {
435
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
436
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
437
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
+ } | undefined;
445
+ };
446
+ isVisible: string | boolean;
447
+ dark: boolean;
448
+ light: boolean;
449
+ theme?: string | undefined;
450
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
451
+ name: string;
452
+ parent?: any | undefined;
453
+ tabStop: boolean;
454
+ userProperties: import("@zeedhi/core").IDictionary<any>;
455
+ fillHeight: boolean;
456
+ } | undefined;
457
+ tabStop?: boolean | undefined;
458
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
459
+ fillHeight?: boolean | undefined;
460
+ }[];
461
+ color: string;
462
+ dense: boolean;
463
+ elevation: string | number;
464
+ events: {
465
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent> | undefined)[] | undefined;
466
+ onAfterLoad?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
467
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
468
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
469
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
470
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
471
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
472
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
473
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
474
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFrameEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFrameEvent>> | undefined;
475
+ };
476
+ fixed: boolean;
477
+ height: string | number;
478
+ leftSlot: {
479
+ [x: string]: any;
480
+ children?: any[] | undefined;
481
+ component: string;
482
+ allowDuplicate?: boolean | undefined;
483
+ autofocus?: boolean | undefined;
484
+ componentId?: number | undefined;
485
+ cssClass?: string | undefined;
486
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
487
+ events?: {
488
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
489
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
494
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
495
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
496
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
497
+ } | undefined;
498
+ directives?: {
499
+ [x: string]: {
500
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
501
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
507
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
508
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
509
+ } | undefined;
510
+ touch?: {
511
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
512
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
517
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
518
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
519
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
520
+ } | undefined;
521
+ } | undefined;
522
+ isVisible?: string | boolean | undefined;
523
+ dark?: boolean | undefined;
524
+ light?: boolean | undefined;
525
+ theme?: string | undefined;
526
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
527
+ name: string;
528
+ parent?: {
529
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
530
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
531
+ allowDuplicate: boolean;
532
+ autofocus: boolean;
533
+ children: {
534
+ [x: string]: any;
535
+ allowDuplicate?: boolean | undefined;
536
+ autofocus?: boolean | undefined;
537
+ children?: any[] | undefined;
538
+ componentId?: number | undefined;
539
+ cssClass?: string | undefined;
540
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
541
+ events?: {
542
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
543
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
544
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
545
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
546
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
547
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
548
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
+ } | undefined;
552
+ directives?: {
553
+ [x: string]: {
554
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
555
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
557
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
558
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
559
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
560
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
+ } | undefined;
564
+ touch?: {
565
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
566
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
570
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
571
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
+ } | undefined;
575
+ } | undefined;
576
+ isVisible?: string | boolean | undefined;
577
+ dark?: boolean | undefined;
578
+ light?: boolean | undefined;
579
+ theme?: string | undefined;
580
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
581
+ name: string;
582
+ parent?: any | undefined;
583
+ tabStop?: boolean | undefined;
584
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
585
+ fillHeight?: boolean | undefined;
586
+ }[];
587
+ componentId: number;
588
+ cssClass: string;
589
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
590
+ events: {
591
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
592
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
593
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
594
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
595
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
596
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
597
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
599
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
+ };
601
+ directives: {
602
+ [x: string]: {
603
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
604
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
+ } | undefined;
613
+ touch?: {
614
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
615
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ } | undefined;
624
+ };
625
+ isVisible: string | boolean;
626
+ dark: boolean;
627
+ light: boolean;
628
+ theme?: string | undefined;
629
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
630
+ name: string;
631
+ parent?: any | undefined;
632
+ tabStop: boolean;
633
+ userProperties: import("@zeedhi/core").IDictionary<any>;
634
+ fillHeight: boolean;
635
+ } | undefined;
636
+ tabStop?: boolean | undefined;
637
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
638
+ fillHeight?: boolean | undefined;
639
+ }[];
640
+ maxHeight?: string | number | undefined;
641
+ maxWidth?: string | number | undefined;
642
+ minHeight?: string | number | undefined;
643
+ minWidth?: string | number | undefined;
644
+ padless?: boolean | undefined;
645
+ rightSlot: {
646
+ [x: string]: any;
647
+ children?: any[] | undefined;
648
+ component: string;
649
+ allowDuplicate?: boolean | undefined;
650
+ autofocus?: boolean | undefined;
651
+ componentId?: number | undefined;
652
+ cssClass?: string | undefined;
653
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
654
+ events?: {
655
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
656
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
+ } | undefined;
665
+ directives?: {
666
+ [x: string]: {
667
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
668
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ } | undefined;
677
+ touch?: {
678
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
679
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
+ } | undefined;
688
+ } | undefined;
689
+ isVisible?: string | boolean | undefined;
690
+ dark?: boolean | undefined;
691
+ light?: boolean | undefined;
692
+ theme?: string | undefined;
693
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
694
+ name: string;
695
+ parent?: {
696
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
697
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
698
+ allowDuplicate: boolean;
699
+ autofocus: boolean;
700
+ children: {
701
+ [x: string]: any;
702
+ allowDuplicate?: boolean | undefined;
703
+ autofocus?: boolean | undefined;
704
+ children?: any[] | undefined;
705
+ componentId?: number | undefined;
706
+ cssClass?: string | undefined;
707
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
708
+ events?: {
709
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
710
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ } | undefined;
719
+ directives?: {
720
+ [x: string]: {
721
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
722
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
+ } | undefined;
731
+ touch?: {
732
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
733
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
+ } | undefined;
742
+ } | undefined;
743
+ isVisible?: string | boolean | undefined;
744
+ dark?: boolean | undefined;
745
+ light?: boolean | undefined;
746
+ theme?: string | undefined;
747
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
748
+ name: string;
749
+ parent?: any | undefined;
750
+ tabStop?: boolean | undefined;
751
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
752
+ fillHeight?: boolean | undefined;
753
+ }[];
754
+ componentId: number;
755
+ cssClass: string;
756
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
757
+ events: {
758
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
759
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
762
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ };
768
+ directives: {
769
+ [x: string]: {
770
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
771
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
+ } | undefined;
780
+ touch?: {
781
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
782
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
784
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
785
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
786
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
+ } | undefined;
791
+ };
792
+ isVisible: string | boolean;
793
+ dark: boolean;
794
+ light: boolean;
795
+ theme?: string | undefined;
796
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
797
+ name: string;
798
+ parent?: any | undefined;
799
+ tabStop: boolean;
800
+ userProperties: import("@zeedhi/core").IDictionary<any>;
801
+ fillHeight: boolean;
802
+ } | undefined;
803
+ tabStop?: boolean | undefined;
804
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
805
+ fillHeight?: boolean | undefined;
806
+ }[];
807
+ width?: string | number | undefined;
808
+ image?: string | undefined;
809
+ order?: string | number | undefined;
810
+ readonly namedSlotsIsVisible: number;
811
+ children: {
812
+ [x: string]: any;
813
+ children?: any[] | undefined;
814
+ component: string;
815
+ allowDuplicate?: boolean | undefined;
816
+ autofocus?: boolean | undefined;
817
+ componentId?: number | undefined;
818
+ cssClass?: string | undefined;
819
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
820
+ events?: {
821
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
822
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
827
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
+ } | undefined;
831
+ directives?: {
832
+ [x: string]: {
833
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
834
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
835
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
836
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
837
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
838
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
839
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
840
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
841
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
842
+ } | undefined;
843
+ touch?: {
844
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
845
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
846
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
847
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
848
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
849
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
850
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
851
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
852
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
853
+ } | undefined;
854
+ } | undefined;
855
+ isVisible?: string | boolean | undefined;
856
+ dark?: boolean | undefined;
857
+ light?: boolean | undefined;
858
+ theme?: string | undefined;
859
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
860
+ name: string;
861
+ parent?: {
862
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
863
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
864
+ allowDuplicate: boolean;
865
+ autofocus: boolean;
866
+ children: {
867
+ [x: string]: any;
868
+ allowDuplicate?: boolean | undefined;
869
+ autofocus?: boolean | undefined;
870
+ children?: any[] | undefined;
871
+ componentId?: number | undefined;
872
+ cssClass?: string | undefined;
873
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
874
+ events?: {
875
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
876
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
884
+ } | undefined;
885
+ directives?: {
886
+ [x: string]: {
887
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
888
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
889
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
896
+ } | undefined;
897
+ touch?: {
898
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
899
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
907
+ } | undefined;
908
+ } | undefined;
909
+ isVisible?: string | boolean | undefined;
910
+ dark?: boolean | undefined;
911
+ light?: boolean | undefined;
912
+ theme?: string | undefined;
913
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
914
+ name: string;
915
+ parent?: any | undefined;
916
+ tabStop?: boolean | undefined;
917
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
918
+ fillHeight?: boolean | undefined;
919
+ }[];
920
+ componentId: number;
921
+ cssClass: string;
922
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
923
+ events: {
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
+ };
934
+ directives: {
935
+ [x: string]: {
936
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
937
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
938
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
939
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
940
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
941
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
942
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
943
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
+ } | undefined;
946
+ touch?: {
947
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
948
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
950
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
952
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ } | undefined;
957
+ };
958
+ isVisible: string | boolean;
959
+ dark: boolean;
960
+ light: boolean;
961
+ theme?: string | undefined;
962
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
963
+ name: string;
964
+ parent?: any | undefined;
965
+ tabStop: boolean;
966
+ userProperties: import("@zeedhi/core").IDictionary<any>;
967
+ fillHeight: boolean;
968
+ } | undefined;
969
+ tabStop?: boolean | undefined;
970
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
971
+ fillHeight?: boolean | undefined;
972
+ }[];
973
+ component: string;
974
+ allowDuplicate: boolean;
975
+ autofocus: boolean;
976
+ childrenInstances: any[];
977
+ cssClass: string;
978
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
979
+ directives: {
980
+ [x: string]: {
981
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
982
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
989
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
990
+ } | undefined;
991
+ touch?: {
992
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
993
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
994
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
995
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
997
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
998
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
999
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1000
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1001
+ } | undefined;
1002
+ };
1003
+ isVisible: boolean;
1004
+ name: string;
1005
+ dark: boolean;
1006
+ light: boolean;
1007
+ theme?: string | undefined;
1008
+ fillHeight: boolean;
1009
+ parent?: {
1010
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1011
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1012
+ allowDuplicate: boolean;
1013
+ autofocus: boolean;
1014
+ children: {
1015
+ [x: string]: any;
1016
+ allowDuplicate?: boolean | undefined;
1017
+ autofocus?: boolean | undefined;
1018
+ children?: any[] | undefined;
1019
+ componentId?: number | undefined;
1020
+ cssClass?: string | undefined;
1021
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1022
+ events?: {
1023
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1024
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1025
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1026
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1032
+ } | undefined;
1033
+ directives?: {
1034
+ [x: string]: {
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
+ touch?: {
1046
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1047
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1055
+ } | undefined;
1056
+ } | undefined;
1057
+ isVisible?: string | boolean | undefined;
1058
+ dark?: boolean | undefined;
1059
+ light?: boolean | undefined;
1060
+ theme?: string | undefined;
1061
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1062
+ name: string;
1063
+ parent?: any | undefined;
1064
+ tabStop?: boolean | undefined;
1065
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1066
+ fillHeight?: boolean | undefined;
1067
+ }[];
1068
+ componentId: number;
1069
+ cssClass: string;
1070
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1071
+ events: {
1072
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1073
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1074
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1075
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1076
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1077
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
+ };
1082
+ directives: {
1083
+ [x: string]: {
1084
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1085
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1086
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1088
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
+ } | undefined;
1094
+ touch?: {
1095
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1096
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1097
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1098
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1099
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1100
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
+ } | undefined;
1105
+ };
1106
+ isVisible: string | boolean;
1107
+ dark: boolean;
1108
+ light: boolean;
1109
+ theme?: string | undefined;
1110
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1111
+ name: string;
1112
+ parent?: any | undefined;
1113
+ tabStop: boolean;
1114
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1115
+ fillHeight: boolean;
1116
+ } | undefined;
1117
+ componentId: number;
1118
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1119
+ isFocused: boolean;
1120
+ tabStop: boolean;
1121
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1122
+ setViewFocus: (viewFocus: () => void) => void;
1123
+ setFocus: () => void;
1124
+ callEvent: (eventName: string, args: any) => boolean;
1125
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1126
+ removeChild: (name: string) => void;
1127
+ getChildInstance: <T_1>(name: string) => T_1;
1128
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1129
+ onCreated: () => void;
1130
+ onBeforeMount: () => void;
1131
+ onMounted: (element: any) => void;
1132
+ onBeforeDestroy: () => void;
1133
+ onDestroyed: () => void;
1134
+ click: (event?: Event | undefined, element?: any) => void;
1135
+ focus: (event: Event, element: any) => void;
1136
+ blur: (event: Event, element: any) => void;
1137
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1138
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1139
+ mouseout: (event?: Event | undefined, element?: any) => void;
1140
+ mouseover: (event?: Event | undefined, element?: any) => void;
1141
+ };
1142
+ 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>>;
1143
+ click: (event: Event) => void;
1144
+ mouseenter: (event: Event) => void;
1145
+ mouseleave: (event: Event) => void;
1146
+ getSlotsMinHeight: (height: number) => number;
1147
+ centerSlot: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
1148
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1149
+ absolute: {
1150
+ type: (StringConstructor | BooleanConstructor)[];
1151
+ default: boolean;
1152
+ };
1153
+ app: {
1154
+ type: (StringConstructor | BooleanConstructor)[];
1155
+ default: boolean;
1156
+ };
1157
+ centerSlot: {
1158
+ type: ArrayConstructor;
1159
+ default: () => never[];
1160
+ };
1161
+ color: {
1162
+ type: StringConstructor;
1163
+ default: string;
1164
+ };
1165
+ dense: {
1166
+ type: (StringConstructor | BooleanConstructor)[];
1167
+ default: boolean;
1168
+ };
1169
+ elevation: {
1170
+ type: (StringConstructor | NumberConstructor)[];
1171
+ default: undefined;
1172
+ };
1173
+ fixed: {
1174
+ type: (StringConstructor | BooleanConstructor)[];
1175
+ default: boolean;
1176
+ };
1177
+ height: {
1178
+ type: (StringConstructor | NumberConstructor)[];
1179
+ default: string;
1180
+ };
1181
+ leftSlot: {
1182
+ type: ArrayConstructor;
1183
+ default: () => never[];
1184
+ };
1185
+ maxHeight: {
1186
+ type: (StringConstructor | NumberConstructor)[];
1187
+ };
1188
+ maxWidth: {
1189
+ type: (StringConstructor | NumberConstructor)[];
1190
+ };
1191
+ minHeight: {
1192
+ type: (StringConstructor | NumberConstructor)[];
1193
+ };
1194
+ minWidth: {
1195
+ type: (StringConstructor | NumberConstructor)[];
1196
+ };
1197
+ padless: {
1198
+ type: (StringConstructor | BooleanConstructor)[];
1199
+ default: boolean;
1200
+ };
1201
+ rightSlot: {
1202
+ type: ArrayConstructor;
1203
+ default: () => never[];
1204
+ };
1205
+ width: {
1206
+ type: (StringConstructor | NumberConstructor)[];
1207
+ };
1208
+ image: {
1209
+ type: StringConstructor;
1210
+ default: undefined;
1211
+ };
1212
+ order: {
1213
+ type: (StringConstructor | NumberConstructor)[];
1214
+ default: number;
1215
+ };
1216
+ children: {
1217
+ type: (StringConstructor | {
1218
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1219
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1220
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1221
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1222
+ isArray(arg: any): arg is any[];
1223
+ readonly prototype: any[];
1224
+ from<T>(arrayLike: ArrayLike<T>): T[];
1225
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1226
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1227
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1228
+ of<T_4>(...items: T_4[]): T_4[];
1229
+ readonly [Symbol.species]: ArrayConstructor;
1230
+ })[];
1231
+ default(): never[];
1232
+ };
1233
+ component: {
1234
+ type: StringConstructor;
1235
+ };
1236
+ allowDuplicate: {
1237
+ type: (StringConstructor | BooleanConstructor)[];
1238
+ default: boolean;
1239
+ };
1240
+ autofocus: {
1241
+ type: (StringConstructor | BooleanConstructor)[];
1242
+ default: boolean;
1243
+ };
1244
+ cssClass: {
1245
+ type: StringConstructor;
1246
+ default: string;
1247
+ };
1248
+ cssStyle: {
1249
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1250
+ default: string;
1251
+ };
1252
+ dark: {
1253
+ type: (StringConstructor | BooleanConstructor)[];
1254
+ default: boolean;
1255
+ };
1256
+ directives: {
1257
+ type: ObjectConstructor;
1258
+ default(): {};
1259
+ };
1260
+ events: {
1261
+ type: ObjectConstructor;
1262
+ default(): {};
1263
+ };
1264
+ instanceObject: {
1265
+ type: ObjectConstructor;
1266
+ };
1267
+ isVisible: {
1268
+ type: (StringConstructor | BooleanConstructor)[];
1269
+ default: boolean;
1270
+ };
1271
+ keyMap: {
1272
+ type: ObjectConstructor;
1273
+ default(): {};
1274
+ };
1275
+ light: {
1276
+ type: (StringConstructor | BooleanConstructor)[];
1277
+ default: boolean;
1278
+ };
1279
+ name: {
1280
+ type: StringConstructor;
1281
+ required: true;
1282
+ };
1283
+ parent: {
1284
+ type: ObjectConstructor;
1285
+ };
1286
+ tabStop: {
1287
+ type: (StringConstructor | BooleanConstructor)[];
1288
+ default: boolean;
1289
+ };
1290
+ theme: {
1291
+ type: StringConstructor;
1292
+ };
1293
+ }>> & Readonly<{}>, {
1294
+ allowDuplicate: string | boolean;
1295
+ autofocus: string | boolean;
1296
+ children: string | import("@zeedhi/common").IComponentRender[];
1297
+ cssClass: string;
1298
+ cssStyle: import("vue").StyleValue;
1299
+ dark: string | boolean;
1300
+ directives: Record<string, any>;
1301
+ events: Record<string, any>;
1302
+ isVisible: string | boolean;
1303
+ keyMap: Record<string, any>;
1304
+ light: string | boolean;
1305
+ tabStop: string | boolean;
1306
+ absolute: string | boolean;
1307
+ app: string | boolean;
1308
+ centerSlot: unknown[];
1309
+ color: string;
1310
+ dense: string | boolean;
1311
+ elevation: string | number;
1312
+ fixed: string | boolean;
1313
+ height: string | number;
1314
+ leftSlot: unknown[];
1315
+ padless: string | boolean;
1316
+ rightSlot: unknown[];
1317
+ image: string;
1318
+ order: string | number;
1319
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1320
+ export default headerComponent;