@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,741 +1,741 @@
1
- export declare const ZdColProps: {
2
- cols: {
3
- type: (StringConstructor | NumberConstructor)[];
4
- default: string;
5
- };
6
- sm: {
7
- type: (StringConstructor | NumberConstructor)[];
8
- };
9
- md: {
10
- type: (StringConstructor | NumberConstructor)[];
11
- };
12
- lg: {
13
- type: (StringConstructor | NumberConstructor)[];
14
- };
15
- xl: {
16
- type: (StringConstructor | NumberConstructor)[];
17
- };
18
- width: {
19
- type: (StringConstructor | NumberConstructor)[];
20
- };
21
- minWidth: {
22
- type: (StringConstructor | NumberConstructor)[];
23
- default: string;
24
- };
25
- maxWidth: {
26
- type: (StringConstructor | NumberConstructor)[];
27
- default: string;
28
- };
29
- fillHeight: {
30
- type: (StringConstructor | BooleanConstructor)[];
31
- default: boolean;
32
- };
33
- height: {
34
- type: (StringConstructor | NumberConstructor)[];
35
- };
36
- minHeight: {
37
- type: (StringConstructor | NumberConstructor)[];
38
- default: string;
39
- };
40
- maxHeight: {
41
- type: (StringConstructor | NumberConstructor)[];
42
- default: string;
43
- };
44
- children: {
45
- type: (StringConstructor | {
46
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
47
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
48
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
49
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
50
- isArray(arg: any): arg is any[];
51
- readonly prototype: any[];
52
- from<T>(arrayLike: ArrayLike<T>): T[];
53
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
54
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
55
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
56
- of<T_4>(...items: T_4[]): T_4[];
57
- readonly [Symbol.species]: ArrayConstructor;
58
- })[];
59
- default(): never[];
60
- };
61
- component: {
62
- type: StringConstructor;
63
- };
64
- allowDuplicate: {
65
- type: (StringConstructor | BooleanConstructor)[];
66
- default: boolean;
67
- };
68
- autofocus: {
69
- type: (StringConstructor | BooleanConstructor)[];
70
- default: boolean;
71
- };
72
- cssClass: {
73
- type: StringConstructor;
74
- default: string;
75
- };
76
- cssStyle: {
77
- type: (StringConstructor | (() => import("vue").StyleValue))[];
78
- default: string;
79
- };
80
- dark: {
81
- type: (StringConstructor | BooleanConstructor)[];
82
- default: boolean;
83
- };
84
- directives: {
85
- type: ObjectConstructor;
86
- default(): {};
87
- };
88
- events: {
89
- type: ObjectConstructor;
90
- default(): {};
91
- };
92
- instanceObject: {
93
- type: ObjectConstructor;
94
- };
95
- isVisible: {
96
- type: (StringConstructor | BooleanConstructor)[];
97
- default: boolean;
98
- };
99
- keyMap: {
100
- type: ObjectConstructor;
101
- default(): {};
102
- };
103
- light: {
104
- type: (StringConstructor | BooleanConstructor)[];
105
- default: boolean;
106
- };
107
- name: {
108
- type: StringConstructor;
109
- required: true;
110
- };
111
- parent: {
112
- type: ObjectConstructor;
113
- };
114
- tabStop: {
115
- type: (StringConstructor | BooleanConstructor)[];
116
- default: boolean;
117
- };
118
- theme: {
119
- type: StringConstructor;
120
- };
121
- };
122
- declare const colComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
123
- cols: {
124
- type: (StringConstructor | NumberConstructor)[];
125
- default: string;
126
- };
127
- sm: {
128
- type: (StringConstructor | NumberConstructor)[];
129
- };
130
- md: {
131
- type: (StringConstructor | NumberConstructor)[];
132
- };
133
- lg: {
134
- type: (StringConstructor | NumberConstructor)[];
135
- };
136
- xl: {
137
- type: (StringConstructor | NumberConstructor)[];
138
- };
139
- width: {
140
- type: (StringConstructor | NumberConstructor)[];
141
- };
142
- minWidth: {
143
- type: (StringConstructor | NumberConstructor)[];
144
- default: string;
145
- };
146
- maxWidth: {
147
- type: (StringConstructor | NumberConstructor)[];
148
- default: string;
149
- };
150
- fillHeight: {
151
- type: (StringConstructor | BooleanConstructor)[];
152
- default: boolean;
153
- };
154
- height: {
155
- type: (StringConstructor | NumberConstructor)[];
156
- };
157
- minHeight: {
158
- type: (StringConstructor | NumberConstructor)[];
159
- default: string;
160
- };
161
- maxHeight: {
162
- type: (StringConstructor | NumberConstructor)[];
163
- default: string;
164
- };
165
- children: {
166
- type: (StringConstructor | {
167
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
168
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
169
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
170
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
171
- isArray(arg: any): arg is any[];
172
- readonly prototype: any[];
173
- from<T>(arrayLike: ArrayLike<T>): T[];
174
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
175
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
176
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
177
- of<T_4>(...items: T_4[]): T_4[];
178
- readonly [Symbol.species]: ArrayConstructor;
179
- })[];
180
- default(): never[];
181
- };
182
- component: {
183
- type: StringConstructor;
184
- };
185
- allowDuplicate: {
186
- type: (StringConstructor | BooleanConstructor)[];
187
- default: boolean;
188
- };
189
- autofocus: {
190
- type: (StringConstructor | BooleanConstructor)[];
191
- default: boolean;
192
- };
193
- cssClass: {
194
- type: StringConstructor;
195
- default: string;
196
- };
197
- cssStyle: {
198
- type: (StringConstructor | (() => import("vue").StyleValue))[];
199
- default: string;
200
- };
201
- dark: {
202
- type: (StringConstructor | BooleanConstructor)[];
203
- default: boolean;
204
- };
205
- directives: {
206
- type: ObjectConstructor;
207
- default(): {};
208
- };
209
- events: {
210
- type: ObjectConstructor;
211
- default(): {};
212
- };
213
- instanceObject: {
214
- type: ObjectConstructor;
215
- };
216
- isVisible: {
217
- type: (StringConstructor | BooleanConstructor)[];
218
- default: boolean;
219
- };
220
- keyMap: {
221
- type: ObjectConstructor;
222
- default(): {};
223
- };
224
- light: {
225
- type: (StringConstructor | BooleanConstructor)[];
226
- default: boolean;
227
- };
228
- name: {
229
- type: StringConstructor;
230
- required: true;
231
- };
232
- parent: {
233
- type: ObjectConstructor;
234
- };
235
- tabStop: {
236
- type: (StringConstructor | BooleanConstructor)[];
237
- default: boolean;
238
- };
239
- theme: {
240
- type: StringConstructor;
241
- };
242
- }>, {
243
- instance: {
244
- cols: string | number;
245
- sm?: string | number | undefined;
246
- md?: string | number | undefined;
247
- lg?: string | number | undefined;
248
- xl?: string | number | undefined;
249
- offset?: string | number | undefined;
250
- height: string | number;
251
- minHeight: string | number;
252
- maxHeight: string | number;
253
- children: {
254
- [x: string]: any;
255
- children?: any[] | undefined;
256
- component: string;
257
- allowDuplicate?: boolean | undefined;
258
- autofocus?: boolean | undefined;
259
- componentId?: number | undefined;
260
- cssClass?: string | undefined;
261
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
262
- events?: {
263
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
264
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
266
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
267
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
268
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
269
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
270
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
271
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
272
- } | undefined;
273
- directives?: {
274
- [x: string]: {
275
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
276
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
277
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
278
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
279
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
280
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
281
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
282
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
283
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
284
- } | undefined;
285
- touch?: {
286
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
287
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
288
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
289
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
- } | undefined;
296
- } | undefined;
297
- isVisible?: string | boolean | undefined;
298
- dark?: boolean | undefined;
299
- light?: boolean | undefined;
300
- theme?: string | undefined;
301
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
302
- name: string;
303
- parent?: {
304
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
305
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
306
- allowDuplicate: boolean;
307
- autofocus: boolean;
308
- children: {
309
- [x: string]: any;
310
- allowDuplicate?: boolean | undefined;
311
- autofocus?: boolean | undefined;
312
- children?: any[] | undefined;
313
- componentId?: number | undefined;
314
- cssClass?: string | undefined;
315
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
316
- events?: {
317
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
318
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
321
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
322
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
323
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
324
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
325
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
326
- } | undefined;
327
- directives?: {
328
- [x: string]: {
329
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
330
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
331
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
332
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
333
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
335
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
336
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
337
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
338
- } | undefined;
339
- touch?: {
340
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
341
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
347
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
348
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
349
- } | undefined;
350
- } | undefined;
351
- isVisible?: string | boolean | undefined;
352
- dark?: boolean | undefined;
353
- light?: boolean | undefined;
354
- theme?: string | undefined;
355
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
356
- name: string;
357
- parent?: any | undefined;
358
- tabStop?: boolean | undefined;
359
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
360
- fillHeight?: boolean | undefined;
361
- }[];
362
- componentId: number;
363
- cssClass: string;
364
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
365
- events: {
366
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
367
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
370
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
371
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
372
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
373
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
374
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
375
- };
376
- directives: {
377
- [x: string]: {
378
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
379
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
380
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
381
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
382
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
384
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
385
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
386
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
387
- } | undefined;
388
- touch?: {
389
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
390
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
391
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
392
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
393
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
394
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
395
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
- } | undefined;
399
- };
400
- isVisible: string | boolean;
401
- dark: boolean;
402
- light: boolean;
403
- theme?: string | undefined;
404
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
405
- name: string;
406
- parent?: any | undefined;
407
- tabStop: boolean;
408
- userProperties: import("@zeedhi/core").IDictionary<any>;
409
- fillHeight: boolean;
410
- } | undefined;
411
- tabStop?: boolean | undefined;
412
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
413
- fillHeight?: boolean | undefined;
414
- }[];
415
- component: string;
416
- allowDuplicate: boolean;
417
- autofocus: boolean;
418
- childrenInstances: any[];
419
- cssClass: string;
420
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
421
- directives: {
422
- [x: string]: {
423
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
424
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
425
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
426
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
427
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
428
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
429
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
430
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
431
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
432
- } | undefined;
433
- touch?: {
434
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
435
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
436
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
437
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
- } | undefined;
444
- };
445
- events: {
446
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
447
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
448
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
449
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
453
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
454
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
- };
456
- isVisible: boolean;
457
- name: string;
458
- dark: boolean;
459
- light: boolean;
460
- theme?: string | undefined;
461
- fillHeight: boolean;
462
- parent?: {
463
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
464
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
465
- allowDuplicate: boolean;
466
- autofocus: boolean;
467
- children: {
468
- [x: string]: any;
469
- allowDuplicate?: boolean | undefined;
470
- autofocus?: boolean | undefined;
471
- children?: any[] | undefined;
472
- componentId?: number | undefined;
473
- cssClass?: string | undefined;
474
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
475
- events?: {
476
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
477
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
478
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
479
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
480
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
481
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
482
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
483
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
484
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
485
- } | undefined;
486
- directives?: {
487
- [x: string]: {
488
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
489
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
494
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
495
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
496
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
497
- } | undefined;
498
- touch?: {
499
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
500
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
507
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
508
- } | undefined;
509
- } | undefined;
510
- isVisible?: string | boolean | undefined;
511
- dark?: boolean | undefined;
512
- light?: boolean | undefined;
513
- theme?: string | undefined;
514
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
515
- name: string;
516
- parent?: any | undefined;
517
- tabStop?: boolean | undefined;
518
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
519
- fillHeight?: boolean | undefined;
520
- }[];
521
- componentId: number;
522
- cssClass: string;
523
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
524
- events: {
525
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
526
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
528
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
529
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
530
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
531
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
533
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
534
- };
535
- directives: {
536
- [x: string]: {
537
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
538
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
542
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
543
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
544
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
545
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
546
- } | undefined;
547
- touch?: {
548
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
549
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
557
- } | undefined;
558
- };
559
- isVisible: string | boolean;
560
- dark: boolean;
561
- light: boolean;
562
- theme?: string | undefined;
563
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
564
- name: string;
565
- parent?: any | undefined;
566
- tabStop: boolean;
567
- userProperties: import("@zeedhi/core").IDictionary<any>;
568
- fillHeight: boolean;
569
- } | undefined;
570
- componentId: number;
571
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
572
- isFocused: boolean;
573
- tabStop: boolean;
574
- userProperties: import("@zeedhi/core").IDictionary<any>;
575
- setViewFocus: (viewFocus: () => void) => void;
576
- setFocus: () => void;
577
- callEvent: (eventName: string, args: any) => boolean;
578
- addChild: (child: import("@zeedhi/common").IComponent) => void;
579
- removeChild: (name: string) => void;
580
- getChildInstance: <T_1>(name: string) => T_1;
581
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
582
- onCreated: () => void;
583
- onBeforeMount: () => void;
584
- onMounted: (element: any) => void;
585
- onBeforeDestroy: () => void;
586
- onDestroyed: () => void;
587
- click: (event?: Event | undefined, element?: any) => void;
588
- focus: (event: Event, element: any) => void;
589
- blur: (event: Event, element: any) => void;
590
- mouseenter: (event?: Event | undefined, element?: any) => void;
591
- mouseleave: (event?: Event | undefined, element?: any) => void;
592
- mouseout: (event?: Event | undefined, element?: any) => void;
593
- mouseover: (event?: Event | undefined, element?: any) => void;
594
- };
595
- root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
596
- click: (event: Event) => void;
597
- focus: (event: Event) => void;
598
- blur: (event: Event) => void;
599
- mouseenter: (event: Event) => void;
600
- mouseleave: (event: Event) => void;
601
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
602
- cols: {
603
- type: (StringConstructor | NumberConstructor)[];
604
- default: string;
605
- };
606
- sm: {
607
- type: (StringConstructor | NumberConstructor)[];
608
- };
609
- md: {
610
- type: (StringConstructor | NumberConstructor)[];
611
- };
612
- lg: {
613
- type: (StringConstructor | NumberConstructor)[];
614
- };
615
- xl: {
616
- type: (StringConstructor | NumberConstructor)[];
617
- };
618
- width: {
619
- type: (StringConstructor | NumberConstructor)[];
620
- };
621
- minWidth: {
622
- type: (StringConstructor | NumberConstructor)[];
623
- default: string;
624
- };
625
- maxWidth: {
626
- type: (StringConstructor | NumberConstructor)[];
627
- default: string;
628
- };
629
- fillHeight: {
630
- type: (StringConstructor | BooleanConstructor)[];
631
- default: boolean;
632
- };
633
- height: {
634
- type: (StringConstructor | NumberConstructor)[];
635
- };
636
- minHeight: {
637
- type: (StringConstructor | NumberConstructor)[];
638
- default: string;
639
- };
640
- maxHeight: {
641
- type: (StringConstructor | NumberConstructor)[];
642
- default: string;
643
- };
644
- children: {
645
- type: (StringConstructor | {
646
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
647
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
648
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
649
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
650
- isArray(arg: any): arg is any[];
651
- readonly prototype: any[];
652
- from<T>(arrayLike: ArrayLike<T>): T[];
653
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
654
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
655
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
656
- of<T_4>(...items: T_4[]): T_4[];
657
- readonly [Symbol.species]: ArrayConstructor;
658
- })[];
659
- default(): never[];
660
- };
661
- component: {
662
- type: StringConstructor;
663
- };
664
- allowDuplicate: {
665
- type: (StringConstructor | BooleanConstructor)[];
666
- default: boolean;
667
- };
668
- autofocus: {
669
- type: (StringConstructor | BooleanConstructor)[];
670
- default: boolean;
671
- };
672
- cssClass: {
673
- type: StringConstructor;
674
- default: string;
675
- };
676
- cssStyle: {
677
- type: (StringConstructor | (() => import("vue").StyleValue))[];
678
- default: string;
679
- };
680
- dark: {
681
- type: (StringConstructor | BooleanConstructor)[];
682
- default: boolean;
683
- };
684
- directives: {
685
- type: ObjectConstructor;
686
- default(): {};
687
- };
688
- events: {
689
- type: ObjectConstructor;
690
- default(): {};
691
- };
692
- instanceObject: {
693
- type: ObjectConstructor;
694
- };
695
- isVisible: {
696
- type: (StringConstructor | BooleanConstructor)[];
697
- default: boolean;
698
- };
699
- keyMap: {
700
- type: ObjectConstructor;
701
- default(): {};
702
- };
703
- light: {
704
- type: (StringConstructor | BooleanConstructor)[];
705
- default: boolean;
706
- };
707
- name: {
708
- type: StringConstructor;
709
- required: true;
710
- };
711
- parent: {
712
- type: ObjectConstructor;
713
- };
714
- tabStop: {
715
- type: (StringConstructor | BooleanConstructor)[];
716
- default: boolean;
717
- };
718
- theme: {
719
- type: StringConstructor;
720
- };
721
- }>> & Readonly<{}>, {
722
- allowDuplicate: string | boolean;
723
- autofocus: string | boolean;
724
- children: string | import("@zeedhi/common").IComponentRender[];
725
- cssClass: string;
726
- cssStyle: import("vue").StyleValue;
727
- dark: string | boolean;
728
- directives: Record<string, any>;
729
- events: Record<string, any>;
730
- isVisible: string | boolean;
731
- keyMap: Record<string, any>;
732
- light: string | boolean;
733
- tabStop: string | boolean;
734
- cols: string | number;
735
- minWidth: string | number;
736
- maxWidth: string | number;
737
- fillHeight: string | boolean;
738
- minHeight: string | number;
739
- maxHeight: string | number;
740
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
741
- export default colComponent;
1
+ export declare const ZdColProps: {
2
+ cols: {
3
+ type: (NumberConstructor | StringConstructor)[];
4
+ default: string;
5
+ };
6
+ sm: {
7
+ type: (NumberConstructor | StringConstructor)[];
8
+ };
9
+ md: {
10
+ type: (NumberConstructor | StringConstructor)[];
11
+ };
12
+ lg: {
13
+ type: (NumberConstructor | StringConstructor)[];
14
+ };
15
+ xl: {
16
+ type: (NumberConstructor | StringConstructor)[];
17
+ };
18
+ width: {
19
+ type: (NumberConstructor | StringConstructor)[];
20
+ };
21
+ minWidth: {
22
+ type: (NumberConstructor | StringConstructor)[];
23
+ default: string;
24
+ };
25
+ maxWidth: {
26
+ type: (NumberConstructor | StringConstructor)[];
27
+ default: string;
28
+ };
29
+ fillHeight: {
30
+ type: (BooleanConstructor | StringConstructor)[];
31
+ default: boolean;
32
+ };
33
+ height: {
34
+ type: (NumberConstructor | StringConstructor)[];
35
+ };
36
+ minHeight: {
37
+ type: (NumberConstructor | StringConstructor)[];
38
+ default: string;
39
+ };
40
+ maxHeight: {
41
+ type: (NumberConstructor | StringConstructor)[];
42
+ default: string;
43
+ };
44
+ children: {
45
+ type: (StringConstructor | {
46
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
47
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
48
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
49
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
50
+ isArray(arg: any): arg is any[];
51
+ readonly prototype: any[];
52
+ from<T>(arrayLike: ArrayLike<T>): T[];
53
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
54
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
55
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
56
+ of<T_4>(...items: T_4[]): T_4[];
57
+ readonly [Symbol.species]: ArrayConstructor;
58
+ })[];
59
+ default(): never[];
60
+ };
61
+ component: {
62
+ type: StringConstructor;
63
+ };
64
+ allowDuplicate: {
65
+ type: (BooleanConstructor | StringConstructor)[];
66
+ default: boolean;
67
+ };
68
+ autofocus: {
69
+ type: (BooleanConstructor | StringConstructor)[];
70
+ default: boolean;
71
+ };
72
+ cssClass: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ cssStyle: {
77
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
78
+ default: string;
79
+ };
80
+ dark: {
81
+ type: (BooleanConstructor | StringConstructor)[];
82
+ default: boolean;
83
+ };
84
+ directives: {
85
+ type: ObjectConstructor;
86
+ default(): {};
87
+ };
88
+ events: {
89
+ type: ObjectConstructor;
90
+ default(): {};
91
+ };
92
+ instanceObject: {
93
+ type: ObjectConstructor;
94
+ };
95
+ isVisible: {
96
+ type: (BooleanConstructor | StringConstructor)[];
97
+ default: boolean;
98
+ };
99
+ keyMap: {
100
+ type: ObjectConstructor;
101
+ default(): {};
102
+ };
103
+ light: {
104
+ type: (BooleanConstructor | StringConstructor)[];
105
+ default: boolean;
106
+ };
107
+ name: {
108
+ type: StringConstructor;
109
+ required: true;
110
+ };
111
+ parent: {
112
+ type: ObjectConstructor;
113
+ };
114
+ tabStop: {
115
+ type: (BooleanConstructor | StringConstructor)[];
116
+ default: boolean;
117
+ };
118
+ theme: {
119
+ type: StringConstructor;
120
+ };
121
+ };
122
+ declare const colComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
123
+ cols: {
124
+ type: (NumberConstructor | StringConstructor)[];
125
+ default: string;
126
+ };
127
+ sm: {
128
+ type: (NumberConstructor | StringConstructor)[];
129
+ };
130
+ md: {
131
+ type: (NumberConstructor | StringConstructor)[];
132
+ };
133
+ lg: {
134
+ type: (NumberConstructor | StringConstructor)[];
135
+ };
136
+ xl: {
137
+ type: (NumberConstructor | StringConstructor)[];
138
+ };
139
+ width: {
140
+ type: (NumberConstructor | StringConstructor)[];
141
+ };
142
+ minWidth: {
143
+ type: (NumberConstructor | StringConstructor)[];
144
+ default: string;
145
+ };
146
+ maxWidth: {
147
+ type: (NumberConstructor | StringConstructor)[];
148
+ default: string;
149
+ };
150
+ fillHeight: {
151
+ type: (BooleanConstructor | StringConstructor)[];
152
+ default: boolean;
153
+ };
154
+ height: {
155
+ type: (NumberConstructor | StringConstructor)[];
156
+ };
157
+ minHeight: {
158
+ type: (NumberConstructor | StringConstructor)[];
159
+ default: string;
160
+ };
161
+ maxHeight: {
162
+ type: (NumberConstructor | StringConstructor)[];
163
+ default: string;
164
+ };
165
+ children: {
166
+ type: (StringConstructor | {
167
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
168
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
169
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
170
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
171
+ isArray(arg: any): arg is any[];
172
+ readonly prototype: any[];
173
+ from<T>(arrayLike: ArrayLike<T>): T[];
174
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
175
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
176
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
177
+ of<T_4>(...items: T_4[]): T_4[];
178
+ readonly [Symbol.species]: ArrayConstructor;
179
+ })[];
180
+ default(): never[];
181
+ };
182
+ component: {
183
+ type: StringConstructor;
184
+ };
185
+ allowDuplicate: {
186
+ type: (BooleanConstructor | StringConstructor)[];
187
+ default: boolean;
188
+ };
189
+ autofocus: {
190
+ type: (BooleanConstructor | StringConstructor)[];
191
+ default: boolean;
192
+ };
193
+ cssClass: {
194
+ type: StringConstructor;
195
+ default: string;
196
+ };
197
+ cssStyle: {
198
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
199
+ default: string;
200
+ };
201
+ dark: {
202
+ type: (BooleanConstructor | StringConstructor)[];
203
+ default: boolean;
204
+ };
205
+ directives: {
206
+ type: ObjectConstructor;
207
+ default(): {};
208
+ };
209
+ events: {
210
+ type: ObjectConstructor;
211
+ default(): {};
212
+ };
213
+ instanceObject: {
214
+ type: ObjectConstructor;
215
+ };
216
+ isVisible: {
217
+ type: (BooleanConstructor | StringConstructor)[];
218
+ default: boolean;
219
+ };
220
+ keyMap: {
221
+ type: ObjectConstructor;
222
+ default(): {};
223
+ };
224
+ light: {
225
+ type: (BooleanConstructor | StringConstructor)[];
226
+ default: boolean;
227
+ };
228
+ name: {
229
+ type: StringConstructor;
230
+ required: true;
231
+ };
232
+ parent: {
233
+ type: ObjectConstructor;
234
+ };
235
+ tabStop: {
236
+ type: (BooleanConstructor | StringConstructor)[];
237
+ default: boolean;
238
+ };
239
+ theme: {
240
+ type: StringConstructor;
241
+ };
242
+ }>, {
243
+ instance: {
244
+ cols: string | number;
245
+ sm?: string | number | undefined;
246
+ md?: string | number | undefined;
247
+ lg?: string | number | undefined;
248
+ xl?: string | number | undefined;
249
+ offset?: string | number | undefined;
250
+ height: string | number;
251
+ minHeight: string | number;
252
+ maxHeight: string | number;
253
+ children: {
254
+ [x: string]: any;
255
+ children?: any[] | undefined;
256
+ component: string;
257
+ allowDuplicate?: boolean | undefined;
258
+ autofocus?: boolean | undefined;
259
+ componentId?: number | undefined;
260
+ cssClass?: string | undefined;
261
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
262
+ events?: {
263
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
264
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
266
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
267
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
268
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
269
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
270
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
271
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
272
+ } | undefined;
273
+ directives?: {
274
+ [x: string]: {
275
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
276
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
277
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
278
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
279
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
280
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
281
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
282
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
283
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
284
+ } | undefined;
285
+ touch?: {
286
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
287
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
288
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
289
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
+ } | undefined;
296
+ } | undefined;
297
+ isVisible?: string | boolean | undefined;
298
+ dark?: boolean | undefined;
299
+ light?: boolean | undefined;
300
+ theme?: string | undefined;
301
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
302
+ name: string;
303
+ parent?: {
304
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
305
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
306
+ allowDuplicate: boolean;
307
+ autofocus: boolean;
308
+ children: {
309
+ [x: string]: any;
310
+ allowDuplicate?: boolean | undefined;
311
+ autofocus?: boolean | undefined;
312
+ children?: any[] | undefined;
313
+ componentId?: number | undefined;
314
+ cssClass?: string | undefined;
315
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
316
+ events?: {
317
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
318
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
321
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
322
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
323
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
324
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
325
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
326
+ } | undefined;
327
+ directives?: {
328
+ [x: string]: {
329
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
330
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
331
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
332
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
333
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
334
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
335
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
336
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
337
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
338
+ } | undefined;
339
+ touch?: {
340
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
341
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
347
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
348
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
349
+ } | undefined;
350
+ } | undefined;
351
+ isVisible?: string | boolean | undefined;
352
+ dark?: boolean | undefined;
353
+ light?: boolean | undefined;
354
+ theme?: string | undefined;
355
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
356
+ name: string;
357
+ parent?: any | undefined;
358
+ tabStop?: boolean | undefined;
359
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
360
+ fillHeight?: boolean | undefined;
361
+ }[];
362
+ componentId: number;
363
+ cssClass: string;
364
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
365
+ events: {
366
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
367
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
370
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
371
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
372
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
373
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
374
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
375
+ };
376
+ directives: {
377
+ [x: string]: {
378
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
379
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
380
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
381
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
382
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
383
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
384
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
385
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
386
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
387
+ } | undefined;
388
+ touch?: {
389
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
390
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
391
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
392
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
393
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
394
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
395
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
+ } | undefined;
399
+ };
400
+ isVisible: string | boolean;
401
+ dark: boolean;
402
+ light: boolean;
403
+ theme?: string | undefined;
404
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
405
+ name: string;
406
+ parent?: any | undefined;
407
+ tabStop: boolean;
408
+ userProperties: import("@zeedhi/core").IDictionary<any>;
409
+ fillHeight: boolean;
410
+ } | undefined;
411
+ tabStop?: boolean | undefined;
412
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
413
+ fillHeight?: boolean | undefined;
414
+ }[];
415
+ component: string;
416
+ allowDuplicate: boolean;
417
+ autofocus: boolean;
418
+ childrenInstances: any[];
419
+ cssClass: string;
420
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
421
+ directives: {
422
+ [x: string]: {
423
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
424
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
425
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
426
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
427
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
428
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
429
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
430
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
431
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
432
+ } | undefined;
433
+ touch?: {
434
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
435
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
436
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
437
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
+ } | undefined;
444
+ };
445
+ events: {
446
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
447
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
448
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
449
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
453
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
454
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
+ };
456
+ isVisible: boolean;
457
+ name: string;
458
+ dark: boolean;
459
+ light: boolean;
460
+ theme?: string | undefined;
461
+ fillHeight: boolean;
462
+ parent?: {
463
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
464
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
465
+ allowDuplicate: boolean;
466
+ autofocus: boolean;
467
+ children: {
468
+ [x: string]: any;
469
+ allowDuplicate?: boolean | undefined;
470
+ autofocus?: boolean | undefined;
471
+ children?: any[] | undefined;
472
+ componentId?: number | undefined;
473
+ cssClass?: string | undefined;
474
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
475
+ events?: {
476
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
477
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
478
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
479
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
480
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
481
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
482
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
483
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
484
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
485
+ } | undefined;
486
+ directives?: {
487
+ [x: string]: {
488
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
489
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
494
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
495
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
496
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
497
+ } | undefined;
498
+ touch?: {
499
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
500
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
507
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
508
+ } | undefined;
509
+ } | undefined;
510
+ isVisible?: string | boolean | undefined;
511
+ dark?: boolean | undefined;
512
+ light?: boolean | undefined;
513
+ theme?: string | undefined;
514
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
515
+ name: string;
516
+ parent?: any | undefined;
517
+ tabStop?: boolean | undefined;
518
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
519
+ fillHeight?: boolean | undefined;
520
+ }[];
521
+ componentId: number;
522
+ cssClass: string;
523
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
524
+ events: {
525
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
526
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
528
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
529
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
530
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
531
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
533
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
534
+ };
535
+ directives: {
536
+ [x: string]: {
537
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
538
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
542
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
543
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
544
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
545
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
546
+ } | undefined;
547
+ touch?: {
548
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
549
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
557
+ } | undefined;
558
+ };
559
+ isVisible: string | boolean;
560
+ dark: boolean;
561
+ light: boolean;
562
+ theme?: string | undefined;
563
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
564
+ name: string;
565
+ parent?: any | undefined;
566
+ tabStop: boolean;
567
+ userProperties: import("@zeedhi/core").IDictionary<any>;
568
+ fillHeight: boolean;
569
+ } | undefined;
570
+ componentId: number;
571
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
572
+ isFocused: boolean;
573
+ tabStop: boolean;
574
+ userProperties: import("@zeedhi/core").IDictionary<any>;
575
+ setViewFocus: (viewFocus: () => void) => void;
576
+ setFocus: () => void;
577
+ callEvent: (eventName: string, args: any) => boolean;
578
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
579
+ removeChild: (name: string) => void;
580
+ getChildInstance: <T_1>(name: string) => T_1;
581
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
582
+ onCreated: () => void;
583
+ onBeforeMount: () => void;
584
+ onMounted: (element: any) => void;
585
+ onBeforeDestroy: () => void;
586
+ onDestroyed: () => void;
587
+ click: (event?: Event | undefined, element?: any) => void;
588
+ focus: (event: Event, element: any) => void;
589
+ blur: (event: Event, element: any) => void;
590
+ mouseenter: (event?: Event | undefined, element?: any) => void;
591
+ mouseleave: (event?: Event | undefined, element?: any) => void;
592
+ mouseout: (event?: Event | undefined, element?: any) => void;
593
+ mouseover: (event?: Event | undefined, element?: any) => void;
594
+ };
595
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
596
+ click: (event: Event) => void;
597
+ focus: (event: Event) => void;
598
+ blur: (event: Event) => void;
599
+ mouseenter: (event: Event) => void;
600
+ mouseleave: (event: Event) => void;
601
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
602
+ cols: {
603
+ type: (NumberConstructor | StringConstructor)[];
604
+ default: string;
605
+ };
606
+ sm: {
607
+ type: (NumberConstructor | StringConstructor)[];
608
+ };
609
+ md: {
610
+ type: (NumberConstructor | StringConstructor)[];
611
+ };
612
+ lg: {
613
+ type: (NumberConstructor | StringConstructor)[];
614
+ };
615
+ xl: {
616
+ type: (NumberConstructor | StringConstructor)[];
617
+ };
618
+ width: {
619
+ type: (NumberConstructor | StringConstructor)[];
620
+ };
621
+ minWidth: {
622
+ type: (NumberConstructor | StringConstructor)[];
623
+ default: string;
624
+ };
625
+ maxWidth: {
626
+ type: (NumberConstructor | StringConstructor)[];
627
+ default: string;
628
+ };
629
+ fillHeight: {
630
+ type: (BooleanConstructor | StringConstructor)[];
631
+ default: boolean;
632
+ };
633
+ height: {
634
+ type: (NumberConstructor | StringConstructor)[];
635
+ };
636
+ minHeight: {
637
+ type: (NumberConstructor | StringConstructor)[];
638
+ default: string;
639
+ };
640
+ maxHeight: {
641
+ type: (NumberConstructor | StringConstructor)[];
642
+ default: string;
643
+ };
644
+ children: {
645
+ type: (StringConstructor | {
646
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
647
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
648
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
649
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
650
+ isArray(arg: any): arg is any[];
651
+ readonly prototype: any[];
652
+ from<T>(arrayLike: ArrayLike<T>): T[];
653
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
654
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
655
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
656
+ of<T_4>(...items: T_4[]): T_4[];
657
+ readonly [Symbol.species]: ArrayConstructor;
658
+ })[];
659
+ default(): never[];
660
+ };
661
+ component: {
662
+ type: StringConstructor;
663
+ };
664
+ allowDuplicate: {
665
+ type: (BooleanConstructor | StringConstructor)[];
666
+ default: boolean;
667
+ };
668
+ autofocus: {
669
+ type: (BooleanConstructor | StringConstructor)[];
670
+ default: boolean;
671
+ };
672
+ cssClass: {
673
+ type: StringConstructor;
674
+ default: string;
675
+ };
676
+ cssStyle: {
677
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
678
+ default: string;
679
+ };
680
+ dark: {
681
+ type: (BooleanConstructor | StringConstructor)[];
682
+ default: boolean;
683
+ };
684
+ directives: {
685
+ type: ObjectConstructor;
686
+ default(): {};
687
+ };
688
+ events: {
689
+ type: ObjectConstructor;
690
+ default(): {};
691
+ };
692
+ instanceObject: {
693
+ type: ObjectConstructor;
694
+ };
695
+ isVisible: {
696
+ type: (BooleanConstructor | StringConstructor)[];
697
+ default: boolean;
698
+ };
699
+ keyMap: {
700
+ type: ObjectConstructor;
701
+ default(): {};
702
+ };
703
+ light: {
704
+ type: (BooleanConstructor | StringConstructor)[];
705
+ default: boolean;
706
+ };
707
+ name: {
708
+ type: StringConstructor;
709
+ required: true;
710
+ };
711
+ parent: {
712
+ type: ObjectConstructor;
713
+ };
714
+ tabStop: {
715
+ type: (BooleanConstructor | StringConstructor)[];
716
+ default: boolean;
717
+ };
718
+ theme: {
719
+ type: StringConstructor;
720
+ };
721
+ }>> & Readonly<{}>, {
722
+ allowDuplicate: string | boolean;
723
+ autofocus: string | boolean;
724
+ children: string | import("@zeedhi/common").IComponentRender[];
725
+ cssClass: string;
726
+ cssStyle: import("vue").StyleValue;
727
+ dark: string | boolean;
728
+ directives: Record<string, any>;
729
+ events: Record<string, any>;
730
+ isVisible: string | boolean;
731
+ keyMap: Record<string, any>;
732
+ light: string | boolean;
733
+ tabStop: string | boolean;
734
+ fillHeight: string | boolean;
735
+ minWidth: string | number;
736
+ maxWidth: string | number;
737
+ minHeight: string | number;
738
+ maxHeight: string | number;
739
+ cols: string | number;
740
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
741
+ export default colComponent;