@zeedhi/vuetify 3.0.6 → 3.0.7

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/dist/components/index.js +275 -0
  2. package/dist/components/tek-grid/TekGrid.js +287 -0
  3. package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +201 -0
  4. package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +134 -0
  5. package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +79 -0
  6. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +416 -0
  7. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +501 -0
  8. package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +36 -0
  9. package/dist/components/tek-grid/indentation/TekGridIndentation.js +20 -0
  10. package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +101 -0
  11. package/dist/components/tek-grid/row/TekGridFooterRow.js +57 -0
  12. package/dist/components/tek-grid/row/TekGridGroupRow.js +58 -0
  13. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +56 -0
  14. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +33 -0
  15. package/dist/components/zd-alert/ZdAlert.js +112 -0
  16. package/dist/components/zd-badge/ZdBadge.js +28 -0
  17. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +55 -0
  18. package/dist/components/zd-button/ZdButton.js +230 -0
  19. package/dist/components/zd-button-group/ZdButtonGroup.js +110 -0
  20. package/dist/components/zd-card/ZdCard.js +132 -0
  21. package/dist/components/zd-carousel/ZdCarousel.js +242 -0
  22. package/dist/components/zd-checkbox/ZdCheckbox.js +35 -0
  23. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +62 -0
  24. package/dist/components/zd-chip/ZdChip.js +94 -0
  25. package/dist/components/zd-code-viewer/ZdCodeViewer.js +55 -0
  26. package/dist/components/zd-code-viewer/prism.js +14 -0
  27. package/dist/components/zd-col/ZdCol.js +45 -0
  28. package/dist/components/zd-collapse-card/ZdCollapseCard.js +85 -0
  29. package/dist/components/zd-component/ZdComponent.js +259 -0
  30. package/dist/components/zd-component/ZdComponentRender.js +14 -0
  31. package/dist/components/zd-container/ZdContainer.js +42 -0
  32. package/dist/components/zd-currency/ZdCurrency.js +24 -0
  33. package/dist/components/zd-date-input/ZdDateInput.js +247 -0
  34. package/dist/components/zd-date-range/ZdDateRange.js +251 -0
  35. package/dist/components/zd-dialog/ZdDialog.js +34 -0
  36. package/dist/components/zd-divider/ZdDivider.js +28 -0
  37. package/dist/components/zd-dropdown/ZdDropdown.js +93 -0
  38. package/dist/components/zd-footer/ZdFooter.js +77 -0
  39. package/dist/components/zd-form/ZdForm.js +85 -0
  40. package/dist/components/zd-frame/ZdFrame.js +76 -0
  41. package/dist/components/zd-frame-page/ZdFramePage.js +21 -0
  42. package/dist/components/zd-grid/ZdGrid.js +284 -0
  43. package/dist/components/zd-grid/cell/ZdGridAction.js +12 -0
  44. package/dist/components/zd-grid/cell/ZdGridCell.js +59 -0
  45. package/dist/components/zd-grid/cell/ZdGridCellContent.js +59 -0
  46. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +38 -0
  47. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +70 -0
  48. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +31 -0
  49. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +102 -0
  50. package/dist/components/zd-grid/column-header/ZdGridSort.js +32 -0
  51. package/dist/components/zd-grid/composables/grid-instance.js +12 -0
  52. package/dist/components/zd-grid/footer/ZdGridFooter.js +16 -0
  53. package/dist/components/zd-grid/helper/ZdGridHelper.js +12 -0
  54. package/dist/components/zd-grid/row/TableRow.js +25 -0
  55. package/dist/components/zd-grid/row/ZdGridRow.js +70 -0
  56. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +15 -0
  57. package/dist/components/zd-grid-editable/ZdGridEditable.js +174 -0
  58. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +135 -0
  59. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +99 -0
  60. package/dist/components/zd-header/ZdHeader.js +111 -0
  61. package/dist/components/zd-icon/ZdIcon.js +63 -0
  62. package/dist/components/zd-image/ZdImage.js +48 -0
  63. package/dist/components/zd-increment/ZdIncrement.js +38 -0
  64. package/dist/components/zd-input/ZdInput.js +164 -0
  65. package/dist/components/zd-iterable/ZdIterable.js +38 -0
  66. package/dist/components/zd-iterable/ZdIterableNoData.js +20 -0
  67. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +50 -0
  68. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +21 -0
  69. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +55 -0
  70. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +36 -0
  71. package/dist/components/zd-iterable/zd-search/ZdSearch.js +42 -0
  72. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +108 -0
  73. package/dist/components/zd-layout/ZdLayout.js +41 -0
  74. package/dist/components/zd-list/ZdList.js +84 -0
  75. package/dist/components/zd-list/ZdListGroup.js +38 -0
  76. package/dist/components/zd-list/ZdListItem.js +66 -0
  77. package/dist/components/zd-loading/ZdLoading.js +61 -0
  78. package/dist/components/zd-login/ZdLogin.js +68 -0
  79. package/dist/components/zd-login/ZdLoginButton.js +28 -0
  80. package/dist/components/zd-main/ZdMain.js +33 -0
  81. package/dist/components/zd-master-detail/ZdMasterDetail.js +48 -0
  82. package/dist/components/zd-menu/ZdMenu.js +302 -0
  83. package/dist/components/zd-menu/ZdMenuButton.js +42 -0
  84. package/dist/components/zd-menu/ZdMenuGroup.js +66 -0
  85. package/dist/components/zd-menu/ZdMenuLink.js +63 -0
  86. package/dist/components/zd-menu/ZdMenuSeparator.js +26 -0
  87. package/dist/components/zd-modal/ZdModal.js +123 -0
  88. package/dist/components/zd-modal/ZdModalCloseButton.js +36 -0
  89. package/dist/components/zd-month/ZdMonth.js +31 -0
  90. package/dist/components/zd-number-input/ZdNumberInput.js +84 -0
  91. package/dist/components/zd-password/ZdPassword.js +23 -0
  92. package/dist/components/zd-progress/ZdProgress.js +52 -0
  93. package/dist/components/zd-radio/ZdRadio.js +56 -0
  94. package/dist/components/zd-row/ZdRow.js +43 -0
  95. package/dist/components/zd-select/ZdSelect.js +191 -0
  96. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +326 -0
  97. package/dist/components/zd-svg-map/ZdSvgMap.js +211 -0
  98. package/dist/components/zd-switch/ZdSwitch.js +39 -0
  99. package/dist/components/zd-table/ZdTable.js +42 -0
  100. package/dist/components/zd-tabs/ZdTab.js +92 -0
  101. package/dist/components/zd-tabs/ZdTabItem.js +17 -0
  102. package/dist/components/zd-tabs/ZdTabs.js +84 -0
  103. package/dist/components/zd-tag/ZdTag.js +34 -0
  104. package/dist/components/zd-text/ZdText.js +35 -0
  105. package/dist/components/zd-text-input/ZdTextInput.js +174 -0
  106. package/dist/components/zd-textarea/ZdTextarea.js +76 -0
  107. package/dist/components/zd-time/ZdTime.js +159 -0
  108. package/dist/components/zd-toggleable/ZdToggleable.js +13 -0
  109. package/dist/components/zd-tooltip/ZdTooltip.js +92 -0
  110. package/dist/components/zd-tree/ZdTree.js +315 -0
  111. package/dist/components/zd-tree/ZdTreeAfterTitle.js +17 -0
  112. package/dist/components/zd-tree/ZdTreeCheckbox.js +97 -0
  113. package/dist/components/zd-tree-grid/ZdTreeGrid.js +101 -0
  114. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +81 -0
  115. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +85 -0
  116. package/dist/composables/cellSelection.js +37 -0
  117. package/dist/composables/columnDrag.js +82 -0
  118. package/dist/composables/columnResize.js +115 -0
  119. package/dist/composables/density.js +13 -0
  120. package/dist/composables/doubleClick.js +32 -0
  121. package/dist/composables/fixedColumns.js +106 -0
  122. package/dist/composables/gridColorVars.js +30 -0
  123. package/dist/composables/gridColumns.js +87 -0
  124. package/dist/composables/gridSelection.js +91 -0
  125. package/dist/composables/gridSorting.js +19 -0
  126. package/dist/composables/hasSlot.js +25 -0
  127. package/dist/composables/index.js +16 -0
  128. package/dist/composables/maska.js +36 -0
  129. package/dist/composables/tableNavigation.js +126 -0
  130. package/dist/composables/useIsMobile.js +8 -0
  131. package/dist/composables/useTableLayout.js +212 -0
  132. package/dist/composables/virtualScroll.js +92 -0
  133. package/dist/composables/watchUrl.js +14 -0
  134. package/dist/errors/index.js +3 -0
  135. package/dist/errors/not-provided.js +11 -0
  136. package/dist/errors/row-not-found.js +9 -0
  137. package/dist/errors/zeedhi-error.js +8 -0
  138. package/dist/index.js +49 -0
  139. package/dist/propsMixins/heightProps.js +17 -0
  140. package/dist/propsMixins/index.js +3 -0
  141. package/dist/propsMixins/interfaces.js +1 -0
  142. package/dist/propsMixins/widthProps.js +13 -0
  143. package/dist/utils/buildProps.js +3 -0
  144. package/dist/utils/fillHeight.js +18 -0
  145. package/dist/utils/icons/icons.js +28 -0
  146. package/dist/utils/index.js +6 -0
  147. package/dist/utils/isArrayOperation.js +4 -0
  148. package/dist/utils/logger/logger.js +7 -0
  149. package/dist/utils/mergeDictionaries.js +22 -0
  150. package/dist/utils/plugins/formatSizePlugin.js +6 -0
  151. package/dist/utils/plugins/getIconPlugin.js +11 -0
  152. package/dist/utils/plugins/index.js +4 -0
  153. package/dist/utils/plugins/styleObjectPlugin.js +13 -0
  154. package/dist/zd-vuetify.css +22578 -22810
  155. package/dist/zd-vuetify.js +9696 -13977
  156. package/package.json +8 -6
  157. package/src/components/index.ts +0 -27
  158. package/src/components/zd-date-input/ZdDateInput.ts +11 -9
  159. package/src/components/zd-date-input/ZdDateInput.vue +42 -46
  160. package/src/components/zd-date-range/ZdDateRange.ts +24 -23
  161. package/src/components/zd-date-range/ZdDateRange.vue +42 -54
  162. package/src/components/zd-month/ZdMonth.ts +0 -17
  163. package/src/components/zd-month/ZdMonth.vue +0 -1
  164. package/src/components/zd-text-input/ZdTextInput.ts +4 -0
  165. package/src/components/zd-text-input/ZdTextInput.vue +1 -0
  166. package/src/components/zd-time/ZdTime.ts +11 -50
  167. package/src/components/zd-time/ZdTime.vue +41 -29
  168. package/src/composables/index.ts +1 -1
  169. package/src/composables/useIsMobile.ts +9 -0
  170. package/src/errors/index.ts +1 -0
  171. package/src/index.ts +1 -0
  172. package/src/utils/index.ts +0 -1
  173. package/types/components/index.d.ts +80 -88
  174. package/types/components/tek-grid/TekGrid.d.ts +7258 -7258
  175. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -129
  176. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -225
  177. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -2432
  178. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -65
  179. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -9
  180. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -2920
  181. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -32
  182. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -1892
  183. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -90
  184. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -87
  185. package/types/components/tooltip-overflow/ZdTooltipOverflow.d.ts +50 -50
  186. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.d.ts +25 -25
  187. package/types/components/zd-alert/ZdAlert.d.ts +884 -884
  188. package/types/components/zd-badge/ZdBadge.d.ts +624 -624
  189. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +697 -697
  190. package/types/components/zd-button/ZdButton.d.ts +1158 -1158
  191. package/types/components/zd-button-group/ZdButtonGroup.d.ts +785 -785
  192. package/types/components/zd-card/ZdCard.d.ts +1028 -1028
  193. package/types/components/zd-carousel/ZdCarousel.d.ts +2007 -2007
  194. package/types/components/zd-checkbox/ZdCheckbox.d.ts +655 -642
  195. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +2040 -2010
  196. package/types/components/zd-chip/ZdChip.d.ts +1256 -1256
  197. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +791 -791
  198. package/types/components/zd-code-viewer/prism.d.ts +14 -14
  199. package/types/components/zd-col/ZdCol.d.ts +741 -741
  200. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +1583 -1583
  201. package/types/components/zd-component/ZdComponent.d.ts +104 -104
  202. package/types/components/zd-component/ZdComponentRender.d.ts +80 -80
  203. package/types/components/zd-container/ZdContainer.d.ts +722 -722
  204. package/types/components/zd-currency/ZdCurrency.d.ts +2068 -2024
  205. package/types/components/zd-date-input/ZdDateInput.d.ts +986 -960
  206. package/types/components/zd-date-range/ZdDateRange.d.ts +2305 -0
  207. package/types/components/zd-dialog/ZdDialog.d.ts +262 -262
  208. package/types/components/zd-divider/ZdDivider.d.ts +623 -623
  209. package/types/components/zd-dropdown/ZdDropdown.d.ts +836 -836
  210. package/types/components/zd-footer/ZdFooter.d.ts +1262 -1262
  211. package/types/components/zd-form/ZdForm.d.ts +118 -118
  212. package/types/components/zd-frame/ZdFrame.d.ts +138 -138
  213. package/types/components/zd-frame-page/ZdFramePage.d.ts +805 -805
  214. package/types/components/zd-grid/ZdGrid.d.ts +7304 -7304
  215. package/types/components/zd-grid/cell/ZdGridAction.d.ts +14 -14
  216. package/types/components/zd-grid/cell/ZdGridCell.d.ts +68 -68
  217. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +58 -58
  218. package/types/components/zd-grid/cell/ZdGridCheckbox.d.ts +53 -53
  219. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +112 -112
  220. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.d.ts +46 -46
  221. package/types/components/zd-grid/column-header/ZdGridHeaderRow.d.ts +165 -165
  222. package/types/components/zd-grid/column-header/ZdGridSort.d.ts +47 -47
  223. package/types/components/zd-grid/composables/grid-instance.d.ts +2085 -2085
  224. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +2087 -2087
  225. package/types/components/zd-grid/helper/ZdGridHelper.d.ts +16 -16
  226. package/types/components/zd-grid/row/TableRow.d.ts +34 -34
  227. package/types/components/zd-grid/row/ZdGridRow.d.ts +105 -105
  228. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +2086 -2086
  229. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +8663 -8663
  230. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +637 -637
  231. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +126 -126
  232. package/types/components/zd-header/ZdHeader.d.ts +1320 -1320
  233. package/types/components/zd-icon/ZdIcon.d.ts +383 -383
  234. package/types/components/zd-image/ZdImage.d.ts +753 -753
  235. package/types/components/zd-increment/ZdIncrement.d.ts +2113 -2069
  236. package/types/components/zd-input/ZdInput.d.ts +204 -200
  237. package/types/components/zd-iterable/ZdIterable.d.ts +130 -130
  238. package/types/components/zd-iterable/ZdIterableNoData.d.ts +2089 -2089
  239. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +1645 -1645
  240. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +1081 -1081
  241. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +2807 -2763
  242. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +1653 -1627
  243. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +792 -766
  244. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +2484 -2484
  245. package/types/components/zd-layout/ZdLayout.d.ts +647 -647
  246. package/types/components/zd-list/ZdList.d.ts +1140 -1140
  247. package/types/components/zd-list/ZdListGroup.d.ts +1332 -1332
  248. package/types/components/zd-list/ZdListItem.d.ts +848 -848
  249. package/types/components/zd-loading/ZdLoading.d.ts +350 -350
  250. package/types/components/zd-login/ZdLogin.d.ts +1072 -1072
  251. package/types/components/zd-login/ZdLoginButton.d.ts +1913 -1910
  252. package/types/components/zd-main/ZdMain.d.ts +619 -619
  253. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +684 -684
  254. package/types/components/zd-menu/ZdMenu.d.ts +4484 -4484
  255. package/types/components/zd-menu/ZdMenuButton.d.ts +1142 -1142
  256. package/types/components/zd-menu/ZdMenuGroup.d.ts +6286 -6286
  257. package/types/components/zd-menu/ZdMenuLink.d.ts +10437 -10437
  258. package/types/components/zd-menu/ZdMenuSeparator.d.ts +600 -600
  259. package/types/components/zd-modal/ZdModal.d.ts +10 -10
  260. package/types/components/zd-modal/ZdModalCloseButton.d.ts +1137 -1137
  261. package/types/components/zd-month/ZdMonth.d.ts +2260 -2217
  262. package/types/components/zd-number-input/ZdNumberInput.d.ts +2065 -2021
  263. package/types/components/zd-password/ZdPassword.d.ts +2058 -2014
  264. package/types/components/zd-progress/ZdProgress.d.ts +859 -859
  265. package/types/components/zd-radio/ZdRadio.d.ts +695 -682
  266. package/types/components/zd-row/ZdRow.d.ts +734 -734
  267. package/types/components/zd-select/ZdSelect.d.ts +321 -313
  268. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +341 -333
  269. package/types/components/zd-svg-map/ZdSvgMap.d.ts +414 -414
  270. package/types/components/zd-switch/ZdSwitch.d.ts +1948 -1918
  271. package/types/components/zd-table/ZdTable.d.ts +1092 -1092
  272. package/types/components/zd-tabs/ZdTab.d.ts +674 -674
  273. package/types/components/zd-tabs/ZdTabItem.d.ts +268 -268
  274. package/types/components/zd-tabs/ZdTabs.d.ts +929 -929
  275. package/types/components/zd-tag/ZdTag.d.ts +613 -613
  276. package/types/components/zd-text/ZdText.d.ts +670 -670
  277. package/types/components/zd-text-input/ZdTextInput.d.ts +772 -746
  278. package/types/components/zd-textarea/ZdTextarea.d.ts +903 -877
  279. package/types/components/zd-time/ZdTime.d.ts +2271 -2224
  280. package/types/components/zd-toggleable/ZdToggleable.d.ts +203 -199
  281. package/types/components/zd-tooltip/ZdTooltip.d.ts +781 -781
  282. package/types/components/zd-tree/ZdTree.d.ts +1879 -1878
  283. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +28 -26
  284. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +74 -74
  285. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +4178 -4178
  286. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +92 -92
  287. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +124 -124
  288. package/types/composables/cellSelection.d.ts +281 -281
  289. package/types/composables/columnDrag.d.ts +9 -9
  290. package/types/composables/columnResize.d.ts +18 -18
  291. package/types/composables/density.d.ts +12 -12
  292. package/types/composables/doubleClick.d.ts +6 -6
  293. package/types/composables/fixedColumns.d.ts +14 -14
  294. package/types/composables/gridColorVars.d.ts +13 -13
  295. package/types/composables/gridColumns.d.ts +285 -285
  296. package/types/composables/gridSelection.d.ts +15 -15
  297. package/types/composables/gridSorting.d.ts +17 -17
  298. package/types/composables/hasSlot.d.ts +8 -8
  299. package/types/composables/index.d.ts +16 -16
  300. package/types/composables/maska.d.ts +16 -16
  301. package/types/composables/tableNavigation.d.ts +11 -11
  302. package/types/composables/useIsMobile.d.ts +3 -0
  303. package/types/composables/useTableLayout.d.ts +25 -25
  304. package/types/composables/virtualScroll.d.ts +26 -26
  305. package/types/composables/watchUrl.d.ts +8 -8
  306. package/types/errors/index.d.ts +3 -2
  307. package/types/errors/not-provided.d.ts +7 -7
  308. package/types/errors/row-not-found.d.ts +7 -7
  309. package/types/errors/zeedhi-error.d.ts +6 -6
  310. package/types/index.d.ts +22 -21
  311. package/types/propsMixins/heightProps.d.ts +17 -17
  312. package/types/propsMixins/index.d.ts +5 -5
  313. package/types/propsMixins/interfaces.d.ts +2 -2
  314. package/types/propsMixins/widthProps.d.ts +13 -13
  315. package/types/utils/buildProps.d.ts +2 -2
  316. package/types/utils/fillHeight.d.ts +1 -1
  317. package/types/utils/icons/icons.d.ts +5 -5
  318. package/types/utils/index.d.ts +6 -7
  319. package/types/utils/isArrayOperation.d.ts +2 -2
  320. package/types/utils/logger/logger.d.ts +3 -3
  321. package/types/utils/mergeDictionaries.d.ts +3 -3
  322. package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
  323. package/types/utils/plugins/getIconPlugin.d.ts +1 -1
  324. package/types/utils/plugins/index.d.ts +4 -4
  325. package/types/utils/plugins/styleObjectPlugin.d.ts +1 -1
  326. package/.package.json +0 -52
  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,1158 +1,1158 @@
1
- import { Button } from '@zeedhi/common';
2
- import { ComponentPublicInstance, Ref, UnwrapNestedRefs } from 'vue';
3
- export declare const ZdButtonProps: {
4
- absolute: {
5
- type: (StringConstructor | BooleanConstructor)[];
6
- default: boolean;
7
- };
8
- block: {
9
- type: (StringConstructor | BooleanConstructor)[];
10
- default: boolean;
11
- };
12
- bottom: {
13
- type: (StringConstructor | BooleanConstructor)[];
14
- default: boolean;
15
- };
16
- color: {
17
- type: StringConstructor;
18
- default: string;
19
- };
20
- disabled: {
21
- type: (StringConstructor | BooleanConstructor)[];
22
- default: boolean;
23
- };
24
- fab: {
25
- type: (StringConstructor | BooleanConstructor)[];
26
- default: boolean;
27
- };
28
- fixed: {
29
- type: (StringConstructor | BooleanConstructor)[];
30
- default: boolean;
31
- };
32
- flat: {
33
- type: (StringConstructor | BooleanConstructor)[];
34
- default: boolean;
35
- };
36
- href: {
37
- type: StringConstructor;
38
- default: string;
39
- };
40
- icon: {
41
- type: (StringConstructor | BooleanConstructor)[];
42
- default: boolean;
43
- };
44
- iconName: {
45
- type: StringConstructor;
46
- default: string;
47
- };
48
- label: {
49
- type: StringConstructor;
50
- default: string;
51
- };
52
- large: {
53
- type: (StringConstructor | BooleanConstructor)[];
54
- default: boolean;
55
- };
56
- left: {
57
- type: (StringConstructor | BooleanConstructor)[];
58
- default: boolean;
59
- };
60
- outline: {
61
- type: (StringConstructor | BooleanConstructor)[];
62
- default: boolean;
63
- };
64
- reverse: {
65
- type: (StringConstructor | BooleanConstructor)[];
66
- default: boolean;
67
- };
68
- right: {
69
- type: (StringConstructor | BooleanConstructor)[];
70
- default: boolean;
71
- };
72
- round: {
73
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
74
- default: boolean;
75
- };
76
- small: {
77
- type: (StringConstructor | BooleanConstructor)[];
78
- default: boolean;
79
- };
80
- target: {
81
- type: StringConstructor;
82
- default: string;
83
- };
84
- tile: {
85
- type: (StringConstructor | BooleanConstructor)[];
86
- default: boolean;
87
- };
88
- to: {
89
- type: StringConstructor;
90
- default: string;
91
- };
92
- top: {
93
- type: (StringConstructor | BooleanConstructor)[];
94
- default: boolean;
95
- };
96
- type: {
97
- type: StringConstructor;
98
- default: string;
99
- };
100
- width: {
101
- type: (StringConstructor | NumberConstructor)[];
102
- default: string;
103
- };
104
- active: {
105
- type: (StringConstructor | BooleanConstructor)[];
106
- default: undefined;
107
- };
108
- appendIcon: {
109
- type: StringConstructor;
110
- };
111
- border: {
112
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
113
- default: boolean;
114
- };
115
- density: {
116
- type: StringConstructor;
117
- default: string;
118
- };
119
- elevation: {
120
- type: (StringConstructor | NumberConstructor)[];
121
- };
122
- loading: {
123
- type: (StringConstructor | BooleanConstructor)[];
124
- default: boolean;
125
- };
126
- position: {
127
- type: StringConstructor;
128
- };
129
- prependIcon: {
130
- type: StringConstructor;
131
- };
132
- replace: {
133
- type: (StringConstructor | BooleanConstructor)[];
134
- default: boolean;
135
- };
136
- ripple: {
137
- type: (StringConstructor | BooleanConstructor)[];
138
- default: boolean;
139
- };
140
- selectedClass: {
141
- type: StringConstructor;
142
- };
143
- size: {
144
- type: StringConstructor;
145
- };
146
- stacked: {
147
- type: (StringConstructor | BooleanConstructor)[];
148
- default: boolean;
149
- };
150
- tag: {
151
- type: StringConstructor;
152
- };
153
- variant: {
154
- type: StringConstructor;
155
- };
156
- children: {
157
- type: (StringConstructor | {
158
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
159
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
160
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
161
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
162
- isArray(arg: any): arg is any[];
163
- readonly prototype: any[];
164
- from<T>(arrayLike: ArrayLike<T>): T[];
165
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
166
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
167
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
168
- of<T_4>(...items: T_4[]): T_4[];
169
- readonly [Symbol.species]: ArrayConstructor;
170
- })[];
171
- default(): never[];
172
- };
173
- component: {
174
- type: StringConstructor;
175
- };
176
- allowDuplicate: {
177
- type: (StringConstructor | BooleanConstructor)[];
178
- default: boolean;
179
- };
180
- autofocus: {
181
- type: (StringConstructor | BooleanConstructor)[];
182
- default: boolean;
183
- };
184
- cssClass: {
185
- type: StringConstructor;
186
- default: string;
187
- };
188
- cssStyle: {
189
- type: (StringConstructor | (() => import("vue").StyleValue))[];
190
- default: string;
191
- };
192
- dark: {
193
- type: (StringConstructor | BooleanConstructor)[];
194
- default: boolean;
195
- };
196
- directives: {
197
- type: ObjectConstructor;
198
- default(): {};
199
- };
200
- events: {
201
- type: ObjectConstructor;
202
- default(): {};
203
- };
204
- instanceObject: {
205
- type: ObjectConstructor;
206
- };
207
- isVisible: {
208
- type: (StringConstructor | BooleanConstructor)[];
209
- default: boolean;
210
- };
211
- keyMap: {
212
- type: ObjectConstructor;
213
- default(): {};
214
- };
215
- light: {
216
- type: (StringConstructor | BooleanConstructor)[];
217
- default: boolean;
218
- };
219
- name: {
220
- type: StringConstructor;
221
- required: true;
222
- };
223
- parent: {
224
- type: ObjectConstructor;
225
- };
226
- tabStop: {
227
- type: (StringConstructor | BooleanConstructor)[];
228
- default: boolean;
229
- };
230
- theme: {
231
- type: StringConstructor;
232
- };
233
- };
234
- export declare function useButtonInstance<TG extends Button>({ instance, root, }: {
235
- instance: UnwrapNestedRefs<TG>;
236
- root: Ref<ComponentPublicInstance | HTMLElement | null>;
237
- }): {
238
- instance: UnwrapNestedRefs<TG>;
239
- root: Ref<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>;
240
- click: (event: Event) => void;
241
- focus: (event: Event) => void;
242
- blur: (event: Event) => void;
243
- mouseenter: (event: Event) => void;
244
- mouseleave: (event: Event) => void;
245
- mouseout: (event: Event) => void;
246
- mouseover: (event: Event) => void;
247
- getIcon: (type: 'append' | 'prepend') => string | undefined;
248
- getPosition: () => "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
249
- getSize: () => "default" | "large" | "small" | "x-small" | "x-large";
250
- getVariant: () => "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
251
- getCssPositioning: () => any;
252
- getRounded: () => "0" | "pill" | undefined;
253
- };
254
- declare const buttonComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
255
- absolute: {
256
- type: (StringConstructor | BooleanConstructor)[];
257
- default: boolean;
258
- };
259
- block: {
260
- type: (StringConstructor | BooleanConstructor)[];
261
- default: boolean;
262
- };
263
- bottom: {
264
- type: (StringConstructor | BooleanConstructor)[];
265
- default: boolean;
266
- };
267
- color: {
268
- type: StringConstructor;
269
- default: string;
270
- };
271
- disabled: {
272
- type: (StringConstructor | BooleanConstructor)[];
273
- default: boolean;
274
- };
275
- fab: {
276
- type: (StringConstructor | BooleanConstructor)[];
277
- default: boolean;
278
- };
279
- fixed: {
280
- type: (StringConstructor | BooleanConstructor)[];
281
- default: boolean;
282
- };
283
- flat: {
284
- type: (StringConstructor | BooleanConstructor)[];
285
- default: boolean;
286
- };
287
- href: {
288
- type: StringConstructor;
289
- default: string;
290
- };
291
- icon: {
292
- type: (StringConstructor | BooleanConstructor)[];
293
- default: boolean;
294
- };
295
- iconName: {
296
- type: StringConstructor;
297
- default: string;
298
- };
299
- label: {
300
- type: StringConstructor;
301
- default: string;
302
- };
303
- large: {
304
- type: (StringConstructor | BooleanConstructor)[];
305
- default: boolean;
306
- };
307
- left: {
308
- type: (StringConstructor | BooleanConstructor)[];
309
- default: boolean;
310
- };
311
- outline: {
312
- type: (StringConstructor | BooleanConstructor)[];
313
- default: boolean;
314
- };
315
- reverse: {
316
- type: (StringConstructor | BooleanConstructor)[];
317
- default: boolean;
318
- };
319
- right: {
320
- type: (StringConstructor | BooleanConstructor)[];
321
- default: boolean;
322
- };
323
- round: {
324
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
325
- default: boolean;
326
- };
327
- small: {
328
- type: (StringConstructor | BooleanConstructor)[];
329
- default: boolean;
330
- };
331
- target: {
332
- type: StringConstructor;
333
- default: string;
334
- };
335
- tile: {
336
- type: (StringConstructor | BooleanConstructor)[];
337
- default: boolean;
338
- };
339
- to: {
340
- type: StringConstructor;
341
- default: string;
342
- };
343
- top: {
344
- type: (StringConstructor | BooleanConstructor)[];
345
- default: boolean;
346
- };
347
- type: {
348
- type: StringConstructor;
349
- default: string;
350
- };
351
- width: {
352
- type: (StringConstructor | NumberConstructor)[];
353
- default: string;
354
- };
355
- active: {
356
- type: (StringConstructor | BooleanConstructor)[];
357
- default: undefined;
358
- };
359
- appendIcon: {
360
- type: StringConstructor;
361
- };
362
- border: {
363
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
364
- default: boolean;
365
- };
366
- density: {
367
- type: StringConstructor;
368
- default: string;
369
- };
370
- elevation: {
371
- type: (StringConstructor | NumberConstructor)[];
372
- };
373
- loading: {
374
- type: (StringConstructor | BooleanConstructor)[];
375
- default: boolean;
376
- };
377
- position: {
378
- type: StringConstructor;
379
- };
380
- prependIcon: {
381
- type: StringConstructor;
382
- };
383
- replace: {
384
- type: (StringConstructor | BooleanConstructor)[];
385
- default: boolean;
386
- };
387
- ripple: {
388
- type: (StringConstructor | BooleanConstructor)[];
389
- default: boolean;
390
- };
391
- selectedClass: {
392
- type: StringConstructor;
393
- };
394
- size: {
395
- type: StringConstructor;
396
- };
397
- stacked: {
398
- type: (StringConstructor | BooleanConstructor)[];
399
- default: boolean;
400
- };
401
- tag: {
402
- type: StringConstructor;
403
- };
404
- variant: {
405
- type: StringConstructor;
406
- };
407
- children: {
408
- type: (StringConstructor | {
409
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
410
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
411
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
412
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
413
- isArray(arg: any): arg is any[];
414
- readonly prototype: any[];
415
- from<T>(arrayLike: ArrayLike<T>): T[];
416
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
417
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
418
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
419
- of<T_4>(...items: T_4[]): T_4[];
420
- readonly [Symbol.species]: ArrayConstructor;
421
- })[];
422
- default(): never[];
423
- };
424
- component: {
425
- type: StringConstructor;
426
- };
427
- allowDuplicate: {
428
- type: (StringConstructor | BooleanConstructor)[];
429
- default: boolean;
430
- };
431
- autofocus: {
432
- type: (StringConstructor | BooleanConstructor)[];
433
- default: boolean;
434
- };
435
- cssClass: {
436
- type: StringConstructor;
437
- default: string;
438
- };
439
- cssStyle: {
440
- type: (StringConstructor | (() => import("vue").StyleValue))[];
441
- default: string;
442
- };
443
- dark: {
444
- type: (StringConstructor | BooleanConstructor)[];
445
- default: boolean;
446
- };
447
- directives: {
448
- type: ObjectConstructor;
449
- default(): {};
450
- };
451
- events: {
452
- type: ObjectConstructor;
453
- default(): {};
454
- };
455
- instanceObject: {
456
- type: ObjectConstructor;
457
- };
458
- isVisible: {
459
- type: (StringConstructor | BooleanConstructor)[];
460
- default: boolean;
461
- };
462
- keyMap: {
463
- type: ObjectConstructor;
464
- default(): {};
465
- };
466
- light: {
467
- type: (StringConstructor | BooleanConstructor)[];
468
- default: boolean;
469
- };
470
- name: {
471
- type: StringConstructor;
472
- required: true;
473
- };
474
- parent: {
475
- type: ObjectConstructor;
476
- };
477
- tabStop: {
478
- type: (StringConstructor | BooleanConstructor)[];
479
- default: boolean;
480
- };
481
- theme: {
482
- type: StringConstructor;
483
- };
484
- }>, {
485
- instance: {
486
- absolute: boolean;
487
- block: boolean;
488
- bottom: boolean;
489
- color: string;
490
- disabled: boolean;
491
- events: {
492
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
493
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
494
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
495
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
496
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
497
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
498
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
499
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
500
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
501
- };
502
- fab: boolean;
503
- fixed: boolean;
504
- flat: boolean;
505
- href: string;
506
- icon: boolean;
507
- iconName: string;
508
- label: string;
509
- large: boolean;
510
- left: boolean;
511
- outline: boolean;
512
- reverse: boolean;
513
- right: boolean;
514
- round: string | number | boolean;
515
- small: boolean;
516
- target: string;
517
- tile: boolean;
518
- to: string;
519
- top: boolean;
520
- type: string;
521
- width: string | number;
522
- active?: boolean | undefined;
523
- appendIcon?: string | undefined;
524
- border: string | number | boolean;
525
- density: "default" | "comfortable" | "compact";
526
- elevation?: string | number | undefined;
527
- loading: string | boolean;
528
- position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
529
- prependIcon?: string | undefined;
530
- replace: boolean;
531
- ripple: boolean;
532
- selectedClass?: string | undefined;
533
- size?: "default" | "large" | "small" | "x-small" | "x-large" | undefined;
534
- stacked: boolean;
535
- tag?: string | undefined;
536
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
537
- children: {
538
- [x: string]: any;
539
- children?: any[] | undefined;
540
- component: string;
541
- allowDuplicate?: boolean | undefined;
542
- autofocus?: boolean | undefined;
543
- componentId?: number | undefined;
544
- cssClass?: string | undefined;
545
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
546
- events?: {
547
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
548
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
- } | undefined;
557
- directives?: {
558
- [x: string]: {
559
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
560
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
- } | undefined;
569
- touch?: {
570
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
571
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
- } | undefined;
580
- } | undefined;
581
- isVisible?: string | boolean | undefined;
582
- dark?: boolean | undefined;
583
- light?: boolean | undefined;
584
- theme?: string | undefined;
585
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
586
- name: string;
587
- parent?: {
588
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
589
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
590
- allowDuplicate: boolean;
591
- autofocus: boolean;
592
- children: {
593
- [x: string]: any;
594
- allowDuplicate?: boolean | undefined;
595
- autofocus?: boolean | undefined;
596
- children?: any[] | undefined;
597
- componentId?: number | undefined;
598
- cssClass?: string | undefined;
599
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
600
- events?: {
601
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
602
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
- } | undefined;
611
- directives?: {
612
- [x: string]: {
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
- touch?: {
624
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
625
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
- } | undefined;
634
- } | undefined;
635
- isVisible?: string | boolean | undefined;
636
- dark?: boolean | undefined;
637
- light?: boolean | undefined;
638
- theme?: string | undefined;
639
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
640
- name: string;
641
- parent?: any | undefined;
642
- tabStop?: boolean | undefined;
643
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
644
- fillHeight?: boolean | undefined;
645
- }[];
646
- componentId: number;
647
- cssClass: string;
648
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
649
- events: {
650
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
651
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
655
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
656
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
- };
660
- directives: {
661
- [x: string]: {
662
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
- } | undefined;
672
- touch?: {
673
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
674
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
- } | undefined;
683
- };
684
- isVisible: string | boolean;
685
- dark: boolean;
686
- light: boolean;
687
- theme?: string | undefined;
688
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
689
- name: string;
690
- parent?: any | undefined;
691
- tabStop: boolean;
692
- userProperties: import("@zeedhi/core").IDictionary<any>;
693
- fillHeight: boolean;
694
- } | undefined;
695
- tabStop?: boolean | undefined;
696
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
697
- fillHeight?: boolean | undefined;
698
- }[];
699
- component: string;
700
- allowDuplicate: boolean;
701
- autofocus: boolean;
702
- childrenInstances: any[];
703
- cssClass: string;
704
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
705
- directives: {
706
- [x: string]: {
707
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
708
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- } | undefined;
717
- touch?: {
718
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
719
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- } | undefined;
728
- };
729
- isVisible: boolean;
730
- name: string;
731
- dark: boolean;
732
- light: boolean;
733
- theme?: string | undefined;
734
- fillHeight: boolean;
735
- parent?: {
736
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
737
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
738
- allowDuplicate: boolean;
739
- autofocus: boolean;
740
- children: {
741
- [x: string]: any;
742
- allowDuplicate?: boolean | undefined;
743
- autofocus?: boolean | undefined;
744
- children?: any[] | undefined;
745
- componentId?: number | undefined;
746
- cssClass?: string | undefined;
747
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
748
- events?: {
749
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
750
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
752
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
753
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
- } | undefined;
759
- directives?: {
760
- [x: string]: {
761
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
762
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- } | undefined;
771
- touch?: {
772
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
773
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
- } | undefined;
782
- } | undefined;
783
- isVisible?: string | boolean | undefined;
784
- dark?: boolean | undefined;
785
- light?: boolean | undefined;
786
- theme?: string | undefined;
787
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
788
- name: string;
789
- parent?: any | undefined;
790
- tabStop?: boolean | undefined;
791
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
792
- fillHeight?: boolean | undefined;
793
- }[];
794
- componentId: number;
795
- cssClass: string;
796
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
797
- events: {
798
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
799
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
803
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
804
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
805
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
806
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
- };
808
- directives: {
809
- [x: string]: {
810
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
811
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
815
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
816
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
817
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
- } | undefined;
820
- touch?: {
821
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
822
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
827
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
- } | undefined;
831
- };
832
- isVisible: string | boolean;
833
- dark: boolean;
834
- light: boolean;
835
- theme?: string | undefined;
836
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
837
- name: string;
838
- parent?: any | undefined;
839
- tabStop: boolean;
840
- userProperties: import("@zeedhi/core").IDictionary<any>;
841
- fillHeight: boolean;
842
- } | undefined;
843
- componentId: number;
844
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
845
- isFocused: boolean;
846
- tabStop: boolean;
847
- userProperties: import("@zeedhi/core").IDictionary<any>;
848
- setViewFocus: (viewFocus: () => void) => void;
849
- setFocus: () => void;
850
- callEvent: (eventName: string, args: any) => boolean;
851
- addChild: (child: import("@zeedhi/common").IComponent) => void;
852
- removeChild: (name: string) => void;
853
- getChildInstance: <T_1>(name: string) => T_1;
854
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
855
- onCreated: () => void;
856
- onBeforeMount: () => void;
857
- onMounted: (element: any) => void;
858
- onBeforeDestroy: () => void;
859
- onDestroyed: () => void;
860
- click: (event?: Event | undefined, element?: any) => void;
861
- focus: (event: Event, element: any) => void;
862
- blur: (event: Event, element: any) => void;
863
- mouseenter: (event?: Event | undefined, element?: any) => void;
864
- mouseleave: (event?: Event | undefined, element?: any) => void;
865
- mouseout: (event?: Event | undefined, element?: any) => void;
866
- mouseover: (event?: Event | undefined, element?: any) => void;
867
- };
868
- root: Readonly<import("vue").ShallowRef<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
869
- click: (event: Event) => void;
870
- focus: (event: Event) => void;
871
- blur: (event: Event) => void;
872
- mouseenter: (event: Event) => void;
873
- mouseleave: (event: Event) => void;
874
- mouseout: (event: Event) => void;
875
- mouseover: (event: Event) => void;
876
- getIcon: (type: 'append' | 'prepend') => string | undefined;
877
- getPosition: () => "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
878
- getSize: () => "default" | "large" | "small" | "x-small" | "x-large";
879
- getVariant: () => "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
880
- getCssPositioning: () => any;
881
- getRounded: () => "0" | "pill" | undefined;
882
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
883
- absolute: {
884
- type: (StringConstructor | BooleanConstructor)[];
885
- default: boolean;
886
- };
887
- block: {
888
- type: (StringConstructor | BooleanConstructor)[];
889
- default: boolean;
890
- };
891
- bottom: {
892
- type: (StringConstructor | BooleanConstructor)[];
893
- default: boolean;
894
- };
895
- color: {
896
- type: StringConstructor;
897
- default: string;
898
- };
899
- disabled: {
900
- type: (StringConstructor | BooleanConstructor)[];
901
- default: boolean;
902
- };
903
- fab: {
904
- type: (StringConstructor | BooleanConstructor)[];
905
- default: boolean;
906
- };
907
- fixed: {
908
- type: (StringConstructor | BooleanConstructor)[];
909
- default: boolean;
910
- };
911
- flat: {
912
- type: (StringConstructor | BooleanConstructor)[];
913
- default: boolean;
914
- };
915
- href: {
916
- type: StringConstructor;
917
- default: string;
918
- };
919
- icon: {
920
- type: (StringConstructor | BooleanConstructor)[];
921
- default: boolean;
922
- };
923
- iconName: {
924
- type: StringConstructor;
925
- default: string;
926
- };
927
- label: {
928
- type: StringConstructor;
929
- default: string;
930
- };
931
- large: {
932
- type: (StringConstructor | BooleanConstructor)[];
933
- default: boolean;
934
- };
935
- left: {
936
- type: (StringConstructor | BooleanConstructor)[];
937
- default: boolean;
938
- };
939
- outline: {
940
- type: (StringConstructor | BooleanConstructor)[];
941
- default: boolean;
942
- };
943
- reverse: {
944
- type: (StringConstructor | BooleanConstructor)[];
945
- default: boolean;
946
- };
947
- right: {
948
- type: (StringConstructor | BooleanConstructor)[];
949
- default: boolean;
950
- };
951
- round: {
952
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
953
- default: boolean;
954
- };
955
- small: {
956
- type: (StringConstructor | BooleanConstructor)[];
957
- default: boolean;
958
- };
959
- target: {
960
- type: StringConstructor;
961
- default: string;
962
- };
963
- tile: {
964
- type: (StringConstructor | BooleanConstructor)[];
965
- default: boolean;
966
- };
967
- to: {
968
- type: StringConstructor;
969
- default: string;
970
- };
971
- top: {
972
- type: (StringConstructor | BooleanConstructor)[];
973
- default: boolean;
974
- };
975
- type: {
976
- type: StringConstructor;
977
- default: string;
978
- };
979
- width: {
980
- type: (StringConstructor | NumberConstructor)[];
981
- default: string;
982
- };
983
- active: {
984
- type: (StringConstructor | BooleanConstructor)[];
985
- default: undefined;
986
- };
987
- appendIcon: {
988
- type: StringConstructor;
989
- };
990
- border: {
991
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
992
- default: boolean;
993
- };
994
- density: {
995
- type: StringConstructor;
996
- default: string;
997
- };
998
- elevation: {
999
- type: (StringConstructor | NumberConstructor)[];
1000
- };
1001
- loading: {
1002
- type: (StringConstructor | BooleanConstructor)[];
1003
- default: boolean;
1004
- };
1005
- position: {
1006
- type: StringConstructor;
1007
- };
1008
- prependIcon: {
1009
- type: StringConstructor;
1010
- };
1011
- replace: {
1012
- type: (StringConstructor | BooleanConstructor)[];
1013
- default: boolean;
1014
- };
1015
- ripple: {
1016
- type: (StringConstructor | BooleanConstructor)[];
1017
- default: boolean;
1018
- };
1019
- selectedClass: {
1020
- type: StringConstructor;
1021
- };
1022
- size: {
1023
- type: StringConstructor;
1024
- };
1025
- stacked: {
1026
- type: (StringConstructor | BooleanConstructor)[];
1027
- default: boolean;
1028
- };
1029
- tag: {
1030
- type: StringConstructor;
1031
- };
1032
- variant: {
1033
- type: StringConstructor;
1034
- };
1035
- children: {
1036
- type: (StringConstructor | {
1037
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1038
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1039
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1040
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1041
- isArray(arg: any): arg is any[];
1042
- readonly prototype: any[];
1043
- from<T>(arrayLike: ArrayLike<T>): T[];
1044
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1045
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1046
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1047
- of<T_4>(...items: T_4[]): T_4[];
1048
- readonly [Symbol.species]: ArrayConstructor;
1049
- })[];
1050
- default(): never[];
1051
- };
1052
- component: {
1053
- type: StringConstructor;
1054
- };
1055
- allowDuplicate: {
1056
- type: (StringConstructor | BooleanConstructor)[];
1057
- default: boolean;
1058
- };
1059
- autofocus: {
1060
- type: (StringConstructor | BooleanConstructor)[];
1061
- default: boolean;
1062
- };
1063
- cssClass: {
1064
- type: StringConstructor;
1065
- default: string;
1066
- };
1067
- cssStyle: {
1068
- type: (StringConstructor | (() => import("vue").StyleValue))[];
1069
- default: string;
1070
- };
1071
- dark: {
1072
- type: (StringConstructor | BooleanConstructor)[];
1073
- default: boolean;
1074
- };
1075
- directives: {
1076
- type: ObjectConstructor;
1077
- default(): {};
1078
- };
1079
- events: {
1080
- type: ObjectConstructor;
1081
- default(): {};
1082
- };
1083
- instanceObject: {
1084
- type: ObjectConstructor;
1085
- };
1086
- isVisible: {
1087
- type: (StringConstructor | BooleanConstructor)[];
1088
- default: boolean;
1089
- };
1090
- keyMap: {
1091
- type: ObjectConstructor;
1092
- default(): {};
1093
- };
1094
- light: {
1095
- type: (StringConstructor | BooleanConstructor)[];
1096
- default: boolean;
1097
- };
1098
- name: {
1099
- type: StringConstructor;
1100
- required: true;
1101
- };
1102
- parent: {
1103
- type: ObjectConstructor;
1104
- };
1105
- tabStop: {
1106
- type: (StringConstructor | BooleanConstructor)[];
1107
- default: boolean;
1108
- };
1109
- theme: {
1110
- type: StringConstructor;
1111
- };
1112
- }>> & Readonly<{}>, {
1113
- reverse: string | boolean;
1114
- flat: string | boolean;
1115
- allowDuplicate: string | boolean;
1116
- type: string;
1117
- autofocus: string | boolean;
1118
- children: string | import("@zeedhi/common").IComponentRender[];
1119
- cssClass: string;
1120
- cssStyle: import("vue").StyleValue;
1121
- dark: string | boolean;
1122
- directives: Record<string, any>;
1123
- events: Record<string, any>;
1124
- isVisible: string | boolean;
1125
- keyMap: Record<string, any>;
1126
- light: string | boolean;
1127
- tabStop: string | boolean;
1128
- absolute: string | boolean;
1129
- block: string | boolean;
1130
- bottom: string | boolean;
1131
- color: string;
1132
- disabled: string | boolean;
1133
- fab: string | boolean;
1134
- fixed: string | boolean;
1135
- href: string;
1136
- icon: string | boolean;
1137
- iconName: string;
1138
- label: string;
1139
- large: string | boolean;
1140
- left: string | boolean;
1141
- outline: string | boolean;
1142
- right: string | boolean;
1143
- round: string | number | boolean;
1144
- small: string | boolean;
1145
- target: string;
1146
- tile: string | boolean;
1147
- to: string;
1148
- top: string | boolean;
1149
- width: string | number;
1150
- active: string | boolean;
1151
- border: string | number | boolean;
1152
- density: string;
1153
- loading: string | boolean;
1154
- replace: string | boolean;
1155
- ripple: string | boolean;
1156
- stacked: string | boolean;
1157
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1158
- export default buttonComponent;
1
+ import { Button } from '@zeedhi/common';
2
+ import { ComponentPublicInstance, Ref, UnwrapNestedRefs } from 'vue';
3
+ export declare const ZdButtonProps: {
4
+ absolute: {
5
+ type: (BooleanConstructor | StringConstructor)[];
6
+ default: boolean;
7
+ };
8
+ block: {
9
+ type: (BooleanConstructor | StringConstructor)[];
10
+ default: boolean;
11
+ };
12
+ bottom: {
13
+ type: (BooleanConstructor | StringConstructor)[];
14
+ default: boolean;
15
+ };
16
+ color: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ disabled: {
21
+ type: (BooleanConstructor | StringConstructor)[];
22
+ default: boolean;
23
+ };
24
+ fab: {
25
+ type: (BooleanConstructor | StringConstructor)[];
26
+ default: boolean;
27
+ };
28
+ fixed: {
29
+ type: (BooleanConstructor | StringConstructor)[];
30
+ default: boolean;
31
+ };
32
+ flat: {
33
+ type: (BooleanConstructor | StringConstructor)[];
34
+ default: boolean;
35
+ };
36
+ href: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ icon: {
41
+ type: (BooleanConstructor | StringConstructor)[];
42
+ default: boolean;
43
+ };
44
+ iconName: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ label: {
49
+ type: StringConstructor;
50
+ default: string;
51
+ };
52
+ large: {
53
+ type: (BooleanConstructor | StringConstructor)[];
54
+ default: boolean;
55
+ };
56
+ left: {
57
+ type: (BooleanConstructor | StringConstructor)[];
58
+ default: boolean;
59
+ };
60
+ outline: {
61
+ type: (BooleanConstructor | StringConstructor)[];
62
+ default: boolean;
63
+ };
64
+ reverse: {
65
+ type: (BooleanConstructor | StringConstructor)[];
66
+ default: boolean;
67
+ };
68
+ right: {
69
+ type: (BooleanConstructor | StringConstructor)[];
70
+ default: boolean;
71
+ };
72
+ round: {
73
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
74
+ default: boolean;
75
+ };
76
+ small: {
77
+ type: (BooleanConstructor | StringConstructor)[];
78
+ default: boolean;
79
+ };
80
+ target: {
81
+ type: StringConstructor;
82
+ default: string;
83
+ };
84
+ tile: {
85
+ type: (BooleanConstructor | StringConstructor)[];
86
+ default: boolean;
87
+ };
88
+ to: {
89
+ type: StringConstructor;
90
+ default: string;
91
+ };
92
+ top: {
93
+ type: (BooleanConstructor | StringConstructor)[];
94
+ default: boolean;
95
+ };
96
+ type: {
97
+ type: StringConstructor;
98
+ default: string;
99
+ };
100
+ width: {
101
+ type: (NumberConstructor | StringConstructor)[];
102
+ default: string;
103
+ };
104
+ active: {
105
+ type: (BooleanConstructor | StringConstructor)[];
106
+ default: undefined;
107
+ };
108
+ appendIcon: {
109
+ type: StringConstructor;
110
+ };
111
+ border: {
112
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
113
+ default: boolean;
114
+ };
115
+ density: {
116
+ type: StringConstructor;
117
+ default: string;
118
+ };
119
+ elevation: {
120
+ type: (NumberConstructor | StringConstructor)[];
121
+ };
122
+ loading: {
123
+ type: (BooleanConstructor | StringConstructor)[];
124
+ default: boolean;
125
+ };
126
+ position: {
127
+ type: StringConstructor;
128
+ };
129
+ prependIcon: {
130
+ type: StringConstructor;
131
+ };
132
+ replace: {
133
+ type: (BooleanConstructor | StringConstructor)[];
134
+ default: boolean;
135
+ };
136
+ ripple: {
137
+ type: (BooleanConstructor | StringConstructor)[];
138
+ default: boolean;
139
+ };
140
+ selectedClass: {
141
+ type: StringConstructor;
142
+ };
143
+ size: {
144
+ type: StringConstructor;
145
+ };
146
+ stacked: {
147
+ type: (BooleanConstructor | StringConstructor)[];
148
+ default: boolean;
149
+ };
150
+ tag: {
151
+ type: StringConstructor;
152
+ };
153
+ variant: {
154
+ type: StringConstructor;
155
+ };
156
+ children: {
157
+ type: (StringConstructor | {
158
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
159
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
160
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
161
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
162
+ isArray(arg: any): arg is any[];
163
+ readonly prototype: any[];
164
+ from<T>(arrayLike: ArrayLike<T>): T[];
165
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
166
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
167
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
168
+ of<T_4>(...items: T_4[]): T_4[];
169
+ readonly [Symbol.species]: ArrayConstructor;
170
+ })[];
171
+ default(): never[];
172
+ };
173
+ component: {
174
+ type: StringConstructor;
175
+ };
176
+ allowDuplicate: {
177
+ type: (BooleanConstructor | StringConstructor)[];
178
+ default: boolean;
179
+ };
180
+ autofocus: {
181
+ type: (BooleanConstructor | StringConstructor)[];
182
+ default: boolean;
183
+ };
184
+ cssClass: {
185
+ type: StringConstructor;
186
+ default: string;
187
+ };
188
+ cssStyle: {
189
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
190
+ default: string;
191
+ };
192
+ dark: {
193
+ type: (BooleanConstructor | StringConstructor)[];
194
+ default: boolean;
195
+ };
196
+ directives: {
197
+ type: ObjectConstructor;
198
+ default(): {};
199
+ };
200
+ events: {
201
+ type: ObjectConstructor;
202
+ default(): {};
203
+ };
204
+ instanceObject: {
205
+ type: ObjectConstructor;
206
+ };
207
+ isVisible: {
208
+ type: (BooleanConstructor | StringConstructor)[];
209
+ default: boolean;
210
+ };
211
+ keyMap: {
212
+ type: ObjectConstructor;
213
+ default(): {};
214
+ };
215
+ light: {
216
+ type: (BooleanConstructor | StringConstructor)[];
217
+ default: boolean;
218
+ };
219
+ name: {
220
+ type: StringConstructor;
221
+ required: true;
222
+ };
223
+ parent: {
224
+ type: ObjectConstructor;
225
+ };
226
+ tabStop: {
227
+ type: (BooleanConstructor | StringConstructor)[];
228
+ default: boolean;
229
+ };
230
+ theme: {
231
+ type: StringConstructor;
232
+ };
233
+ };
234
+ export declare function useButtonInstance<TG extends Button>({ instance, root, }: {
235
+ instance: UnwrapNestedRefs<TG>;
236
+ root: Ref<ComponentPublicInstance | HTMLElement | null>;
237
+ }): {
238
+ instance: UnwrapNestedRefs<TG>;
239
+ root: Ref<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>;
240
+ click: (event: Event) => void;
241
+ focus: (event: Event) => void;
242
+ blur: (event: Event) => void;
243
+ mouseenter: (event: Event) => void;
244
+ mouseleave: (event: Event) => void;
245
+ mouseout: (event: Event) => void;
246
+ mouseover: (event: Event) => void;
247
+ getIcon: (type: 'append' | 'prepend') => string | undefined;
248
+ getPosition: () => "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
249
+ getSize: () => "default" | "small" | "large" | "x-small" | "x-large";
250
+ getVariant: () => "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
251
+ getCssPositioning: () => any;
252
+ getRounded: () => "0" | "pill" | undefined;
253
+ };
254
+ declare const buttonComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
255
+ absolute: {
256
+ type: (BooleanConstructor | StringConstructor)[];
257
+ default: boolean;
258
+ };
259
+ block: {
260
+ type: (BooleanConstructor | StringConstructor)[];
261
+ default: boolean;
262
+ };
263
+ bottom: {
264
+ type: (BooleanConstructor | StringConstructor)[];
265
+ default: boolean;
266
+ };
267
+ color: {
268
+ type: StringConstructor;
269
+ default: string;
270
+ };
271
+ disabled: {
272
+ type: (BooleanConstructor | StringConstructor)[];
273
+ default: boolean;
274
+ };
275
+ fab: {
276
+ type: (BooleanConstructor | StringConstructor)[];
277
+ default: boolean;
278
+ };
279
+ fixed: {
280
+ type: (BooleanConstructor | StringConstructor)[];
281
+ default: boolean;
282
+ };
283
+ flat: {
284
+ type: (BooleanConstructor | StringConstructor)[];
285
+ default: boolean;
286
+ };
287
+ href: {
288
+ type: StringConstructor;
289
+ default: string;
290
+ };
291
+ icon: {
292
+ type: (BooleanConstructor | StringConstructor)[];
293
+ default: boolean;
294
+ };
295
+ iconName: {
296
+ type: StringConstructor;
297
+ default: string;
298
+ };
299
+ label: {
300
+ type: StringConstructor;
301
+ default: string;
302
+ };
303
+ large: {
304
+ type: (BooleanConstructor | StringConstructor)[];
305
+ default: boolean;
306
+ };
307
+ left: {
308
+ type: (BooleanConstructor | StringConstructor)[];
309
+ default: boolean;
310
+ };
311
+ outline: {
312
+ type: (BooleanConstructor | StringConstructor)[];
313
+ default: boolean;
314
+ };
315
+ reverse: {
316
+ type: (BooleanConstructor | StringConstructor)[];
317
+ default: boolean;
318
+ };
319
+ right: {
320
+ type: (BooleanConstructor | StringConstructor)[];
321
+ default: boolean;
322
+ };
323
+ round: {
324
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
325
+ default: boolean;
326
+ };
327
+ small: {
328
+ type: (BooleanConstructor | StringConstructor)[];
329
+ default: boolean;
330
+ };
331
+ target: {
332
+ type: StringConstructor;
333
+ default: string;
334
+ };
335
+ tile: {
336
+ type: (BooleanConstructor | StringConstructor)[];
337
+ default: boolean;
338
+ };
339
+ to: {
340
+ type: StringConstructor;
341
+ default: string;
342
+ };
343
+ top: {
344
+ type: (BooleanConstructor | StringConstructor)[];
345
+ default: boolean;
346
+ };
347
+ type: {
348
+ type: StringConstructor;
349
+ default: string;
350
+ };
351
+ width: {
352
+ type: (NumberConstructor | StringConstructor)[];
353
+ default: string;
354
+ };
355
+ active: {
356
+ type: (BooleanConstructor | StringConstructor)[];
357
+ default: undefined;
358
+ };
359
+ appendIcon: {
360
+ type: StringConstructor;
361
+ };
362
+ border: {
363
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
364
+ default: boolean;
365
+ };
366
+ density: {
367
+ type: StringConstructor;
368
+ default: string;
369
+ };
370
+ elevation: {
371
+ type: (NumberConstructor | StringConstructor)[];
372
+ };
373
+ loading: {
374
+ type: (BooleanConstructor | StringConstructor)[];
375
+ default: boolean;
376
+ };
377
+ position: {
378
+ type: StringConstructor;
379
+ };
380
+ prependIcon: {
381
+ type: StringConstructor;
382
+ };
383
+ replace: {
384
+ type: (BooleanConstructor | StringConstructor)[];
385
+ default: boolean;
386
+ };
387
+ ripple: {
388
+ type: (BooleanConstructor | StringConstructor)[];
389
+ default: boolean;
390
+ };
391
+ selectedClass: {
392
+ type: StringConstructor;
393
+ };
394
+ size: {
395
+ type: StringConstructor;
396
+ };
397
+ stacked: {
398
+ type: (BooleanConstructor | StringConstructor)[];
399
+ default: boolean;
400
+ };
401
+ tag: {
402
+ type: StringConstructor;
403
+ };
404
+ variant: {
405
+ type: StringConstructor;
406
+ };
407
+ children: {
408
+ type: (StringConstructor | {
409
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
410
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
411
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
412
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
413
+ isArray(arg: any): arg is any[];
414
+ readonly prototype: any[];
415
+ from<T>(arrayLike: ArrayLike<T>): T[];
416
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
417
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
418
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
419
+ of<T_4>(...items: T_4[]): T_4[];
420
+ readonly [Symbol.species]: ArrayConstructor;
421
+ })[];
422
+ default(): never[];
423
+ };
424
+ component: {
425
+ type: StringConstructor;
426
+ };
427
+ allowDuplicate: {
428
+ type: (BooleanConstructor | StringConstructor)[];
429
+ default: boolean;
430
+ };
431
+ autofocus: {
432
+ type: (BooleanConstructor | StringConstructor)[];
433
+ default: boolean;
434
+ };
435
+ cssClass: {
436
+ type: StringConstructor;
437
+ default: string;
438
+ };
439
+ cssStyle: {
440
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
441
+ default: string;
442
+ };
443
+ dark: {
444
+ type: (BooleanConstructor | StringConstructor)[];
445
+ default: boolean;
446
+ };
447
+ directives: {
448
+ type: ObjectConstructor;
449
+ default(): {};
450
+ };
451
+ events: {
452
+ type: ObjectConstructor;
453
+ default(): {};
454
+ };
455
+ instanceObject: {
456
+ type: ObjectConstructor;
457
+ };
458
+ isVisible: {
459
+ type: (BooleanConstructor | StringConstructor)[];
460
+ default: boolean;
461
+ };
462
+ keyMap: {
463
+ type: ObjectConstructor;
464
+ default(): {};
465
+ };
466
+ light: {
467
+ type: (BooleanConstructor | StringConstructor)[];
468
+ default: boolean;
469
+ };
470
+ name: {
471
+ type: StringConstructor;
472
+ required: true;
473
+ };
474
+ parent: {
475
+ type: ObjectConstructor;
476
+ };
477
+ tabStop: {
478
+ type: (BooleanConstructor | StringConstructor)[];
479
+ default: boolean;
480
+ };
481
+ theme: {
482
+ type: StringConstructor;
483
+ };
484
+ }>, {
485
+ instance: {
486
+ absolute: boolean;
487
+ block: boolean;
488
+ bottom: boolean;
489
+ color: string;
490
+ disabled: boolean;
491
+ events: {
492
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
493
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
494
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
495
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
496
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
497
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
498
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
499
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
500
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
501
+ };
502
+ fab: boolean;
503
+ fixed: boolean;
504
+ flat: boolean;
505
+ href: string;
506
+ icon: boolean;
507
+ iconName: string;
508
+ label: string;
509
+ large: boolean;
510
+ left: boolean;
511
+ outline: boolean;
512
+ reverse: boolean;
513
+ right: boolean;
514
+ round: string | number | boolean;
515
+ small: boolean;
516
+ target: string;
517
+ tile: boolean;
518
+ to: string;
519
+ top: boolean;
520
+ type: string;
521
+ width: string | number;
522
+ active?: boolean | undefined;
523
+ appendIcon?: string | undefined;
524
+ border: string | number | boolean;
525
+ density: "default" | "comfortable" | "compact";
526
+ elevation?: string | number | undefined;
527
+ loading: string | boolean;
528
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
529
+ prependIcon?: string | undefined;
530
+ replace: boolean;
531
+ ripple: boolean;
532
+ selectedClass?: string | undefined;
533
+ size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
534
+ stacked: boolean;
535
+ tag?: string | undefined;
536
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
537
+ children: {
538
+ [x: string]: any;
539
+ children?: any[] | undefined;
540
+ component: string;
541
+ allowDuplicate?: boolean | undefined;
542
+ autofocus?: boolean | undefined;
543
+ componentId?: number | undefined;
544
+ cssClass?: string | undefined;
545
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
546
+ events?: {
547
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
548
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ } | undefined;
557
+ directives?: {
558
+ [x: string]: {
559
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
560
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
+ } | undefined;
569
+ touch?: {
570
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
571
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
+ } | undefined;
580
+ } | undefined;
581
+ isVisible?: string | boolean | undefined;
582
+ dark?: boolean | undefined;
583
+ light?: boolean | undefined;
584
+ theme?: string | undefined;
585
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
586
+ name: string;
587
+ parent?: {
588
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
589
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
590
+ allowDuplicate: boolean;
591
+ autofocus: boolean;
592
+ children: {
593
+ [x: string]: any;
594
+ allowDuplicate?: boolean | undefined;
595
+ autofocus?: boolean | undefined;
596
+ children?: any[] | undefined;
597
+ componentId?: number | undefined;
598
+ cssClass?: string | undefined;
599
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
600
+ events?: {
601
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
602
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
+ } | undefined;
611
+ directives?: {
612
+ [x: string]: {
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
+ touch?: {
624
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
625
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
+ } | undefined;
634
+ } | undefined;
635
+ isVisible?: string | boolean | undefined;
636
+ dark?: boolean | undefined;
637
+ light?: boolean | undefined;
638
+ theme?: string | undefined;
639
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
640
+ name: string;
641
+ parent?: any | undefined;
642
+ tabStop?: boolean | undefined;
643
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
644
+ fillHeight?: boolean | undefined;
645
+ }[];
646
+ componentId: number;
647
+ cssClass: string;
648
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
649
+ events: {
650
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
651
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
655
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
656
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
+ };
660
+ directives: {
661
+ [x: string]: {
662
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ } | undefined;
672
+ touch?: {
673
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
674
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ } | undefined;
683
+ };
684
+ isVisible: string | boolean;
685
+ dark: boolean;
686
+ light: boolean;
687
+ theme?: string | undefined;
688
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
689
+ name: string;
690
+ parent?: any | undefined;
691
+ tabStop: boolean;
692
+ userProperties: import("@zeedhi/core").IDictionary<any>;
693
+ fillHeight: boolean;
694
+ } | undefined;
695
+ tabStop?: boolean | undefined;
696
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
697
+ fillHeight?: boolean | undefined;
698
+ }[];
699
+ component: string;
700
+ allowDuplicate: boolean;
701
+ autofocus: boolean;
702
+ childrenInstances: any[];
703
+ cssClass: string;
704
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
705
+ directives: {
706
+ [x: string]: {
707
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
708
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ } | undefined;
717
+ touch?: {
718
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
719
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ } | undefined;
728
+ };
729
+ isVisible: boolean;
730
+ name: string;
731
+ dark: boolean;
732
+ light: boolean;
733
+ theme?: string | undefined;
734
+ fillHeight: boolean;
735
+ parent?: {
736
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
737
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
738
+ allowDuplicate: boolean;
739
+ autofocus: boolean;
740
+ children: {
741
+ [x: string]: any;
742
+ allowDuplicate?: boolean | undefined;
743
+ autofocus?: boolean | undefined;
744
+ children?: any[] | undefined;
745
+ componentId?: number | undefined;
746
+ cssClass?: string | undefined;
747
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
748
+ events?: {
749
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
750
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
752
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
753
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
+ } | undefined;
759
+ directives?: {
760
+ [x: string]: {
761
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
762
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ } | undefined;
771
+ touch?: {
772
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
773
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
+ } | undefined;
782
+ } | undefined;
783
+ isVisible?: string | boolean | undefined;
784
+ dark?: boolean | undefined;
785
+ light?: boolean | undefined;
786
+ theme?: string | undefined;
787
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
788
+ name: string;
789
+ parent?: any | undefined;
790
+ tabStop?: boolean | undefined;
791
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
792
+ fillHeight?: boolean | undefined;
793
+ }[];
794
+ componentId: number;
795
+ cssClass: string;
796
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
797
+ events: {
798
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
799
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
803
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
804
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
805
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
806
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
+ };
808
+ directives: {
809
+ [x: string]: {
810
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
811
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
815
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
816
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
817
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ } | undefined;
820
+ touch?: {
821
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
822
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
827
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
+ } | undefined;
831
+ };
832
+ isVisible: string | boolean;
833
+ dark: boolean;
834
+ light: boolean;
835
+ theme?: string | undefined;
836
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
837
+ name: string;
838
+ parent?: any | undefined;
839
+ tabStop: boolean;
840
+ userProperties: import("@zeedhi/core").IDictionary<any>;
841
+ fillHeight: boolean;
842
+ } | undefined;
843
+ componentId: number;
844
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
845
+ isFocused: boolean;
846
+ tabStop: boolean;
847
+ userProperties: import("@zeedhi/core").IDictionary<any>;
848
+ setViewFocus: (viewFocus: () => void) => void;
849
+ setFocus: () => void;
850
+ callEvent: (eventName: string, args: any) => boolean;
851
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
852
+ removeChild: (name: string) => void;
853
+ getChildInstance: <T_1>(name: string) => T_1;
854
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
855
+ onCreated: () => void;
856
+ onBeforeMount: () => void;
857
+ onMounted: (element: any) => void;
858
+ onBeforeDestroy: () => void;
859
+ onDestroyed: () => void;
860
+ click: (event?: Event | undefined, element?: any) => void;
861
+ focus: (event: Event, element: any) => void;
862
+ blur: (event: Event, element: any) => void;
863
+ mouseenter: (event?: Event | undefined, element?: any) => void;
864
+ mouseleave: (event?: Event | undefined, element?: any) => void;
865
+ mouseout: (event?: Event | undefined, element?: any) => void;
866
+ mouseover: (event?: Event | undefined, element?: any) => void;
867
+ };
868
+ root: Readonly<import("vue").ShallowRef<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
869
+ click: (event: Event) => void;
870
+ focus: (event: Event) => void;
871
+ blur: (event: Event) => void;
872
+ mouseenter: (event: Event) => void;
873
+ mouseleave: (event: Event) => void;
874
+ mouseout: (event: Event) => void;
875
+ mouseover: (event: Event) => void;
876
+ getIcon: (type: 'append' | 'prepend') => string | undefined;
877
+ getPosition: () => "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
878
+ getSize: () => "default" | "small" | "large" | "x-small" | "x-large";
879
+ getVariant: () => "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
880
+ getCssPositioning: () => any;
881
+ getRounded: () => "0" | "pill" | undefined;
882
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
883
+ absolute: {
884
+ type: (BooleanConstructor | StringConstructor)[];
885
+ default: boolean;
886
+ };
887
+ block: {
888
+ type: (BooleanConstructor | StringConstructor)[];
889
+ default: boolean;
890
+ };
891
+ bottom: {
892
+ type: (BooleanConstructor | StringConstructor)[];
893
+ default: boolean;
894
+ };
895
+ color: {
896
+ type: StringConstructor;
897
+ default: string;
898
+ };
899
+ disabled: {
900
+ type: (BooleanConstructor | StringConstructor)[];
901
+ default: boolean;
902
+ };
903
+ fab: {
904
+ type: (BooleanConstructor | StringConstructor)[];
905
+ default: boolean;
906
+ };
907
+ fixed: {
908
+ type: (BooleanConstructor | StringConstructor)[];
909
+ default: boolean;
910
+ };
911
+ flat: {
912
+ type: (BooleanConstructor | StringConstructor)[];
913
+ default: boolean;
914
+ };
915
+ href: {
916
+ type: StringConstructor;
917
+ default: string;
918
+ };
919
+ icon: {
920
+ type: (BooleanConstructor | StringConstructor)[];
921
+ default: boolean;
922
+ };
923
+ iconName: {
924
+ type: StringConstructor;
925
+ default: string;
926
+ };
927
+ label: {
928
+ type: StringConstructor;
929
+ default: string;
930
+ };
931
+ large: {
932
+ type: (BooleanConstructor | StringConstructor)[];
933
+ default: boolean;
934
+ };
935
+ left: {
936
+ type: (BooleanConstructor | StringConstructor)[];
937
+ default: boolean;
938
+ };
939
+ outline: {
940
+ type: (BooleanConstructor | StringConstructor)[];
941
+ default: boolean;
942
+ };
943
+ reverse: {
944
+ type: (BooleanConstructor | StringConstructor)[];
945
+ default: boolean;
946
+ };
947
+ right: {
948
+ type: (BooleanConstructor | StringConstructor)[];
949
+ default: boolean;
950
+ };
951
+ round: {
952
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
953
+ default: boolean;
954
+ };
955
+ small: {
956
+ type: (BooleanConstructor | StringConstructor)[];
957
+ default: boolean;
958
+ };
959
+ target: {
960
+ type: StringConstructor;
961
+ default: string;
962
+ };
963
+ tile: {
964
+ type: (BooleanConstructor | StringConstructor)[];
965
+ default: boolean;
966
+ };
967
+ to: {
968
+ type: StringConstructor;
969
+ default: string;
970
+ };
971
+ top: {
972
+ type: (BooleanConstructor | StringConstructor)[];
973
+ default: boolean;
974
+ };
975
+ type: {
976
+ type: StringConstructor;
977
+ default: string;
978
+ };
979
+ width: {
980
+ type: (NumberConstructor | StringConstructor)[];
981
+ default: string;
982
+ };
983
+ active: {
984
+ type: (BooleanConstructor | StringConstructor)[];
985
+ default: undefined;
986
+ };
987
+ appendIcon: {
988
+ type: StringConstructor;
989
+ };
990
+ border: {
991
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
992
+ default: boolean;
993
+ };
994
+ density: {
995
+ type: StringConstructor;
996
+ default: string;
997
+ };
998
+ elevation: {
999
+ type: (NumberConstructor | StringConstructor)[];
1000
+ };
1001
+ loading: {
1002
+ type: (BooleanConstructor | StringConstructor)[];
1003
+ default: boolean;
1004
+ };
1005
+ position: {
1006
+ type: StringConstructor;
1007
+ };
1008
+ prependIcon: {
1009
+ type: StringConstructor;
1010
+ };
1011
+ replace: {
1012
+ type: (BooleanConstructor | StringConstructor)[];
1013
+ default: boolean;
1014
+ };
1015
+ ripple: {
1016
+ type: (BooleanConstructor | StringConstructor)[];
1017
+ default: boolean;
1018
+ };
1019
+ selectedClass: {
1020
+ type: StringConstructor;
1021
+ };
1022
+ size: {
1023
+ type: StringConstructor;
1024
+ };
1025
+ stacked: {
1026
+ type: (BooleanConstructor | StringConstructor)[];
1027
+ default: boolean;
1028
+ };
1029
+ tag: {
1030
+ type: StringConstructor;
1031
+ };
1032
+ variant: {
1033
+ type: StringConstructor;
1034
+ };
1035
+ children: {
1036
+ type: (StringConstructor | {
1037
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1038
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1039
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1040
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1041
+ isArray(arg: any): arg is any[];
1042
+ readonly prototype: any[];
1043
+ from<T>(arrayLike: ArrayLike<T>): T[];
1044
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1045
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1046
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1047
+ of<T_4>(...items: T_4[]): T_4[];
1048
+ readonly [Symbol.species]: ArrayConstructor;
1049
+ })[];
1050
+ default(): never[];
1051
+ };
1052
+ component: {
1053
+ type: StringConstructor;
1054
+ };
1055
+ allowDuplicate: {
1056
+ type: (BooleanConstructor | StringConstructor)[];
1057
+ default: boolean;
1058
+ };
1059
+ autofocus: {
1060
+ type: (BooleanConstructor | StringConstructor)[];
1061
+ default: boolean;
1062
+ };
1063
+ cssClass: {
1064
+ type: StringConstructor;
1065
+ default: string;
1066
+ };
1067
+ cssStyle: {
1068
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1069
+ default: string;
1070
+ };
1071
+ dark: {
1072
+ type: (BooleanConstructor | StringConstructor)[];
1073
+ default: boolean;
1074
+ };
1075
+ directives: {
1076
+ type: ObjectConstructor;
1077
+ default(): {};
1078
+ };
1079
+ events: {
1080
+ type: ObjectConstructor;
1081
+ default(): {};
1082
+ };
1083
+ instanceObject: {
1084
+ type: ObjectConstructor;
1085
+ };
1086
+ isVisible: {
1087
+ type: (BooleanConstructor | StringConstructor)[];
1088
+ default: boolean;
1089
+ };
1090
+ keyMap: {
1091
+ type: ObjectConstructor;
1092
+ default(): {};
1093
+ };
1094
+ light: {
1095
+ type: (BooleanConstructor | StringConstructor)[];
1096
+ default: boolean;
1097
+ };
1098
+ name: {
1099
+ type: StringConstructor;
1100
+ required: true;
1101
+ };
1102
+ parent: {
1103
+ type: ObjectConstructor;
1104
+ };
1105
+ tabStop: {
1106
+ type: (BooleanConstructor | StringConstructor)[];
1107
+ default: boolean;
1108
+ };
1109
+ theme: {
1110
+ type: StringConstructor;
1111
+ };
1112
+ }>> & Readonly<{}>, {
1113
+ iconName: string;
1114
+ reverse: string | boolean;
1115
+ flat: string | boolean;
1116
+ allowDuplicate: string | boolean;
1117
+ type: string;
1118
+ autofocus: string | boolean;
1119
+ children: string | import("@zeedhi/common").IComponentRender[];
1120
+ cssClass: string;
1121
+ cssStyle: import("vue").StyleValue;
1122
+ dark: string | boolean;
1123
+ directives: Record<string, any>;
1124
+ events: Record<string, any>;
1125
+ isVisible: string | boolean;
1126
+ keyMap: Record<string, any>;
1127
+ light: string | boolean;
1128
+ tabStop: string | boolean;
1129
+ label: string;
1130
+ small: string | boolean;
1131
+ replace: string | boolean;
1132
+ fixed: string | boolean;
1133
+ absolute: string | boolean;
1134
+ block: string | boolean;
1135
+ bottom: string | boolean;
1136
+ color: string;
1137
+ disabled: string | boolean;
1138
+ fab: string | boolean;
1139
+ href: string;
1140
+ icon: string | boolean;
1141
+ large: string | boolean;
1142
+ left: string | boolean;
1143
+ outline: string | boolean;
1144
+ right: string | boolean;
1145
+ round: string | number | boolean;
1146
+ target: string;
1147
+ tile: string | boolean;
1148
+ to: string;
1149
+ top: string | boolean;
1150
+ width: string | number;
1151
+ active: string | boolean;
1152
+ border: string | number | boolean;
1153
+ density: string;
1154
+ loading: string | boolean;
1155
+ ripple: string | boolean;
1156
+ stacked: string | boolean;
1157
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1158
+ export default buttonComponent;