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