@zeedhi/vuetify 3.0.6 → 3.0.8

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 (350) hide show
  1. package/.package.json +11 -9
  2. package/dist/components/index.js +275 -0
  3. package/dist/components/tek-grid/TekGrid.js +287 -0
  4. package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +201 -0
  5. package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +134 -0
  6. package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +79 -0
  7. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +416 -0
  8. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +501 -0
  9. package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +36 -0
  10. package/dist/components/tek-grid/indentation/TekGridIndentation.js +20 -0
  11. package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +101 -0
  12. package/dist/components/tek-grid/row/TekGridFooterRow.js +57 -0
  13. package/dist/components/tek-grid/row/TekGridGroupRow.js +58 -0
  14. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +56 -0
  15. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +33 -0
  16. package/dist/components/zd-alert/ZdAlert.js +112 -0
  17. package/dist/components/zd-badge/ZdBadge.js +28 -0
  18. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +55 -0
  19. package/dist/components/zd-button/ZdButton.js +230 -0
  20. package/dist/components/zd-button-group/ZdButtonGroup.js +110 -0
  21. package/dist/components/zd-card/ZdCard.js +132 -0
  22. package/dist/components/zd-carousel/ZdCarousel.js +242 -0
  23. package/dist/components/zd-checkbox/ZdCheckbox.js +35 -0
  24. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +62 -0
  25. package/dist/components/zd-chip/ZdChip.js +94 -0
  26. package/dist/components/zd-code-viewer/ZdCodeViewer.js +55 -0
  27. package/dist/components/zd-code-viewer/prism.js +14 -0
  28. package/dist/components/zd-col/ZdCol.js +45 -0
  29. package/dist/components/zd-collapse-card/ZdCollapseCard.js +85 -0
  30. package/dist/components/zd-component/ZdComponent.js +259 -0
  31. package/dist/components/zd-component/ZdComponentRender.js +14 -0
  32. package/dist/components/zd-container/ZdContainer.js +42 -0
  33. package/dist/components/zd-currency/ZdCurrency.js +24 -0
  34. package/dist/components/zd-date-input/ZdDateInput.js +247 -0
  35. package/dist/components/zd-date-range/ZdDateRange.js +251 -0
  36. package/dist/components/zd-dialog/ZdDialog.js +34 -0
  37. package/dist/components/zd-divider/ZdDivider.js +28 -0
  38. package/dist/components/zd-dropdown/ZdDropdown.js +93 -0
  39. package/dist/components/zd-footer/ZdFooter.js +77 -0
  40. package/dist/components/zd-form/ZdForm.js +85 -0
  41. package/dist/components/zd-frame/ZdFrame.js +76 -0
  42. package/dist/components/zd-frame-page/ZdFramePage.js +21 -0
  43. package/dist/components/zd-grid/ZdGrid.js +284 -0
  44. package/dist/components/zd-grid/cell/ZdGridAction.js +12 -0
  45. package/dist/components/zd-grid/cell/ZdGridCell.js +59 -0
  46. package/dist/components/zd-grid/cell/ZdGridCellContent.js +59 -0
  47. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +38 -0
  48. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +70 -0
  49. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +31 -0
  50. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +102 -0
  51. package/dist/components/zd-grid/column-header/ZdGridSort.js +32 -0
  52. package/dist/components/zd-grid/composables/grid-instance.js +12 -0
  53. package/dist/components/zd-grid/footer/ZdGridFooter.js +16 -0
  54. package/dist/components/zd-grid/helper/ZdGridHelper.js +12 -0
  55. package/dist/components/zd-grid/row/TableRow.js +25 -0
  56. package/dist/components/zd-grid/row/ZdGridRow.js +70 -0
  57. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +15 -0
  58. package/dist/components/zd-grid-editable/ZdGridEditable.js +174 -0
  59. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +135 -0
  60. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +99 -0
  61. package/dist/components/zd-header/ZdHeader.js +111 -0
  62. package/dist/components/zd-icon/ZdIcon.js +63 -0
  63. package/dist/components/zd-image/ZdImage.js +48 -0
  64. package/dist/components/zd-increment/ZdIncrement.js +38 -0
  65. package/dist/components/zd-input/ZdInput.js +164 -0
  66. package/dist/components/zd-iterable/ZdIterable.js +38 -0
  67. package/dist/components/zd-iterable/ZdIterableNoData.js +20 -0
  68. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +50 -0
  69. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +21 -0
  70. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +55 -0
  71. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +36 -0
  72. package/dist/components/zd-iterable/zd-search/ZdSearch.js +42 -0
  73. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +108 -0
  74. package/dist/components/zd-layout/ZdLayout.js +41 -0
  75. package/dist/components/zd-list/ZdList.js +84 -0
  76. package/dist/components/zd-list/ZdListGroup.js +38 -0
  77. package/dist/components/zd-list/ZdListItem.js +66 -0
  78. package/dist/components/zd-loading/ZdLoading.js +61 -0
  79. package/dist/components/zd-login/ZdLogin.js +68 -0
  80. package/dist/components/zd-login/ZdLoginButton.js +28 -0
  81. package/dist/components/zd-main/ZdMain.js +33 -0
  82. package/dist/components/zd-master-detail/ZdMasterDetail.js +48 -0
  83. package/dist/components/zd-menu/ZdMenu.js +302 -0
  84. package/dist/components/zd-menu/ZdMenuButton.js +42 -0
  85. package/dist/components/zd-menu/ZdMenuGroup.js +66 -0
  86. package/dist/components/zd-menu/ZdMenuLink.js +63 -0
  87. package/dist/components/zd-menu/ZdMenuSeparator.js +26 -0
  88. package/dist/components/zd-modal/ZdModal.js +123 -0
  89. package/dist/components/zd-modal/ZdModalCloseButton.js +36 -0
  90. package/dist/components/zd-month/ZdMonth.js +31 -0
  91. package/dist/components/zd-number-input/ZdNumberInput.js +84 -0
  92. package/dist/components/zd-password/ZdPassword.js +23 -0
  93. package/dist/components/zd-progress/ZdProgress.js +52 -0
  94. package/dist/components/zd-radio/ZdRadio.js +56 -0
  95. package/dist/components/zd-row/ZdRow.js +43 -0
  96. package/dist/components/zd-select/ZdSelect.js +191 -0
  97. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +326 -0
  98. package/dist/components/zd-svg-map/ZdSvgMap.js +211 -0
  99. package/dist/components/zd-switch/ZdSwitch.js +39 -0
  100. package/dist/components/zd-table/ZdTable.js +42 -0
  101. package/dist/components/zd-tabs/ZdTab.js +92 -0
  102. package/dist/components/zd-tabs/ZdTabItem.js +17 -0
  103. package/dist/components/zd-tabs/ZdTabs.js +84 -0
  104. package/dist/components/zd-tag/ZdTag.js +34 -0
  105. package/dist/components/zd-text/ZdText.js +35 -0
  106. package/dist/components/zd-text-input/ZdTextInput.js +174 -0
  107. package/dist/components/zd-textarea/ZdTextarea.js +76 -0
  108. package/dist/components/zd-time/ZdTime.js +159 -0
  109. package/dist/components/zd-toggleable/ZdToggleable.js +13 -0
  110. package/dist/components/zd-tooltip/ZdTooltip.js +92 -0
  111. package/dist/components/zd-tree/ZdTree.js +315 -0
  112. package/dist/components/zd-tree/ZdTreeAfterTitle.js +17 -0
  113. package/dist/components/zd-tree/ZdTreeCheckbox.js +97 -0
  114. package/dist/components/zd-tree-grid/ZdTreeGrid.js +101 -0
  115. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +81 -0
  116. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +85 -0
  117. package/dist/composables/cellSelection.js +37 -0
  118. package/dist/composables/columnDrag.js +82 -0
  119. package/dist/composables/columnResize.js +115 -0
  120. package/dist/composables/density.js +13 -0
  121. package/dist/composables/doubleClick.js +32 -0
  122. package/dist/composables/fixedColumns.js +106 -0
  123. package/dist/composables/gridColorVars.js +30 -0
  124. package/dist/composables/gridColumns.js +87 -0
  125. package/dist/composables/gridSelection.js +91 -0
  126. package/dist/composables/gridSorting.js +19 -0
  127. package/dist/composables/hasSlot.js +25 -0
  128. package/dist/composables/index.js +16 -0
  129. package/dist/composables/maska.js +36 -0
  130. package/dist/composables/tableNavigation.js +126 -0
  131. package/dist/composables/useIsMobile.js +8 -0
  132. package/dist/composables/useTableLayout.js +212 -0
  133. package/dist/composables/virtualScroll.js +92 -0
  134. package/dist/composables/watchUrl.js +14 -0
  135. package/dist/errors/index.js +3 -0
  136. package/dist/errors/not-provided.js +11 -0
  137. package/dist/errors/row-not-found.js +9 -0
  138. package/dist/errors/zeedhi-error.js +8 -0
  139. package/dist/index.js +49 -0
  140. package/dist/propsMixins/heightProps.js +17 -0
  141. package/dist/propsMixins/index.js +3 -0
  142. package/dist/propsMixins/interfaces.js +1 -0
  143. package/dist/propsMixins/widthProps.js +13 -0
  144. package/dist/utils/buildProps.js +3 -0
  145. package/dist/utils/fillHeight.js +18 -0
  146. package/dist/utils/icons/icons.js +28 -0
  147. package/dist/utils/index.js +6 -0
  148. package/dist/utils/isArrayOperation.js +4 -0
  149. package/dist/utils/logger/logger.js +7 -0
  150. package/dist/utils/mergeDictionaries.js +22 -0
  151. package/dist/utils/plugins/formatSizePlugin.js +6 -0
  152. package/dist/utils/plugins/getIconPlugin.js +11 -0
  153. package/dist/utils/plugins/index.js +4 -0
  154. package/dist/utils/plugins/styleObjectPlugin.js +13 -0
  155. package/dist/zd-vuetify.css +22062 -22295
  156. package/dist/zd-vuetify.js +9696 -13977
  157. package/package.json +8 -6
  158. package/src/components/index.ts +0 -27
  159. package/src/components/zd-date-input/ZdDateInput.ts +11 -9
  160. package/src/components/zd-date-input/ZdDateInput.vue +42 -46
  161. package/src/components/zd-date-range/ZdDateRange.ts +24 -23
  162. package/src/components/zd-date-range/ZdDateRange.vue +42 -54
  163. package/src/components/zd-month/ZdMonth.ts +0 -17
  164. package/src/components/zd-month/ZdMonth.vue +0 -1
  165. package/src/components/zd-text-input/ZdTextInput.ts +4 -0
  166. package/src/components/zd-text-input/ZdTextInput.vue +1 -0
  167. package/src/components/zd-time/ZdTime.ts +11 -50
  168. package/src/components/zd-time/ZdTime.vue +41 -29
  169. package/src/composables/index.ts +1 -1
  170. package/src/composables/useIsMobile.ts +9 -0
  171. package/src/errors/index.ts +1 -0
  172. package/src/index.ts +1 -0
  173. package/src/utils/index.ts +0 -1
  174. package/types/components/index.d.ts +80 -88
  175. package/types/components/tek-grid/TekGrid.d.ts +7258 -7258
  176. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -129
  177. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -225
  178. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -2432
  179. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -65
  180. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -9
  181. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -2920
  182. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -32
  183. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -1892
  184. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -90
  185. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -87
  186. package/types/components/tooltip-overflow/ZdTooltipOverflow.d.ts +50 -50
  187. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.d.ts +25 -25
  188. package/types/components/zd-alert/ZdAlert.d.ts +884 -884
  189. package/types/components/zd-badge/ZdBadge.d.ts +624 -624
  190. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +697 -697
  191. package/types/components/zd-button/ZdButton.d.ts +1158 -1158
  192. package/types/components/zd-button-group/ZdButtonGroup.d.ts +785 -785
  193. package/types/components/zd-card/ZdCard.d.ts +1028 -1028
  194. package/types/components/zd-carousel/ZdCarousel.d.ts +2007 -2007
  195. package/types/components/zd-checkbox/ZdCheckbox.d.ts +655 -642
  196. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +2040 -2010
  197. package/types/components/zd-chip/ZdChip.d.ts +1256 -1256
  198. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +791 -791
  199. package/types/components/zd-code-viewer/prism.d.ts +14 -14
  200. package/types/components/zd-col/ZdCol.d.ts +741 -741
  201. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +1583 -1583
  202. package/types/components/zd-component/ZdComponent.d.ts +104 -104
  203. package/types/components/zd-component/ZdComponentRender.d.ts +80 -80
  204. package/types/components/zd-container/ZdContainer.d.ts +722 -722
  205. package/types/components/zd-currency/ZdCurrency.d.ts +2068 -2024
  206. package/types/components/zd-date-input/ZdDateInput.d.ts +986 -960
  207. package/types/components/zd-date-range/ZdDateRange.d.ts +2305 -0
  208. package/types/components/zd-dialog/ZdDialog.d.ts +262 -262
  209. package/types/components/zd-divider/ZdDivider.d.ts +623 -623
  210. package/types/components/zd-dropdown/ZdDropdown.d.ts +836 -836
  211. package/types/components/zd-footer/ZdFooter.d.ts +1262 -1262
  212. package/types/components/zd-form/ZdForm.d.ts +118 -118
  213. package/types/components/zd-frame/ZdFrame.d.ts +138 -138
  214. package/types/components/zd-frame-page/ZdFramePage.d.ts +805 -805
  215. package/types/components/zd-grid/ZdGrid.d.ts +7304 -7304
  216. package/types/components/zd-grid/cell/ZdGridAction.d.ts +14 -14
  217. package/types/components/zd-grid/cell/ZdGridCell.d.ts +68 -68
  218. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +58 -58
  219. package/types/components/zd-grid/cell/ZdGridCheckbox.d.ts +53 -53
  220. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +112 -112
  221. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.d.ts +46 -46
  222. package/types/components/zd-grid/column-header/ZdGridHeaderRow.d.ts +165 -165
  223. package/types/components/zd-grid/column-header/ZdGridSort.d.ts +47 -47
  224. package/types/components/zd-grid/composables/grid-instance.d.ts +2085 -2085
  225. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +2087 -2087
  226. package/types/components/zd-grid/helper/ZdGridHelper.d.ts +16 -16
  227. package/types/components/zd-grid/row/TableRow.d.ts +34 -34
  228. package/types/components/zd-grid/row/ZdGridRow.d.ts +105 -105
  229. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +2086 -2086
  230. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +8663 -8663
  231. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +637 -637
  232. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +126 -126
  233. package/types/components/zd-header/ZdHeader.d.ts +1320 -1320
  234. package/types/components/zd-icon/ZdIcon.d.ts +383 -383
  235. package/types/components/zd-image/ZdImage.d.ts +753 -753
  236. package/types/components/zd-increment/ZdIncrement.d.ts +2113 -2069
  237. package/types/components/zd-input/ZdInput.d.ts +204 -200
  238. package/types/components/zd-iterable/ZdIterable.d.ts +130 -130
  239. package/types/components/zd-iterable/ZdIterableNoData.d.ts +2089 -2089
  240. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +1645 -1645
  241. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +1081 -1081
  242. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +2807 -2763
  243. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +1653 -1627
  244. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +792 -766
  245. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +2484 -2484
  246. package/types/components/zd-layout/ZdLayout.d.ts +647 -647
  247. package/types/components/zd-list/ZdList.d.ts +1140 -1140
  248. package/types/components/zd-list/ZdListGroup.d.ts +1332 -1332
  249. package/types/components/zd-list/ZdListItem.d.ts +848 -848
  250. package/types/components/zd-loading/ZdLoading.d.ts +350 -350
  251. package/types/components/zd-login/ZdLogin.d.ts +1072 -1072
  252. package/types/components/zd-login/ZdLoginButton.d.ts +1913 -1910
  253. package/types/components/zd-main/ZdMain.d.ts +619 -619
  254. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +684 -684
  255. package/types/components/zd-menu/ZdMenu.d.ts +4484 -4484
  256. package/types/components/zd-menu/ZdMenuButton.d.ts +1142 -1142
  257. package/types/components/zd-menu/ZdMenuGroup.d.ts +6286 -6286
  258. package/types/components/zd-menu/ZdMenuLink.d.ts +10437 -10437
  259. package/types/components/zd-menu/ZdMenuSeparator.d.ts +600 -600
  260. package/types/components/zd-modal/ZdModal.d.ts +10 -10
  261. package/types/components/zd-modal/ZdModalCloseButton.d.ts +1137 -1137
  262. package/types/components/zd-month/ZdMonth.d.ts +2260 -2217
  263. package/types/components/zd-number-input/ZdNumberInput.d.ts +2065 -2021
  264. package/types/components/zd-password/ZdPassword.d.ts +2058 -2014
  265. package/types/components/zd-progress/ZdProgress.d.ts +859 -859
  266. package/types/components/zd-radio/ZdRadio.d.ts +695 -682
  267. package/types/components/zd-row/ZdRow.d.ts +734 -734
  268. package/types/components/zd-select/ZdSelect.d.ts +321 -313
  269. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +341 -333
  270. package/types/components/zd-svg-map/ZdSvgMap.d.ts +414 -414
  271. package/types/components/zd-switch/ZdSwitch.d.ts +1948 -1918
  272. package/types/components/zd-table/ZdTable.d.ts +1092 -1092
  273. package/types/components/zd-tabs/ZdTab.d.ts +674 -674
  274. package/types/components/zd-tabs/ZdTabItem.d.ts +268 -268
  275. package/types/components/zd-tabs/ZdTabs.d.ts +929 -929
  276. package/types/components/zd-tag/ZdTag.d.ts +613 -613
  277. package/types/components/zd-text/ZdText.d.ts +670 -670
  278. package/types/components/zd-text-input/ZdTextInput.d.ts +772 -746
  279. package/types/components/zd-textarea/ZdTextarea.d.ts +903 -877
  280. package/types/components/zd-time/ZdTime.d.ts +2271 -2224
  281. package/types/components/zd-toggleable/ZdToggleable.d.ts +203 -199
  282. package/types/components/zd-tooltip/ZdTooltip.d.ts +781 -781
  283. package/types/components/zd-tree/ZdTree.d.ts +1879 -1878
  284. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +28 -26
  285. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +74 -74
  286. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +4178 -4178
  287. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +92 -92
  288. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +124 -124
  289. package/types/composables/cellSelection.d.ts +281 -281
  290. package/types/composables/columnDrag.d.ts +9 -9
  291. package/types/composables/columnResize.d.ts +18 -18
  292. package/types/composables/density.d.ts +12 -12
  293. package/types/composables/doubleClick.d.ts +6 -6
  294. package/types/composables/fixedColumns.d.ts +14 -14
  295. package/types/composables/gridColorVars.d.ts +13 -13
  296. package/types/composables/gridColumns.d.ts +285 -285
  297. package/types/composables/gridSelection.d.ts +15 -15
  298. package/types/composables/gridSorting.d.ts +17 -17
  299. package/types/composables/hasSlot.d.ts +8 -8
  300. package/types/composables/index.d.ts +16 -16
  301. package/types/composables/maska.d.ts +16 -16
  302. package/types/composables/tableNavigation.d.ts +11 -11
  303. package/types/composables/useIsMobile.d.ts +3 -0
  304. package/types/composables/useTableLayout.d.ts +25 -25
  305. package/types/composables/virtualScroll.d.ts +26 -26
  306. package/types/composables/watchUrl.d.ts +8 -8
  307. package/types/errors/index.d.ts +3 -2
  308. package/types/errors/not-provided.d.ts +7 -7
  309. package/types/errors/row-not-found.d.ts +7 -7
  310. package/types/errors/zeedhi-error.d.ts +6 -6
  311. package/types/index.d.ts +22 -21
  312. package/types/propsMixins/heightProps.d.ts +17 -17
  313. package/types/propsMixins/index.d.ts +5 -5
  314. package/types/propsMixins/interfaces.d.ts +2 -2
  315. package/types/propsMixins/widthProps.d.ts +13 -13
  316. package/types/utils/buildProps.d.ts +2 -2
  317. package/types/utils/fillHeight.d.ts +1 -1
  318. package/types/utils/icons/icons.d.ts +5 -5
  319. package/types/utils/index.d.ts +6 -7
  320. package/types/utils/isArrayOperation.d.ts +2 -2
  321. package/types/utils/logger/logger.d.ts +3 -3
  322. package/types/utils/mergeDictionaries.d.ts +3 -3
  323. package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
  324. package/types/utils/plugins/getIconPlugin.d.ts +1 -1
  325. package/types/utils/plugins/index.d.ts +4 -4
  326. package/types/utils/plugins/styleObjectPlugin.d.ts +1 -1
  327. package/rollup.config.prod.js +0 -26
  328. package/rollup.scss.config.js +0 -13
  329. package/src/components/tek-grid/TekGrid.ts +0 -320
  330. package/src/components/tek-grid/TekGrid.vue +0 -235
  331. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +0 -243
  332. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +0 -93
  333. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +0 -147
  334. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +0 -78
  335. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +0 -97
  336. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +0 -273
  337. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +0 -469
  338. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +0 -512
  339. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +0 -46
  340. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +0 -28
  341. package/src/components/tek-grid/indentation/TekGridIndentation.ts +0 -21
  342. package/src/components/tek-grid/indentation/TekGridIndentation.vue +0 -33
  343. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +0 -117
  344. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +0 -172
  345. package/src/components/tek-grid/row/TekGridFooterRow.ts +0 -62
  346. package/src/components/tek-grid/row/TekGridFooterRow.vue +0 -64
  347. package/src/components/tek-grid/row/TekGridGroupRow.ts +0 -65
  348. package/src/components/tek-grid/row/TekGridGroupRow.vue +0 -65
  349. package/src/composables/useTableLayout.ts +0 -293
  350. package/src/utils/isArrayOperation.ts +0 -5
@@ -1,1583 +1,1583 @@
1
- export declare const ZdCollapseCardProps: {
2
- disableActionRotate: {
3
- type: (StringConstructor | BooleanConstructor)[];
4
- default: boolean;
5
- };
6
- expandButton: {
7
- type: (StringConstructor | ObjectConstructor)[];
8
- default: () => undefined;
9
- };
10
- expanded: {
11
- type: (StringConstructor | BooleanConstructor)[];
12
- default: boolean;
13
- };
14
- header: {
15
- type: (StringConstructor | ArrayConstructor)[];
16
- default: () => never[];
17
- };
18
- hideAction: {
19
- type: (StringConstructor | BooleanConstructor)[];
20
- default: boolean;
21
- };
22
- iconColor: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- iconName: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- lazyLoad: {
31
- type: (StringConstructor | BooleanConstructor)[];
32
- default: boolean;
33
- };
34
- readonly: {
35
- type: (StringConstructor | BooleanConstructor)[];
36
- default: boolean;
37
- };
38
- activeClass: {
39
- type: StringConstructor;
40
- default: string;
41
- };
42
- append: {
43
- type: (StringConstructor | BooleanConstructor)[];
44
- default: boolean;
45
- };
46
- color: {
47
- type: StringConstructor;
48
- default: string;
49
- };
50
- disabled: {
51
- type: (StringConstructor | BooleanConstructor)[];
52
- default: boolean;
53
- };
54
- elevation: {
55
- type: (StringConstructor | NumberConstructor)[];
56
- };
57
- flat: {
58
- type: (StringConstructor | BooleanConstructor)[];
59
- default: boolean;
60
- };
61
- hover: {
62
- type: (StringConstructor | BooleanConstructor)[];
63
- default: boolean;
64
- };
65
- href: {
66
- type: StringConstructor;
67
- default: string;
68
- };
69
- img: {
70
- type: StringConstructor;
71
- default: string;
72
- };
73
- link: {
74
- type: (StringConstructor | BooleanConstructor)[];
75
- default: null;
76
- };
77
- outlined: {
78
- type: (StringConstructor | BooleanConstructor)[];
79
- default: boolean;
80
- };
81
- raised: {
82
- type: (StringConstructor | BooleanConstructor)[];
83
- default: boolean;
84
- };
85
- ripple: {
86
- type: (StringConstructor | BooleanConstructor)[];
87
- default: boolean;
88
- };
89
- tile: {
90
- type: (StringConstructor | BooleanConstructor)[];
91
- default: boolean;
92
- };
93
- to: {
94
- type: StringConstructor;
95
- default: string;
96
- };
97
- border: {
98
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
99
- default: boolean;
100
- };
101
- density: {
102
- type: StringConstructor;
103
- default: string;
104
- };
105
- loading: {
106
- type: (StringConstructor | BooleanConstructor)[];
107
- default: boolean;
108
- };
109
- position: {
110
- type: StringConstructor;
111
- };
112
- replace: {
113
- type: (StringConstructor | BooleanConstructor)[];
114
- default: boolean;
115
- };
116
- round: {
117
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
118
- default: boolean;
119
- };
120
- subtitle: {
121
- type: StringConstructor;
122
- };
123
- tag: {
124
- type: StringConstructor;
125
- };
126
- text: {
127
- type: StringConstructor;
128
- };
129
- title: {
130
- type: StringConstructor;
131
- };
132
- variant: {
133
- type: StringConstructor;
134
- };
135
- width: {
136
- type: (StringConstructor | NumberConstructor)[];
137
- };
138
- minWidth: {
139
- type: (StringConstructor | NumberConstructor)[];
140
- default: string;
141
- };
142
- maxWidth: {
143
- type: (StringConstructor | NumberConstructor)[];
144
- default: string;
145
- };
146
- fillHeight: {
147
- type: (StringConstructor | BooleanConstructor)[];
148
- default: boolean;
149
- };
150
- height: {
151
- type: (StringConstructor | NumberConstructor)[];
152
- };
153
- minHeight: {
154
- type: (StringConstructor | NumberConstructor)[];
155
- default: string;
156
- };
157
- maxHeight: {
158
- type: (StringConstructor | NumberConstructor)[];
159
- default: string;
160
- };
161
- children: {
162
- type: (StringConstructor | {
163
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
164
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
165
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
166
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
167
- isArray(arg: any): arg is any[];
168
- readonly prototype: any[];
169
- from<T>(arrayLike: ArrayLike<T>): T[];
170
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
171
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
172
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
173
- of<T_4>(...items: T_4[]): T_4[];
174
- readonly [Symbol.species]: ArrayConstructor;
175
- })[];
176
- default(): never[];
177
- };
178
- component: {
179
- type: StringConstructor;
180
- };
181
- allowDuplicate: {
182
- type: (StringConstructor | BooleanConstructor)[];
183
- default: boolean;
184
- };
185
- autofocus: {
186
- type: (StringConstructor | BooleanConstructor)[];
187
- default: boolean;
188
- };
189
- cssClass: {
190
- type: StringConstructor;
191
- default: string;
192
- };
193
- cssStyle: {
194
- type: (StringConstructor | (() => import("vue").StyleValue))[];
195
- default: string;
196
- };
197
- dark: {
198
- type: (StringConstructor | BooleanConstructor)[];
199
- default: boolean;
200
- };
201
- directives: {
202
- type: ObjectConstructor;
203
- default(): {};
204
- };
205
- events: {
206
- type: ObjectConstructor;
207
- default(): {};
208
- };
209
- instanceObject: {
210
- type: ObjectConstructor;
211
- };
212
- isVisible: {
213
- type: (StringConstructor | BooleanConstructor)[];
214
- default: boolean;
215
- };
216
- keyMap: {
217
- type: ObjectConstructor;
218
- default(): {};
219
- };
220
- light: {
221
- type: (StringConstructor | BooleanConstructor)[];
222
- default: boolean;
223
- };
224
- name: {
225
- type: StringConstructor;
226
- required: true;
227
- };
228
- parent: {
229
- type: ObjectConstructor;
230
- };
231
- tabStop: {
232
- type: (StringConstructor | BooleanConstructor)[];
233
- default: boolean;
234
- };
235
- theme: {
236
- type: StringConstructor;
237
- };
238
- };
239
- declare const collapseCardComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
240
- disableActionRotate: {
241
- type: (StringConstructor | BooleanConstructor)[];
242
- default: boolean;
243
- };
244
- expandButton: {
245
- type: (StringConstructor | ObjectConstructor)[];
246
- default: () => undefined;
247
- };
248
- expanded: {
249
- type: (StringConstructor | BooleanConstructor)[];
250
- default: boolean;
251
- };
252
- header: {
253
- type: (StringConstructor | ArrayConstructor)[];
254
- default: () => never[];
255
- };
256
- hideAction: {
257
- type: (StringConstructor | BooleanConstructor)[];
258
- default: boolean;
259
- };
260
- iconColor: {
261
- type: StringConstructor;
262
- default: string;
263
- };
264
- iconName: {
265
- type: StringConstructor;
266
- default: string;
267
- };
268
- lazyLoad: {
269
- type: (StringConstructor | BooleanConstructor)[];
270
- default: boolean;
271
- };
272
- readonly: {
273
- type: (StringConstructor | BooleanConstructor)[];
274
- default: boolean;
275
- };
276
- activeClass: {
277
- type: StringConstructor;
278
- default: string;
279
- };
280
- append: {
281
- type: (StringConstructor | BooleanConstructor)[];
282
- default: boolean;
283
- };
284
- color: {
285
- type: StringConstructor;
286
- default: string;
287
- };
288
- disabled: {
289
- type: (StringConstructor | BooleanConstructor)[];
290
- default: boolean;
291
- };
292
- elevation: {
293
- type: (StringConstructor | NumberConstructor)[];
294
- };
295
- flat: {
296
- type: (StringConstructor | BooleanConstructor)[];
297
- default: boolean;
298
- };
299
- hover: {
300
- type: (StringConstructor | BooleanConstructor)[];
301
- default: boolean;
302
- };
303
- href: {
304
- type: StringConstructor;
305
- default: string;
306
- };
307
- img: {
308
- type: StringConstructor;
309
- default: string;
310
- };
311
- link: {
312
- type: (StringConstructor | BooleanConstructor)[];
313
- default: null;
314
- };
315
- outlined: {
316
- type: (StringConstructor | BooleanConstructor)[];
317
- default: boolean;
318
- };
319
- raised: {
320
- type: (StringConstructor | BooleanConstructor)[];
321
- default: boolean;
322
- };
323
- ripple: {
324
- type: (StringConstructor | BooleanConstructor)[];
325
- default: boolean;
326
- };
327
- tile: {
328
- type: (StringConstructor | BooleanConstructor)[];
329
- default: boolean;
330
- };
331
- to: {
332
- type: StringConstructor;
333
- default: string;
334
- };
335
- border: {
336
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
337
- default: boolean;
338
- };
339
- density: {
340
- type: StringConstructor;
341
- default: string;
342
- };
343
- loading: {
344
- type: (StringConstructor | BooleanConstructor)[];
345
- default: boolean;
346
- };
347
- position: {
348
- type: StringConstructor;
349
- };
350
- replace: {
351
- type: (StringConstructor | BooleanConstructor)[];
352
- default: boolean;
353
- };
354
- round: {
355
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
356
- default: boolean;
357
- };
358
- subtitle: {
359
- type: StringConstructor;
360
- };
361
- tag: {
362
- type: StringConstructor;
363
- };
364
- text: {
365
- type: StringConstructor;
366
- };
367
- title: {
368
- type: StringConstructor;
369
- };
370
- variant: {
371
- type: StringConstructor;
372
- };
373
- width: {
374
- type: (StringConstructor | NumberConstructor)[];
375
- };
376
- minWidth: {
377
- type: (StringConstructor | NumberConstructor)[];
378
- default: string;
379
- };
380
- maxWidth: {
381
- type: (StringConstructor | NumberConstructor)[];
382
- default: string;
383
- };
384
- fillHeight: {
385
- type: (StringConstructor | BooleanConstructor)[];
386
- default: boolean;
387
- };
388
- height: {
389
- type: (StringConstructor | NumberConstructor)[];
390
- };
391
- minHeight: {
392
- type: (StringConstructor | NumberConstructor)[];
393
- default: string;
394
- };
395
- maxHeight: {
396
- type: (StringConstructor | NumberConstructor)[];
397
- default: string;
398
- };
399
- children: {
400
- type: (StringConstructor | {
401
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
402
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
403
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
404
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
405
- isArray(arg: any): arg is any[];
406
- readonly prototype: any[];
407
- from<T>(arrayLike: ArrayLike<T>): T[];
408
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
409
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
410
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
411
- of<T_4>(...items: T_4[]): T_4[];
412
- readonly [Symbol.species]: ArrayConstructor;
413
- })[];
414
- default(): never[];
415
- };
416
- component: {
417
- type: StringConstructor;
418
- };
419
- allowDuplicate: {
420
- type: (StringConstructor | BooleanConstructor)[];
421
- default: boolean;
422
- };
423
- autofocus: {
424
- type: (StringConstructor | BooleanConstructor)[];
425
- default: boolean;
426
- };
427
- cssClass: {
428
- type: StringConstructor;
429
- default: string;
430
- };
431
- cssStyle: {
432
- type: (StringConstructor | (() => import("vue").StyleValue))[];
433
- default: string;
434
- };
435
- dark: {
436
- type: (StringConstructor | BooleanConstructor)[];
437
- default: boolean;
438
- };
439
- directives: {
440
- type: ObjectConstructor;
441
- default(): {};
442
- };
443
- events: {
444
- type: ObjectConstructor;
445
- default(): {};
446
- };
447
- instanceObject: {
448
- type: ObjectConstructor;
449
- };
450
- isVisible: {
451
- type: (StringConstructor | BooleanConstructor)[];
452
- default: boolean;
453
- };
454
- keyMap: {
455
- type: ObjectConstructor;
456
- default(): {};
457
- };
458
- light: {
459
- type: (StringConstructor | BooleanConstructor)[];
460
- default: boolean;
461
- };
462
- name: {
463
- type: StringConstructor;
464
- required: true;
465
- };
466
- parent: {
467
- type: ObjectConstructor;
468
- };
469
- tabStop: {
470
- type: (StringConstructor | BooleanConstructor)[];
471
- default: boolean;
472
- };
473
- theme: {
474
- type: StringConstructor;
475
- };
476
- }>, {
477
- instance: {
478
- disableActionRotate: boolean;
479
- expandButton: {
480
- [x: string]: any;
481
- absolute?: boolean | undefined;
482
- block?: boolean | undefined;
483
- bottom?: boolean | undefined;
484
- color?: string | undefined;
485
- disabled?: boolean | undefined;
486
- events?: {
487
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
488
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
489
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
490
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
491
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
492
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
493
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
494
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
495
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
496
- } | undefined;
497
- fab?: boolean | undefined;
498
- fixed?: boolean | undefined;
499
- flat?: boolean | undefined;
500
- href?: string | undefined;
501
- icon?: boolean | undefined;
502
- iconName?: string | undefined;
503
- label?: string | undefined;
504
- large?: boolean | undefined;
505
- left?: boolean | undefined;
506
- outline?: boolean | undefined;
507
- reverse?: boolean | undefined;
508
- right?: boolean | undefined;
509
- round?: string | number | boolean | undefined;
510
- small?: boolean | undefined;
511
- target?: string | undefined;
512
- tile?: boolean | undefined;
513
- to?: string | undefined;
514
- top?: boolean | undefined;
515
- type?: string | undefined;
516
- width?: string | number | undefined;
517
- active?: boolean | undefined;
518
- appendIcon?: string | undefined;
519
- border?: string | number | boolean | undefined;
520
- density?: "default" | "comfortable" | "compact" | undefined;
521
- elevation?: string | number | undefined;
522
- loading?: string | boolean | undefined;
523
- position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
524
- prependIcon?: string | undefined;
525
- replace?: boolean | undefined;
526
- ripple?: boolean | undefined;
527
- selectedClass?: string | undefined;
528
- size?: "default" | "large" | "small" | "x-small" | "x-large" | undefined;
529
- stacked?: boolean | undefined;
530
- tag?: string | undefined;
531
- variant?: "flat" | "outlined" | "text" | "elevated" | "tonal" | "plain" | undefined;
532
- children?: {
533
- [x: string]: any;
534
- children?: any[] | undefined;
535
- component: string;
536
- allowDuplicate?: boolean | undefined;
537
- autofocus?: boolean | 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?: {
583
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
584
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
585
- allowDuplicate: boolean;
586
- autofocus: boolean;
587
- children: {
588
- [x: string]: any;
589
- allowDuplicate?: boolean | undefined;
590
- autofocus?: boolean | undefined;
591
- children?: any[] | undefined;
592
- componentId?: number | undefined;
593
- cssClass?: string | undefined;
594
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
595
- events?: {
596
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
597
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
599
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
601
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
602
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
- } | undefined;
606
- directives?: {
607
- [x: string]: {
608
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
609
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- } | undefined;
618
- touch?: {
619
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
620
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- } | undefined;
629
- } | undefined;
630
- isVisible?: string | boolean | undefined;
631
- dark?: boolean | undefined;
632
- light?: boolean | undefined;
633
- theme?: string | undefined;
634
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
635
- name: string;
636
- parent?: any | undefined;
637
- tabStop?: boolean | undefined;
638
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
639
- fillHeight?: boolean | undefined;
640
- }[];
641
- componentId: number;
642
- cssClass: string;
643
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
644
- events: {
645
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
646
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
647
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
648
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
649
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
650
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
651
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
- };
655
- directives: {
656
- [x: string]: {
657
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
658
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- } | undefined;
667
- touch?: {
668
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
669
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- } | undefined;
678
- };
679
- isVisible: string | boolean;
680
- dark: boolean;
681
- light: boolean;
682
- theme?: string | undefined;
683
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
684
- name: string;
685
- parent?: any | undefined;
686
- tabStop: boolean;
687
- userProperties: import("@zeedhi/core").IDictionary<any>;
688
- fillHeight: boolean;
689
- } | undefined;
690
- tabStop?: boolean | undefined;
691
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
692
- fillHeight?: boolean | undefined;
693
- }[] | undefined;
694
- component: string;
695
- allowDuplicate?: boolean | undefined;
696
- autofocus?: boolean | undefined;
697
- componentId?: number | undefined;
698
- cssClass?: string | undefined;
699
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
700
- directives?: {
701
- [x: string]: {
702
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
703
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
704
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
708
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
- } | undefined;
712
- touch?: {
713
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
714
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- } | undefined;
723
- } | undefined;
724
- isVisible?: string | boolean | undefined;
725
- dark?: boolean | undefined;
726
- light?: boolean | undefined;
727
- theme?: string | undefined;
728
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
729
- name: string;
730
- parent?: {
731
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
732
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
733
- allowDuplicate: boolean;
734
- autofocus: boolean;
735
- children: {
736
- [x: string]: any;
737
- allowDuplicate?: boolean | undefined;
738
- autofocus?: boolean | undefined;
739
- children?: any[] | undefined;
740
- componentId?: number | undefined;
741
- cssClass?: string | undefined;
742
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
743
- events?: {
744
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
745
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
750
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
752
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
753
- } | undefined;
754
- directives?: {
755
- [x: string]: {
756
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
757
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
762
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
- } | undefined;
766
- touch?: {
767
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
768
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
- } | undefined;
777
- } | undefined;
778
- isVisible?: string | boolean | undefined;
779
- dark?: boolean | undefined;
780
- light?: boolean | undefined;
781
- theme?: string | undefined;
782
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
783
- name: string;
784
- parent?: any | undefined;
785
- tabStop?: boolean | undefined;
786
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
787
- fillHeight?: boolean | undefined;
788
- }[];
789
- componentId: number;
790
- cssClass: string;
791
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
792
- events: {
793
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
794
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
- };
803
- directives: {
804
- [x: string]: {
805
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
806
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
811
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
- } | undefined;
815
- touch?: {
816
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
817
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
- } | undefined;
826
- };
827
- isVisible: string | boolean;
828
- dark: boolean;
829
- light: boolean;
830
- theme?: string | undefined;
831
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
832
- name: string;
833
- parent?: any | undefined;
834
- tabStop: boolean;
835
- userProperties: import("@zeedhi/core").IDictionary<any>;
836
- fillHeight: boolean;
837
- } | undefined;
838
- tabStop?: boolean | undefined;
839
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
840
- fillHeight?: boolean | undefined;
841
- };
842
- expanded: boolean;
843
- header: {
844
- [x: string]: any;
845
- allowDuplicate?: boolean | undefined;
846
- autofocus?: boolean | undefined;
847
- children?: any[] | undefined;
848
- componentId?: number | undefined;
849
- cssClass?: string | undefined;
850
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
851
- events?: {
852
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
853
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
854
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
855
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
858
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
- } | undefined;
862
- directives?: {
863
- [x: string]: {
864
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
865
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
866
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
867
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
- } | undefined;
874
- touch?: {
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
- } | undefined;
886
- isVisible?: string | boolean | undefined;
887
- dark?: boolean | undefined;
888
- light?: boolean | undefined;
889
- theme?: string | undefined;
890
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
891
- name: string;
892
- parent?: any | undefined;
893
- tabStop?: boolean | undefined;
894
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
895
- fillHeight?: boolean | undefined;
896
- }[];
897
- hideAction: boolean;
898
- iconColor: string;
899
- iconName: string;
900
- lazyLoad: boolean;
901
- readonly: boolean;
902
- change: (event: Event, element: any) => void;
903
- activeClass: string;
904
- append: boolean;
905
- color: string;
906
- disabled: boolean;
907
- elevation?: string | number | undefined;
908
- events: {
909
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent> | undefined)[] | undefined;
910
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
911
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
912
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
913
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
914
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
915
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
916
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
917
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
918
- };
919
- flat: boolean;
920
- height?: string | number | undefined;
921
- hover: boolean;
922
- href?: string | undefined;
923
- img: string;
924
- link: boolean;
925
- maxHeight: string | number;
926
- maxWidth: string | number;
927
- minHeight: string | number;
928
- minWidth: string | number;
929
- outlined: boolean;
930
- raised: boolean;
931
- ripple: boolean;
932
- tile: boolean;
933
- to?: string | undefined;
934
- width?: string | number | undefined;
935
- border: string | number | boolean;
936
- density: "default" | "comfortable" | "compact";
937
- loading: string | boolean;
938
- position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
939
- replace: boolean;
940
- round: string | number | boolean;
941
- subtitle?: string | undefined;
942
- tag?: string | undefined;
943
- text?: string | undefined;
944
- title?: string | undefined;
945
- variant?: "flat" | "outlined" | "text" | "elevated" | "tonal" | "plain" | undefined;
946
- children: {
947
- [x: string]: any;
948
- children?: any[] | undefined;
949
- component: string;
950
- allowDuplicate?: boolean | undefined;
951
- autofocus?: boolean | undefined;
952
- componentId?: number | undefined;
953
- cssClass?: string | undefined;
954
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
955
- events?: {
956
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
957
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
961
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
- } | undefined;
966
- directives?: {
967
- [x: string]: {
968
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
969
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
972
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
- } | undefined;
978
- touch?: {
979
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
980
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
- } | undefined;
989
- } | undefined;
990
- isVisible?: string | boolean | undefined;
991
- dark?: boolean | undefined;
992
- light?: boolean | undefined;
993
- theme?: string | undefined;
994
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
995
- name: string;
996
- parent?: {
997
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
998
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
999
- allowDuplicate: boolean;
1000
- autofocus: boolean;
1001
- children: {
1002
- [x: string]: any;
1003
- allowDuplicate?: boolean | undefined;
1004
- autofocus?: boolean | undefined;
1005
- children?: any[] | undefined;
1006
- componentId?: number | undefined;
1007
- cssClass?: string | undefined;
1008
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1009
- events?: {
1010
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1011
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1012
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1013
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
- } | undefined;
1020
- directives?: {
1021
- [x: string]: {
1022
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1023
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1024
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1025
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1026
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
- } | undefined;
1032
- touch?: {
1033
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1034
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
- } | undefined;
1043
- } | undefined;
1044
- isVisible?: string | boolean | undefined;
1045
- dark?: boolean | undefined;
1046
- light?: boolean | undefined;
1047
- theme?: string | undefined;
1048
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1049
- name: string;
1050
- parent?: any | undefined;
1051
- tabStop?: boolean | undefined;
1052
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1053
- fillHeight?: boolean | undefined;
1054
- }[];
1055
- componentId: number;
1056
- cssClass: string;
1057
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1058
- events: {
1059
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1060
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1066
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1067
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1068
- };
1069
- directives: {
1070
- [x: string]: {
1071
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1072
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1073
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1074
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1075
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1076
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1077
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
- } | undefined;
1081
- touch?: {
1082
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1083
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1086
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1088
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
- } | undefined;
1092
- };
1093
- isVisible: string | boolean;
1094
- dark: boolean;
1095
- light: boolean;
1096
- theme?: string | undefined;
1097
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1098
- name: string;
1099
- parent?: any | undefined;
1100
- tabStop: boolean;
1101
- userProperties: import("@zeedhi/core").IDictionary<any>;
1102
- fillHeight: boolean;
1103
- } | undefined;
1104
- tabStop?: boolean | undefined;
1105
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1106
- fillHeight?: boolean | undefined;
1107
- }[];
1108
- component: string;
1109
- allowDuplicate: boolean;
1110
- autofocus: boolean;
1111
- childrenInstances: any[];
1112
- cssClass: string;
1113
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1114
- directives: {
1115
- [x: string]: {
1116
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1117
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1122
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1123
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
- } | undefined;
1126
- touch?: {
1127
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1128
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
- } | undefined;
1137
- };
1138
- isVisible: boolean;
1139
- name: string;
1140
- dark: boolean;
1141
- light: boolean;
1142
- theme?: string | undefined;
1143
- fillHeight: boolean;
1144
- parent?: {
1145
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1146
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1147
- allowDuplicate: boolean;
1148
- autofocus: boolean;
1149
- children: {
1150
- [x: string]: any;
1151
- allowDuplicate?: boolean | undefined;
1152
- autofocus?: boolean | undefined;
1153
- children?: any[] | undefined;
1154
- componentId?: number | undefined;
1155
- cssClass?: string | undefined;
1156
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1157
- events?: {
1158
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1159
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1160
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1161
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1162
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1163
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
- } | undefined;
1168
- directives?: {
1169
- [x: string]: {
1170
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1171
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1172
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1173
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1174
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1176
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1177
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1178
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1179
- } | undefined;
1180
- touch?: {
1181
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1182
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1183
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1184
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1185
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1186
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1187
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1188
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1189
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1190
- } | undefined;
1191
- } | undefined;
1192
- isVisible?: string | boolean | undefined;
1193
- dark?: boolean | undefined;
1194
- light?: boolean | undefined;
1195
- theme?: string | undefined;
1196
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1197
- name: string;
1198
- parent?: any | undefined;
1199
- tabStop?: boolean | undefined;
1200
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1201
- fillHeight?: boolean | undefined;
1202
- }[];
1203
- componentId: number;
1204
- cssClass: string;
1205
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1206
- events: {
1207
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1208
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
- };
1217
- directives: {
1218
- [x: string]: {
1219
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1220
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1223
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1227
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1228
- } | undefined;
1229
- touch?: {
1230
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1231
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1232
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1233
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1234
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
- } | undefined;
1240
- };
1241
- isVisible: string | boolean;
1242
- dark: boolean;
1243
- light: boolean;
1244
- theme?: string | undefined;
1245
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1246
- name: string;
1247
- parent?: any | undefined;
1248
- tabStop: boolean;
1249
- userProperties: import("@zeedhi/core").IDictionary<any>;
1250
- fillHeight: boolean;
1251
- } | undefined;
1252
- componentId: number;
1253
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1254
- isFocused: boolean;
1255
- tabStop: boolean;
1256
- userProperties: import("@zeedhi/core").IDictionary<any>;
1257
- setViewFocus: (viewFocus: () => void) => void;
1258
- setFocus: () => void;
1259
- callEvent: (eventName: string, args: any) => boolean;
1260
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1261
- removeChild: (name: string) => void;
1262
- getChildInstance: <T_1>(name: string) => T_1;
1263
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1264
- onCreated: () => void;
1265
- onBeforeMount: () => void;
1266
- onMounted: (element: any) => void;
1267
- onBeforeDestroy: () => void;
1268
- onDestroyed: () => void;
1269
- click: (event?: Event | undefined, element?: any) => void;
1270
- focus: (event: Event, element: any) => void;
1271
- blur: (event: Event, element: any) => void;
1272
- mouseenter: (event?: Event | undefined, element?: any) => void;
1273
- mouseleave: (event?: Event | undefined, element?: any) => void;
1274
- mouseout: (event?: Event | undefined, element?: any) => void;
1275
- mouseover: (event?: Event | undefined, element?: any) => void;
1276
- };
1277
- background: import("vue").ComputedRef<{
1278
- background: string;
1279
- }>;
1280
- elevationClass: import("vue").ComputedRef<string>;
1281
- headerStyle: import("vue").ComputedRef<{
1282
- width: string | number | undefined;
1283
- 'max-width': string | number | undefined;
1284
- 'min-width': string | number | undefined;
1285
- height: string | number | undefined;
1286
- 'max-height': string | number | undefined;
1287
- 'min-height': string | number | undefined;
1288
- background: string;
1289
- }>;
1290
- widthStyles: import("vue").ComputedRef<{
1291
- width: string | number | undefined;
1292
- 'max-width': string | number | undefined;
1293
- 'min-width': string | number | undefined;
1294
- }>;
1295
- click: (event: Event) => void;
1296
- mouseenter: (event: Event) => void;
1297
- mouseleave: (event: Event) => void;
1298
- 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>>;
1299
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1300
- disableActionRotate: {
1301
- type: (StringConstructor | BooleanConstructor)[];
1302
- default: boolean;
1303
- };
1304
- expandButton: {
1305
- type: (StringConstructor | ObjectConstructor)[];
1306
- default: () => undefined;
1307
- };
1308
- expanded: {
1309
- type: (StringConstructor | BooleanConstructor)[];
1310
- default: boolean;
1311
- };
1312
- header: {
1313
- type: (StringConstructor | ArrayConstructor)[];
1314
- default: () => never[];
1315
- };
1316
- hideAction: {
1317
- type: (StringConstructor | BooleanConstructor)[];
1318
- default: boolean;
1319
- };
1320
- iconColor: {
1321
- type: StringConstructor;
1322
- default: string;
1323
- };
1324
- iconName: {
1325
- type: StringConstructor;
1326
- default: string;
1327
- };
1328
- lazyLoad: {
1329
- type: (StringConstructor | BooleanConstructor)[];
1330
- default: boolean;
1331
- };
1332
- readonly: {
1333
- type: (StringConstructor | BooleanConstructor)[];
1334
- default: boolean;
1335
- };
1336
- activeClass: {
1337
- type: StringConstructor;
1338
- default: string;
1339
- };
1340
- append: {
1341
- type: (StringConstructor | BooleanConstructor)[];
1342
- default: boolean;
1343
- };
1344
- color: {
1345
- type: StringConstructor;
1346
- default: string;
1347
- };
1348
- disabled: {
1349
- type: (StringConstructor | BooleanConstructor)[];
1350
- default: boolean;
1351
- };
1352
- elevation: {
1353
- type: (StringConstructor | NumberConstructor)[];
1354
- };
1355
- flat: {
1356
- type: (StringConstructor | BooleanConstructor)[];
1357
- default: boolean;
1358
- };
1359
- hover: {
1360
- type: (StringConstructor | BooleanConstructor)[];
1361
- default: boolean;
1362
- };
1363
- href: {
1364
- type: StringConstructor;
1365
- default: string;
1366
- };
1367
- img: {
1368
- type: StringConstructor;
1369
- default: string;
1370
- };
1371
- link: {
1372
- type: (StringConstructor | BooleanConstructor)[];
1373
- default: null;
1374
- };
1375
- outlined: {
1376
- type: (StringConstructor | BooleanConstructor)[];
1377
- default: boolean;
1378
- };
1379
- raised: {
1380
- type: (StringConstructor | BooleanConstructor)[];
1381
- default: boolean;
1382
- };
1383
- ripple: {
1384
- type: (StringConstructor | BooleanConstructor)[];
1385
- default: boolean;
1386
- };
1387
- tile: {
1388
- type: (StringConstructor | BooleanConstructor)[];
1389
- default: boolean;
1390
- };
1391
- to: {
1392
- type: StringConstructor;
1393
- default: string;
1394
- };
1395
- border: {
1396
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1397
- default: boolean;
1398
- };
1399
- density: {
1400
- type: StringConstructor;
1401
- default: string;
1402
- };
1403
- loading: {
1404
- type: (StringConstructor | BooleanConstructor)[];
1405
- default: boolean;
1406
- };
1407
- position: {
1408
- type: StringConstructor;
1409
- };
1410
- replace: {
1411
- type: (StringConstructor | BooleanConstructor)[];
1412
- default: boolean;
1413
- };
1414
- round: {
1415
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1416
- default: boolean;
1417
- };
1418
- subtitle: {
1419
- type: StringConstructor;
1420
- };
1421
- tag: {
1422
- type: StringConstructor;
1423
- };
1424
- text: {
1425
- type: StringConstructor;
1426
- };
1427
- title: {
1428
- type: StringConstructor;
1429
- };
1430
- variant: {
1431
- type: StringConstructor;
1432
- };
1433
- width: {
1434
- type: (StringConstructor | NumberConstructor)[];
1435
- };
1436
- minWidth: {
1437
- type: (StringConstructor | NumberConstructor)[];
1438
- default: string;
1439
- };
1440
- maxWidth: {
1441
- type: (StringConstructor | NumberConstructor)[];
1442
- default: string;
1443
- };
1444
- fillHeight: {
1445
- type: (StringConstructor | BooleanConstructor)[];
1446
- default: boolean;
1447
- };
1448
- height: {
1449
- type: (StringConstructor | NumberConstructor)[];
1450
- };
1451
- minHeight: {
1452
- type: (StringConstructor | NumberConstructor)[];
1453
- default: string;
1454
- };
1455
- maxHeight: {
1456
- type: (StringConstructor | NumberConstructor)[];
1457
- default: string;
1458
- };
1459
- children: {
1460
- type: (StringConstructor | {
1461
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1462
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1463
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1464
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1465
- isArray(arg: any): arg is any[];
1466
- readonly prototype: any[];
1467
- from<T>(arrayLike: ArrayLike<T>): T[];
1468
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1469
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1470
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1471
- of<T_4>(...items: T_4[]): T_4[];
1472
- readonly [Symbol.species]: ArrayConstructor;
1473
- })[];
1474
- default(): never[];
1475
- };
1476
- component: {
1477
- type: StringConstructor;
1478
- };
1479
- allowDuplicate: {
1480
- type: (StringConstructor | BooleanConstructor)[];
1481
- default: boolean;
1482
- };
1483
- autofocus: {
1484
- type: (StringConstructor | BooleanConstructor)[];
1485
- default: boolean;
1486
- };
1487
- cssClass: {
1488
- type: StringConstructor;
1489
- default: string;
1490
- };
1491
- cssStyle: {
1492
- type: (StringConstructor | (() => import("vue").StyleValue))[];
1493
- default: string;
1494
- };
1495
- dark: {
1496
- type: (StringConstructor | BooleanConstructor)[];
1497
- default: boolean;
1498
- };
1499
- directives: {
1500
- type: ObjectConstructor;
1501
- default(): {};
1502
- };
1503
- events: {
1504
- type: ObjectConstructor;
1505
- default(): {};
1506
- };
1507
- instanceObject: {
1508
- type: ObjectConstructor;
1509
- };
1510
- isVisible: {
1511
- type: (StringConstructor | BooleanConstructor)[];
1512
- default: boolean;
1513
- };
1514
- keyMap: {
1515
- type: ObjectConstructor;
1516
- default(): {};
1517
- };
1518
- light: {
1519
- type: (StringConstructor | BooleanConstructor)[];
1520
- default: boolean;
1521
- };
1522
- name: {
1523
- type: StringConstructor;
1524
- required: true;
1525
- };
1526
- parent: {
1527
- type: ObjectConstructor;
1528
- };
1529
- tabStop: {
1530
- type: (StringConstructor | BooleanConstructor)[];
1531
- default: boolean;
1532
- };
1533
- theme: {
1534
- type: StringConstructor;
1535
- };
1536
- }>> & Readonly<{}>, {
1537
- flat: string | boolean;
1538
- allowDuplicate: string | boolean;
1539
- autofocus: string | boolean;
1540
- children: string | import("@zeedhi/common").IComponentRender[];
1541
- cssClass: string;
1542
- cssStyle: import("vue").StyleValue;
1543
- dark: string | boolean;
1544
- directives: Record<string, any>;
1545
- events: Record<string, any>;
1546
- isVisible: string | boolean;
1547
- keyMap: Record<string, any>;
1548
- light: string | boolean;
1549
- tabStop: string | boolean;
1550
- activeClass: string;
1551
- append: string | boolean;
1552
- color: string;
1553
- disabled: string | boolean;
1554
- hover: string | boolean;
1555
- href: string;
1556
- img: string;
1557
- link: string | boolean;
1558
- outlined: string | boolean;
1559
- raised: string | boolean;
1560
- ripple: string | boolean;
1561
- tile: string | boolean;
1562
- to: string;
1563
- border: string | number | boolean;
1564
- density: string;
1565
- loading: string | boolean;
1566
- replace: string | boolean;
1567
- round: string | number | boolean;
1568
- minWidth: string | number;
1569
- maxWidth: string | number;
1570
- fillHeight: string | boolean;
1571
- minHeight: string | number;
1572
- maxHeight: string | number;
1573
- disableActionRotate: string | boolean;
1574
- expandButton: string | Record<string, any>;
1575
- expanded: string | boolean;
1576
- header: string | unknown[];
1577
- hideAction: string | boolean;
1578
- iconColor: string;
1579
- iconName: string;
1580
- lazyLoad: string | boolean;
1581
- readonly: string | boolean;
1582
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1583
- export default collapseCardComponent;
1
+ export declare const ZdCollapseCardProps: {
2
+ disableActionRotate: {
3
+ type: (BooleanConstructor | StringConstructor)[];
4
+ default: boolean;
5
+ };
6
+ expandButton: {
7
+ type: (ObjectConstructor | StringConstructor)[];
8
+ default: () => undefined;
9
+ };
10
+ expanded: {
11
+ type: (BooleanConstructor | StringConstructor)[];
12
+ default: boolean;
13
+ };
14
+ header: {
15
+ type: (ArrayConstructor | StringConstructor)[];
16
+ default: () => never[];
17
+ };
18
+ hideAction: {
19
+ type: (BooleanConstructor | StringConstructor)[];
20
+ default: boolean;
21
+ };
22
+ iconColor: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ iconName: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ lazyLoad: {
31
+ type: (BooleanConstructor | StringConstructor)[];
32
+ default: boolean;
33
+ };
34
+ readonly: {
35
+ type: (BooleanConstructor | StringConstructor)[];
36
+ default: boolean;
37
+ };
38
+ activeClass: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ append: {
43
+ type: (BooleanConstructor | StringConstructor)[];
44
+ default: boolean;
45
+ };
46
+ color: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ disabled: {
51
+ type: (BooleanConstructor | StringConstructor)[];
52
+ default: boolean;
53
+ };
54
+ elevation: {
55
+ type: (NumberConstructor | StringConstructor)[];
56
+ };
57
+ flat: {
58
+ type: (BooleanConstructor | StringConstructor)[];
59
+ default: boolean;
60
+ };
61
+ hover: {
62
+ type: (BooleanConstructor | StringConstructor)[];
63
+ default: boolean;
64
+ };
65
+ href: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ img: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ link: {
74
+ type: (BooleanConstructor | StringConstructor)[];
75
+ default: null;
76
+ };
77
+ outlined: {
78
+ type: (BooleanConstructor | StringConstructor)[];
79
+ default: boolean;
80
+ };
81
+ raised: {
82
+ type: (BooleanConstructor | StringConstructor)[];
83
+ default: boolean;
84
+ };
85
+ ripple: {
86
+ type: (BooleanConstructor | StringConstructor)[];
87
+ default: boolean;
88
+ };
89
+ tile: {
90
+ type: (BooleanConstructor | StringConstructor)[];
91
+ default: boolean;
92
+ };
93
+ to: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ border: {
98
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
99
+ default: boolean;
100
+ };
101
+ density: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ loading: {
106
+ type: (BooleanConstructor | StringConstructor)[];
107
+ default: boolean;
108
+ };
109
+ position: {
110
+ type: StringConstructor;
111
+ };
112
+ replace: {
113
+ type: (BooleanConstructor | StringConstructor)[];
114
+ default: boolean;
115
+ };
116
+ round: {
117
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
118
+ default: boolean;
119
+ };
120
+ subtitle: {
121
+ type: StringConstructor;
122
+ };
123
+ tag: {
124
+ type: StringConstructor;
125
+ };
126
+ text: {
127
+ type: StringConstructor;
128
+ };
129
+ title: {
130
+ type: StringConstructor;
131
+ };
132
+ variant: {
133
+ type: StringConstructor;
134
+ };
135
+ width: {
136
+ type: (NumberConstructor | StringConstructor)[];
137
+ };
138
+ minWidth: {
139
+ type: (NumberConstructor | StringConstructor)[];
140
+ default: string;
141
+ };
142
+ maxWidth: {
143
+ type: (NumberConstructor | StringConstructor)[];
144
+ default: string;
145
+ };
146
+ fillHeight: {
147
+ type: (BooleanConstructor | StringConstructor)[];
148
+ default: boolean;
149
+ };
150
+ height: {
151
+ type: (NumberConstructor | StringConstructor)[];
152
+ };
153
+ minHeight: {
154
+ type: (NumberConstructor | StringConstructor)[];
155
+ default: string;
156
+ };
157
+ maxHeight: {
158
+ type: (NumberConstructor | StringConstructor)[];
159
+ default: string;
160
+ };
161
+ children: {
162
+ type: (StringConstructor | {
163
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
164
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
165
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
166
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
167
+ isArray(arg: any): arg is any[];
168
+ readonly prototype: any[];
169
+ from<T>(arrayLike: ArrayLike<T>): T[];
170
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
171
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
172
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
173
+ of<T_4>(...items: T_4[]): T_4[];
174
+ readonly [Symbol.species]: ArrayConstructor;
175
+ })[];
176
+ default(): never[];
177
+ };
178
+ component: {
179
+ type: StringConstructor;
180
+ };
181
+ allowDuplicate: {
182
+ type: (BooleanConstructor | StringConstructor)[];
183
+ default: boolean;
184
+ };
185
+ autofocus: {
186
+ type: (BooleanConstructor | StringConstructor)[];
187
+ default: boolean;
188
+ };
189
+ cssClass: {
190
+ type: StringConstructor;
191
+ default: string;
192
+ };
193
+ cssStyle: {
194
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
195
+ default: string;
196
+ };
197
+ dark: {
198
+ type: (BooleanConstructor | StringConstructor)[];
199
+ default: boolean;
200
+ };
201
+ directives: {
202
+ type: ObjectConstructor;
203
+ default(): {};
204
+ };
205
+ events: {
206
+ type: ObjectConstructor;
207
+ default(): {};
208
+ };
209
+ instanceObject: {
210
+ type: ObjectConstructor;
211
+ };
212
+ isVisible: {
213
+ type: (BooleanConstructor | StringConstructor)[];
214
+ default: boolean;
215
+ };
216
+ keyMap: {
217
+ type: ObjectConstructor;
218
+ default(): {};
219
+ };
220
+ light: {
221
+ type: (BooleanConstructor | StringConstructor)[];
222
+ default: boolean;
223
+ };
224
+ name: {
225
+ type: StringConstructor;
226
+ required: true;
227
+ };
228
+ parent: {
229
+ type: ObjectConstructor;
230
+ };
231
+ tabStop: {
232
+ type: (BooleanConstructor | StringConstructor)[];
233
+ default: boolean;
234
+ };
235
+ theme: {
236
+ type: StringConstructor;
237
+ };
238
+ };
239
+ declare const collapseCardComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
240
+ disableActionRotate: {
241
+ type: (BooleanConstructor | StringConstructor)[];
242
+ default: boolean;
243
+ };
244
+ expandButton: {
245
+ type: (ObjectConstructor | StringConstructor)[];
246
+ default: () => undefined;
247
+ };
248
+ expanded: {
249
+ type: (BooleanConstructor | StringConstructor)[];
250
+ default: boolean;
251
+ };
252
+ header: {
253
+ type: (ArrayConstructor | StringConstructor)[];
254
+ default: () => never[];
255
+ };
256
+ hideAction: {
257
+ type: (BooleanConstructor | StringConstructor)[];
258
+ default: boolean;
259
+ };
260
+ iconColor: {
261
+ type: StringConstructor;
262
+ default: string;
263
+ };
264
+ iconName: {
265
+ type: StringConstructor;
266
+ default: string;
267
+ };
268
+ lazyLoad: {
269
+ type: (BooleanConstructor | StringConstructor)[];
270
+ default: boolean;
271
+ };
272
+ readonly: {
273
+ type: (BooleanConstructor | StringConstructor)[];
274
+ default: boolean;
275
+ };
276
+ activeClass: {
277
+ type: StringConstructor;
278
+ default: string;
279
+ };
280
+ append: {
281
+ type: (BooleanConstructor | StringConstructor)[];
282
+ default: boolean;
283
+ };
284
+ color: {
285
+ type: StringConstructor;
286
+ default: string;
287
+ };
288
+ disabled: {
289
+ type: (BooleanConstructor | StringConstructor)[];
290
+ default: boolean;
291
+ };
292
+ elevation: {
293
+ type: (NumberConstructor | StringConstructor)[];
294
+ };
295
+ flat: {
296
+ type: (BooleanConstructor | StringConstructor)[];
297
+ default: boolean;
298
+ };
299
+ hover: {
300
+ type: (BooleanConstructor | StringConstructor)[];
301
+ default: boolean;
302
+ };
303
+ href: {
304
+ type: StringConstructor;
305
+ default: string;
306
+ };
307
+ img: {
308
+ type: StringConstructor;
309
+ default: string;
310
+ };
311
+ link: {
312
+ type: (BooleanConstructor | StringConstructor)[];
313
+ default: null;
314
+ };
315
+ outlined: {
316
+ type: (BooleanConstructor | StringConstructor)[];
317
+ default: boolean;
318
+ };
319
+ raised: {
320
+ type: (BooleanConstructor | StringConstructor)[];
321
+ default: boolean;
322
+ };
323
+ ripple: {
324
+ type: (BooleanConstructor | StringConstructor)[];
325
+ default: boolean;
326
+ };
327
+ tile: {
328
+ type: (BooleanConstructor | StringConstructor)[];
329
+ default: boolean;
330
+ };
331
+ to: {
332
+ type: StringConstructor;
333
+ default: string;
334
+ };
335
+ border: {
336
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
337
+ default: boolean;
338
+ };
339
+ density: {
340
+ type: StringConstructor;
341
+ default: string;
342
+ };
343
+ loading: {
344
+ type: (BooleanConstructor | StringConstructor)[];
345
+ default: boolean;
346
+ };
347
+ position: {
348
+ type: StringConstructor;
349
+ };
350
+ replace: {
351
+ type: (BooleanConstructor | StringConstructor)[];
352
+ default: boolean;
353
+ };
354
+ round: {
355
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
356
+ default: boolean;
357
+ };
358
+ subtitle: {
359
+ type: StringConstructor;
360
+ };
361
+ tag: {
362
+ type: StringConstructor;
363
+ };
364
+ text: {
365
+ type: StringConstructor;
366
+ };
367
+ title: {
368
+ type: StringConstructor;
369
+ };
370
+ variant: {
371
+ type: StringConstructor;
372
+ };
373
+ width: {
374
+ type: (NumberConstructor | StringConstructor)[];
375
+ };
376
+ minWidth: {
377
+ type: (NumberConstructor | StringConstructor)[];
378
+ default: string;
379
+ };
380
+ maxWidth: {
381
+ type: (NumberConstructor | StringConstructor)[];
382
+ default: string;
383
+ };
384
+ fillHeight: {
385
+ type: (BooleanConstructor | StringConstructor)[];
386
+ default: boolean;
387
+ };
388
+ height: {
389
+ type: (NumberConstructor | StringConstructor)[];
390
+ };
391
+ minHeight: {
392
+ type: (NumberConstructor | StringConstructor)[];
393
+ default: string;
394
+ };
395
+ maxHeight: {
396
+ type: (NumberConstructor | StringConstructor)[];
397
+ default: string;
398
+ };
399
+ children: {
400
+ type: (StringConstructor | {
401
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
402
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
403
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
404
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
405
+ isArray(arg: any): arg is any[];
406
+ readonly prototype: any[];
407
+ from<T>(arrayLike: ArrayLike<T>): T[];
408
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
409
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
410
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
411
+ of<T_4>(...items: T_4[]): T_4[];
412
+ readonly [Symbol.species]: ArrayConstructor;
413
+ })[];
414
+ default(): never[];
415
+ };
416
+ component: {
417
+ type: StringConstructor;
418
+ };
419
+ allowDuplicate: {
420
+ type: (BooleanConstructor | StringConstructor)[];
421
+ default: boolean;
422
+ };
423
+ autofocus: {
424
+ type: (BooleanConstructor | StringConstructor)[];
425
+ default: boolean;
426
+ };
427
+ cssClass: {
428
+ type: StringConstructor;
429
+ default: string;
430
+ };
431
+ cssStyle: {
432
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
433
+ default: string;
434
+ };
435
+ dark: {
436
+ type: (BooleanConstructor | StringConstructor)[];
437
+ default: boolean;
438
+ };
439
+ directives: {
440
+ type: ObjectConstructor;
441
+ default(): {};
442
+ };
443
+ events: {
444
+ type: ObjectConstructor;
445
+ default(): {};
446
+ };
447
+ instanceObject: {
448
+ type: ObjectConstructor;
449
+ };
450
+ isVisible: {
451
+ type: (BooleanConstructor | StringConstructor)[];
452
+ default: boolean;
453
+ };
454
+ keyMap: {
455
+ type: ObjectConstructor;
456
+ default(): {};
457
+ };
458
+ light: {
459
+ type: (BooleanConstructor | StringConstructor)[];
460
+ default: boolean;
461
+ };
462
+ name: {
463
+ type: StringConstructor;
464
+ required: true;
465
+ };
466
+ parent: {
467
+ type: ObjectConstructor;
468
+ };
469
+ tabStop: {
470
+ type: (BooleanConstructor | StringConstructor)[];
471
+ default: boolean;
472
+ };
473
+ theme: {
474
+ type: StringConstructor;
475
+ };
476
+ }>, {
477
+ instance: {
478
+ disableActionRotate: boolean;
479
+ expandButton: {
480
+ [x: string]: any;
481
+ absolute?: boolean | undefined;
482
+ block?: boolean | undefined;
483
+ bottom?: boolean | undefined;
484
+ color?: string | undefined;
485
+ disabled?: boolean | undefined;
486
+ events?: {
487
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
488
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
489
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
490
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
491
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
492
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
493
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
494
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
495
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
496
+ } | undefined;
497
+ fab?: boolean | undefined;
498
+ fixed?: boolean | undefined;
499
+ flat?: boolean | undefined;
500
+ href?: string | undefined;
501
+ icon?: boolean | undefined;
502
+ iconName?: string | undefined;
503
+ label?: string | undefined;
504
+ large?: boolean | undefined;
505
+ left?: boolean | undefined;
506
+ outline?: boolean | undefined;
507
+ reverse?: boolean | undefined;
508
+ right?: boolean | undefined;
509
+ round?: string | number | boolean | undefined;
510
+ small?: boolean | undefined;
511
+ target?: string | undefined;
512
+ tile?: boolean | undefined;
513
+ to?: string | undefined;
514
+ top?: boolean | undefined;
515
+ type?: string | undefined;
516
+ width?: string | number | undefined;
517
+ active?: boolean | undefined;
518
+ appendIcon?: string | undefined;
519
+ border?: string | number | boolean | undefined;
520
+ density?: "default" | "comfortable" | "compact" | undefined;
521
+ elevation?: string | number | undefined;
522
+ loading?: string | boolean | undefined;
523
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
524
+ prependIcon?: string | undefined;
525
+ replace?: boolean | undefined;
526
+ ripple?: boolean | undefined;
527
+ selectedClass?: string | undefined;
528
+ size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
529
+ stacked?: boolean | undefined;
530
+ tag?: string | undefined;
531
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
532
+ children?: {
533
+ [x: string]: any;
534
+ children?: any[] | undefined;
535
+ component: string;
536
+ allowDuplicate?: boolean | undefined;
537
+ autofocus?: boolean | 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?: {
583
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
584
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
585
+ allowDuplicate: boolean;
586
+ autofocus: boolean;
587
+ children: {
588
+ [x: string]: any;
589
+ allowDuplicate?: boolean | undefined;
590
+ autofocus?: boolean | undefined;
591
+ children?: any[] | undefined;
592
+ componentId?: number | undefined;
593
+ cssClass?: string | undefined;
594
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
595
+ events?: {
596
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
597
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
599
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
601
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
602
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
+ } | undefined;
606
+ directives?: {
607
+ [x: string]: {
608
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
609
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ } | undefined;
618
+ touch?: {
619
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
620
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
+ } | undefined;
629
+ } | undefined;
630
+ isVisible?: string | boolean | undefined;
631
+ dark?: boolean | undefined;
632
+ light?: boolean | undefined;
633
+ theme?: string | undefined;
634
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
635
+ name: string;
636
+ parent?: any | undefined;
637
+ tabStop?: boolean | undefined;
638
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
639
+ fillHeight?: boolean | undefined;
640
+ }[];
641
+ componentId: number;
642
+ cssClass: string;
643
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
644
+ events: {
645
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
646
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
647
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
648
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
649
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
650
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
651
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
+ };
655
+ directives: {
656
+ [x: string]: {
657
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
658
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
+ } | undefined;
667
+ touch?: {
668
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
669
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
+ } | undefined;
678
+ };
679
+ isVisible: string | boolean;
680
+ dark: boolean;
681
+ light: boolean;
682
+ theme?: string | undefined;
683
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
684
+ name: string;
685
+ parent?: any | undefined;
686
+ tabStop: boolean;
687
+ userProperties: import("@zeedhi/core").IDictionary<any>;
688
+ fillHeight: boolean;
689
+ } | undefined;
690
+ tabStop?: boolean | undefined;
691
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
692
+ fillHeight?: boolean | undefined;
693
+ }[] | undefined;
694
+ component: string;
695
+ allowDuplicate?: boolean | undefined;
696
+ autofocus?: boolean | undefined;
697
+ componentId?: number | undefined;
698
+ cssClass?: string | undefined;
699
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
700
+ directives?: {
701
+ [x: string]: {
702
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
703
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
704
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
708
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ } | undefined;
712
+ touch?: {
713
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
714
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
+ } | undefined;
723
+ } | undefined;
724
+ isVisible?: string | boolean | undefined;
725
+ dark?: boolean | undefined;
726
+ light?: boolean | undefined;
727
+ theme?: string | undefined;
728
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
729
+ name: string;
730
+ parent?: {
731
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
732
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
733
+ allowDuplicate: boolean;
734
+ autofocus: boolean;
735
+ children: {
736
+ [x: string]: any;
737
+ allowDuplicate?: boolean | undefined;
738
+ autofocus?: boolean | undefined;
739
+ children?: any[] | undefined;
740
+ componentId?: number | undefined;
741
+ cssClass?: string | undefined;
742
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
743
+ events?: {
744
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
745
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
750
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
752
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
753
+ } | undefined;
754
+ directives?: {
755
+ [x: string]: {
756
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
757
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
762
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ } | undefined;
766
+ touch?: {
767
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
768
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ } | undefined;
777
+ } | undefined;
778
+ isVisible?: string | boolean | undefined;
779
+ dark?: boolean | undefined;
780
+ light?: boolean | undefined;
781
+ theme?: string | undefined;
782
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
783
+ name: string;
784
+ parent?: any | undefined;
785
+ tabStop?: boolean | undefined;
786
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
787
+ fillHeight?: boolean | undefined;
788
+ }[];
789
+ componentId: number;
790
+ cssClass: string;
791
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
792
+ events: {
793
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
794
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
+ };
803
+ directives: {
804
+ [x: string]: {
805
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
806
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
811
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
+ } | undefined;
815
+ touch?: {
816
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
817
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
+ } | undefined;
826
+ };
827
+ isVisible: string | boolean;
828
+ dark: boolean;
829
+ light: boolean;
830
+ theme?: string | undefined;
831
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
832
+ name: string;
833
+ parent?: any | undefined;
834
+ tabStop: boolean;
835
+ userProperties: import("@zeedhi/core").IDictionary<any>;
836
+ fillHeight: boolean;
837
+ } | undefined;
838
+ tabStop?: boolean | undefined;
839
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
840
+ fillHeight?: boolean | undefined;
841
+ };
842
+ expanded: boolean;
843
+ header: {
844
+ [x: string]: any;
845
+ allowDuplicate?: boolean | undefined;
846
+ autofocus?: boolean | undefined;
847
+ children?: any[] | undefined;
848
+ componentId?: number | undefined;
849
+ cssClass?: string | undefined;
850
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
851
+ events?: {
852
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
853
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
854
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
855
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
856
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
858
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
+ } | undefined;
862
+ directives?: {
863
+ [x: string]: {
864
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
865
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
866
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
867
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
+ } | undefined;
874
+ touch?: {
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
+ } | undefined;
886
+ isVisible?: string | boolean | undefined;
887
+ dark?: boolean | undefined;
888
+ light?: boolean | undefined;
889
+ theme?: string | undefined;
890
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
891
+ name: string;
892
+ parent?: any | undefined;
893
+ tabStop?: boolean | undefined;
894
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
895
+ fillHeight?: boolean | undefined;
896
+ }[];
897
+ hideAction: boolean;
898
+ iconColor: string;
899
+ iconName: string;
900
+ lazyLoad: boolean;
901
+ readonly: boolean;
902
+ change: (event: Event, element: any) => void;
903
+ activeClass: string;
904
+ append: boolean;
905
+ color: string;
906
+ disabled: boolean;
907
+ elevation?: string | number | undefined;
908
+ events: {
909
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent> | undefined)[] | undefined;
910
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
911
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
912
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
913
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
914
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
915
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
916
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
917
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICardEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICardEvent>> | undefined;
918
+ };
919
+ flat: boolean;
920
+ height?: string | number | undefined;
921
+ hover: boolean;
922
+ href?: string | undefined;
923
+ img: string;
924
+ link: boolean;
925
+ maxHeight: string | number;
926
+ maxWidth: string | number;
927
+ minHeight: string | number;
928
+ minWidth: string | number;
929
+ outlined: boolean;
930
+ raised: boolean;
931
+ ripple: boolean;
932
+ tile: boolean;
933
+ to?: string | undefined;
934
+ width?: string | number | undefined;
935
+ border: string | number | boolean;
936
+ density: "default" | "comfortable" | "compact";
937
+ loading: string | boolean;
938
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
939
+ replace: boolean;
940
+ round: string | number | boolean;
941
+ subtitle?: string | undefined;
942
+ tag?: string | undefined;
943
+ text?: string | undefined;
944
+ title?: string | undefined;
945
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
946
+ children: {
947
+ [x: string]: any;
948
+ children?: any[] | undefined;
949
+ component: string;
950
+ allowDuplicate?: boolean | undefined;
951
+ autofocus?: boolean | undefined;
952
+ componentId?: number | undefined;
953
+ cssClass?: string | undefined;
954
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
955
+ events?: {
956
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
957
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
961
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
+ } | undefined;
966
+ directives?: {
967
+ [x: string]: {
968
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
969
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
972
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
+ } | undefined;
978
+ touch?: {
979
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
980
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
+ } | undefined;
989
+ } | undefined;
990
+ isVisible?: string | boolean | undefined;
991
+ dark?: boolean | undefined;
992
+ light?: boolean | undefined;
993
+ theme?: string | undefined;
994
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
995
+ name: string;
996
+ parent?: {
997
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
998
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
999
+ allowDuplicate: boolean;
1000
+ autofocus: boolean;
1001
+ children: {
1002
+ [x: string]: any;
1003
+ allowDuplicate?: boolean | undefined;
1004
+ autofocus?: boolean | undefined;
1005
+ children?: any[] | undefined;
1006
+ componentId?: number | undefined;
1007
+ cssClass?: string | undefined;
1008
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1009
+ events?: {
1010
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1011
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1012
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1013
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
+ } | undefined;
1020
+ directives?: {
1021
+ [x: string]: {
1022
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1023
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1024
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1025
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1026
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
+ } | undefined;
1032
+ touch?: {
1033
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1034
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
+ } | undefined;
1043
+ } | undefined;
1044
+ isVisible?: string | boolean | undefined;
1045
+ dark?: boolean | undefined;
1046
+ light?: boolean | undefined;
1047
+ theme?: string | undefined;
1048
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1049
+ name: string;
1050
+ parent?: any | undefined;
1051
+ tabStop?: boolean | undefined;
1052
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1053
+ fillHeight?: boolean | undefined;
1054
+ }[];
1055
+ componentId: number;
1056
+ cssClass: string;
1057
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1058
+ events: {
1059
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1060
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1066
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1067
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1068
+ };
1069
+ directives: {
1070
+ [x: string]: {
1071
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1072
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1073
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1074
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1075
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1076
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1077
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
+ } | undefined;
1081
+ touch?: {
1082
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1083
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1086
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1088
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ } | undefined;
1092
+ };
1093
+ isVisible: string | boolean;
1094
+ dark: boolean;
1095
+ light: boolean;
1096
+ theme?: string | undefined;
1097
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1098
+ name: string;
1099
+ parent?: any | undefined;
1100
+ tabStop: boolean;
1101
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1102
+ fillHeight: boolean;
1103
+ } | undefined;
1104
+ tabStop?: boolean | undefined;
1105
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1106
+ fillHeight?: boolean | undefined;
1107
+ }[];
1108
+ component: string;
1109
+ allowDuplicate: boolean;
1110
+ autofocus: boolean;
1111
+ childrenInstances: any[];
1112
+ cssClass: string;
1113
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1114
+ directives: {
1115
+ [x: string]: {
1116
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1117
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1122
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1123
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
+ } | undefined;
1126
+ touch?: {
1127
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1128
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
+ } | undefined;
1137
+ };
1138
+ isVisible: boolean;
1139
+ name: string;
1140
+ dark: boolean;
1141
+ light: boolean;
1142
+ theme?: string | undefined;
1143
+ fillHeight: boolean;
1144
+ parent?: {
1145
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1146
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1147
+ allowDuplicate: boolean;
1148
+ autofocus: boolean;
1149
+ children: {
1150
+ [x: string]: any;
1151
+ allowDuplicate?: boolean | undefined;
1152
+ autofocus?: boolean | undefined;
1153
+ children?: any[] | undefined;
1154
+ componentId?: number | undefined;
1155
+ cssClass?: string | undefined;
1156
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1157
+ events?: {
1158
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1159
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1160
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1161
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1162
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1163
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
+ } | undefined;
1168
+ directives?: {
1169
+ [x: string]: {
1170
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1171
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1172
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1173
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1174
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1176
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1177
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1178
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1179
+ } | undefined;
1180
+ touch?: {
1181
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1182
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1183
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1184
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1185
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1186
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1187
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1188
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1189
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1190
+ } | undefined;
1191
+ } | undefined;
1192
+ isVisible?: string | boolean | undefined;
1193
+ dark?: boolean | undefined;
1194
+ light?: boolean | undefined;
1195
+ theme?: string | undefined;
1196
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1197
+ name: string;
1198
+ parent?: any | undefined;
1199
+ tabStop?: boolean | undefined;
1200
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1201
+ fillHeight?: boolean | undefined;
1202
+ }[];
1203
+ componentId: number;
1204
+ cssClass: string;
1205
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1206
+ events: {
1207
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1208
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
+ };
1217
+ directives: {
1218
+ [x: string]: {
1219
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1220
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1223
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1227
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1228
+ } | undefined;
1229
+ touch?: {
1230
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1231
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1232
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1233
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1234
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
+ } | undefined;
1240
+ };
1241
+ isVisible: string | boolean;
1242
+ dark: boolean;
1243
+ light: boolean;
1244
+ theme?: string | undefined;
1245
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1246
+ name: string;
1247
+ parent?: any | undefined;
1248
+ tabStop: boolean;
1249
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1250
+ fillHeight: boolean;
1251
+ } | undefined;
1252
+ componentId: number;
1253
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1254
+ isFocused: boolean;
1255
+ tabStop: boolean;
1256
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1257
+ setViewFocus: (viewFocus: () => void) => void;
1258
+ setFocus: () => void;
1259
+ callEvent: (eventName: string, args: any) => boolean;
1260
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1261
+ removeChild: (name: string) => void;
1262
+ getChildInstance: <T_1>(name: string) => T_1;
1263
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1264
+ onCreated: () => void;
1265
+ onBeforeMount: () => void;
1266
+ onMounted: (element: any) => void;
1267
+ onBeforeDestroy: () => void;
1268
+ onDestroyed: () => void;
1269
+ click: (event?: Event | undefined, element?: any) => void;
1270
+ focus: (event: Event, element: any) => void;
1271
+ blur: (event: Event, element: any) => void;
1272
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1273
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1274
+ mouseout: (event?: Event | undefined, element?: any) => void;
1275
+ mouseover: (event?: Event | undefined, element?: any) => void;
1276
+ };
1277
+ background: import("vue").ComputedRef<{
1278
+ background: string;
1279
+ }>;
1280
+ elevationClass: import("vue").ComputedRef<string>;
1281
+ headerStyle: import("vue").ComputedRef<{
1282
+ width: string | number | undefined;
1283
+ 'max-width': string | number | undefined;
1284
+ 'min-width': string | number | undefined;
1285
+ height: string | number | undefined;
1286
+ 'max-height': string | number | undefined;
1287
+ 'min-height': string | number | undefined;
1288
+ background: string;
1289
+ }>;
1290
+ widthStyles: import("vue").ComputedRef<{
1291
+ width: string | number | undefined;
1292
+ 'max-width': string | number | undefined;
1293
+ 'min-width': string | number | undefined;
1294
+ }>;
1295
+ click: (event: Event) => void;
1296
+ mouseenter: (event: Event) => void;
1297
+ mouseleave: (event: Event) => void;
1298
+ 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>>;
1299
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1300
+ disableActionRotate: {
1301
+ type: (BooleanConstructor | StringConstructor)[];
1302
+ default: boolean;
1303
+ };
1304
+ expandButton: {
1305
+ type: (ObjectConstructor | StringConstructor)[];
1306
+ default: () => undefined;
1307
+ };
1308
+ expanded: {
1309
+ type: (BooleanConstructor | StringConstructor)[];
1310
+ default: boolean;
1311
+ };
1312
+ header: {
1313
+ type: (ArrayConstructor | StringConstructor)[];
1314
+ default: () => never[];
1315
+ };
1316
+ hideAction: {
1317
+ type: (BooleanConstructor | StringConstructor)[];
1318
+ default: boolean;
1319
+ };
1320
+ iconColor: {
1321
+ type: StringConstructor;
1322
+ default: string;
1323
+ };
1324
+ iconName: {
1325
+ type: StringConstructor;
1326
+ default: string;
1327
+ };
1328
+ lazyLoad: {
1329
+ type: (BooleanConstructor | StringConstructor)[];
1330
+ default: boolean;
1331
+ };
1332
+ readonly: {
1333
+ type: (BooleanConstructor | StringConstructor)[];
1334
+ default: boolean;
1335
+ };
1336
+ activeClass: {
1337
+ type: StringConstructor;
1338
+ default: string;
1339
+ };
1340
+ append: {
1341
+ type: (BooleanConstructor | StringConstructor)[];
1342
+ default: boolean;
1343
+ };
1344
+ color: {
1345
+ type: StringConstructor;
1346
+ default: string;
1347
+ };
1348
+ disabled: {
1349
+ type: (BooleanConstructor | StringConstructor)[];
1350
+ default: boolean;
1351
+ };
1352
+ elevation: {
1353
+ type: (NumberConstructor | StringConstructor)[];
1354
+ };
1355
+ flat: {
1356
+ type: (BooleanConstructor | StringConstructor)[];
1357
+ default: boolean;
1358
+ };
1359
+ hover: {
1360
+ type: (BooleanConstructor | StringConstructor)[];
1361
+ default: boolean;
1362
+ };
1363
+ href: {
1364
+ type: StringConstructor;
1365
+ default: string;
1366
+ };
1367
+ img: {
1368
+ type: StringConstructor;
1369
+ default: string;
1370
+ };
1371
+ link: {
1372
+ type: (BooleanConstructor | StringConstructor)[];
1373
+ default: null;
1374
+ };
1375
+ outlined: {
1376
+ type: (BooleanConstructor | StringConstructor)[];
1377
+ default: boolean;
1378
+ };
1379
+ raised: {
1380
+ type: (BooleanConstructor | StringConstructor)[];
1381
+ default: boolean;
1382
+ };
1383
+ ripple: {
1384
+ type: (BooleanConstructor | StringConstructor)[];
1385
+ default: boolean;
1386
+ };
1387
+ tile: {
1388
+ type: (BooleanConstructor | StringConstructor)[];
1389
+ default: boolean;
1390
+ };
1391
+ to: {
1392
+ type: StringConstructor;
1393
+ default: string;
1394
+ };
1395
+ border: {
1396
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1397
+ default: boolean;
1398
+ };
1399
+ density: {
1400
+ type: StringConstructor;
1401
+ default: string;
1402
+ };
1403
+ loading: {
1404
+ type: (BooleanConstructor | StringConstructor)[];
1405
+ default: boolean;
1406
+ };
1407
+ position: {
1408
+ type: StringConstructor;
1409
+ };
1410
+ replace: {
1411
+ type: (BooleanConstructor | StringConstructor)[];
1412
+ default: boolean;
1413
+ };
1414
+ round: {
1415
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1416
+ default: boolean;
1417
+ };
1418
+ subtitle: {
1419
+ type: StringConstructor;
1420
+ };
1421
+ tag: {
1422
+ type: StringConstructor;
1423
+ };
1424
+ text: {
1425
+ type: StringConstructor;
1426
+ };
1427
+ title: {
1428
+ type: StringConstructor;
1429
+ };
1430
+ variant: {
1431
+ type: StringConstructor;
1432
+ };
1433
+ width: {
1434
+ type: (NumberConstructor | StringConstructor)[];
1435
+ };
1436
+ minWidth: {
1437
+ type: (NumberConstructor | StringConstructor)[];
1438
+ default: string;
1439
+ };
1440
+ maxWidth: {
1441
+ type: (NumberConstructor | StringConstructor)[];
1442
+ default: string;
1443
+ };
1444
+ fillHeight: {
1445
+ type: (BooleanConstructor | StringConstructor)[];
1446
+ default: boolean;
1447
+ };
1448
+ height: {
1449
+ type: (NumberConstructor | StringConstructor)[];
1450
+ };
1451
+ minHeight: {
1452
+ type: (NumberConstructor | StringConstructor)[];
1453
+ default: string;
1454
+ };
1455
+ maxHeight: {
1456
+ type: (NumberConstructor | StringConstructor)[];
1457
+ default: string;
1458
+ };
1459
+ children: {
1460
+ type: (StringConstructor | {
1461
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1462
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1463
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1464
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1465
+ isArray(arg: any): arg is any[];
1466
+ readonly prototype: any[];
1467
+ from<T>(arrayLike: ArrayLike<T>): T[];
1468
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1469
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1470
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1471
+ of<T_4>(...items: T_4[]): T_4[];
1472
+ readonly [Symbol.species]: ArrayConstructor;
1473
+ })[];
1474
+ default(): never[];
1475
+ };
1476
+ component: {
1477
+ type: StringConstructor;
1478
+ };
1479
+ allowDuplicate: {
1480
+ type: (BooleanConstructor | StringConstructor)[];
1481
+ default: boolean;
1482
+ };
1483
+ autofocus: {
1484
+ type: (BooleanConstructor | StringConstructor)[];
1485
+ default: boolean;
1486
+ };
1487
+ cssClass: {
1488
+ type: StringConstructor;
1489
+ default: string;
1490
+ };
1491
+ cssStyle: {
1492
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1493
+ default: string;
1494
+ };
1495
+ dark: {
1496
+ type: (BooleanConstructor | StringConstructor)[];
1497
+ default: boolean;
1498
+ };
1499
+ directives: {
1500
+ type: ObjectConstructor;
1501
+ default(): {};
1502
+ };
1503
+ events: {
1504
+ type: ObjectConstructor;
1505
+ default(): {};
1506
+ };
1507
+ instanceObject: {
1508
+ type: ObjectConstructor;
1509
+ };
1510
+ isVisible: {
1511
+ type: (BooleanConstructor | StringConstructor)[];
1512
+ default: boolean;
1513
+ };
1514
+ keyMap: {
1515
+ type: ObjectConstructor;
1516
+ default(): {};
1517
+ };
1518
+ light: {
1519
+ type: (BooleanConstructor | StringConstructor)[];
1520
+ default: boolean;
1521
+ };
1522
+ name: {
1523
+ type: StringConstructor;
1524
+ required: true;
1525
+ };
1526
+ parent: {
1527
+ type: ObjectConstructor;
1528
+ };
1529
+ tabStop: {
1530
+ type: (BooleanConstructor | StringConstructor)[];
1531
+ default: boolean;
1532
+ };
1533
+ theme: {
1534
+ type: StringConstructor;
1535
+ };
1536
+ }>> & Readonly<{}>, {
1537
+ iconName: string;
1538
+ flat: string | boolean;
1539
+ allowDuplicate: string | boolean;
1540
+ autofocus: string | boolean;
1541
+ children: string | import("@zeedhi/common").IComponentRender[];
1542
+ cssClass: string;
1543
+ cssStyle: import("vue").StyleValue;
1544
+ dark: string | boolean;
1545
+ directives: Record<string, any>;
1546
+ events: Record<string, any>;
1547
+ isVisible: string | boolean;
1548
+ keyMap: Record<string, any>;
1549
+ light: string | boolean;
1550
+ tabStop: string | boolean;
1551
+ fillHeight: string | boolean;
1552
+ header: string | unknown[];
1553
+ img: string;
1554
+ link: string | boolean;
1555
+ replace: string | boolean;
1556
+ color: string;
1557
+ disabled: string | boolean;
1558
+ href: string;
1559
+ round: string | number | boolean;
1560
+ tile: string | boolean;
1561
+ to: string;
1562
+ border: string | number | boolean;
1563
+ density: string;
1564
+ loading: string | boolean;
1565
+ ripple: string | boolean;
1566
+ append: string | boolean;
1567
+ outlined: string | boolean;
1568
+ activeClass: string;
1569
+ hover: string | boolean;
1570
+ raised: string | boolean;
1571
+ minWidth: string | number;
1572
+ maxWidth: string | number;
1573
+ minHeight: string | number;
1574
+ maxHeight: string | number;
1575
+ readonly: string | boolean;
1576
+ expanded: string | boolean;
1577
+ lazyLoad: string | boolean;
1578
+ iconColor: string;
1579
+ disableActionRotate: string | boolean;
1580
+ expandButton: string | Record<string, any>;
1581
+ hideAction: string | boolean;
1582
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1583
+ export default collapseCardComponent;