@zeedhi/vuetify 3.0.6 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. package/.package.json +11 -9
  2. package/dist/components/index.js +275 -0
  3. package/dist/components/tek-grid/TekGrid.js +287 -0
  4. package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +201 -0
  5. package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +134 -0
  6. package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +79 -0
  7. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +416 -0
  8. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +501 -0
  9. package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +36 -0
  10. package/dist/components/tek-grid/indentation/TekGridIndentation.js +20 -0
  11. package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +101 -0
  12. package/dist/components/tek-grid/row/TekGridFooterRow.js +57 -0
  13. package/dist/components/tek-grid/row/TekGridGroupRow.js +58 -0
  14. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +56 -0
  15. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +33 -0
  16. package/dist/components/zd-alert/ZdAlert.js +112 -0
  17. package/dist/components/zd-badge/ZdBadge.js +28 -0
  18. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +55 -0
  19. package/dist/components/zd-button/ZdButton.js +230 -0
  20. package/dist/components/zd-button-group/ZdButtonGroup.js +110 -0
  21. package/dist/components/zd-card/ZdCard.js +132 -0
  22. package/dist/components/zd-carousel/ZdCarousel.js +242 -0
  23. package/dist/components/zd-checkbox/ZdCheckbox.js +35 -0
  24. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +62 -0
  25. package/dist/components/zd-chip/ZdChip.js +94 -0
  26. package/dist/components/zd-code-viewer/ZdCodeViewer.js +55 -0
  27. package/dist/components/zd-code-viewer/prism.js +14 -0
  28. package/dist/components/zd-col/ZdCol.js +45 -0
  29. package/dist/components/zd-collapse-card/ZdCollapseCard.js +85 -0
  30. package/dist/components/zd-component/ZdComponent.js +259 -0
  31. package/dist/components/zd-component/ZdComponentRender.js +14 -0
  32. package/dist/components/zd-container/ZdContainer.js +42 -0
  33. package/dist/components/zd-currency/ZdCurrency.js +24 -0
  34. package/dist/components/zd-date-input/ZdDateInput.js +247 -0
  35. package/dist/components/zd-date-range/ZdDateRange.js +251 -0
  36. package/dist/components/zd-dialog/ZdDialog.js +34 -0
  37. package/dist/components/zd-divider/ZdDivider.js +28 -0
  38. package/dist/components/zd-dropdown/ZdDropdown.js +93 -0
  39. package/dist/components/zd-footer/ZdFooter.js +77 -0
  40. package/dist/components/zd-form/ZdForm.js +85 -0
  41. package/dist/components/zd-frame/ZdFrame.js +76 -0
  42. package/dist/components/zd-frame-page/ZdFramePage.js +21 -0
  43. package/dist/components/zd-grid/ZdGrid.js +284 -0
  44. package/dist/components/zd-grid/cell/ZdGridAction.js +12 -0
  45. package/dist/components/zd-grid/cell/ZdGridCell.js +59 -0
  46. package/dist/components/zd-grid/cell/ZdGridCellContent.js +59 -0
  47. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +38 -0
  48. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +70 -0
  49. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +31 -0
  50. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +102 -0
  51. package/dist/components/zd-grid/column-header/ZdGridSort.js +32 -0
  52. package/dist/components/zd-grid/composables/grid-instance.js +12 -0
  53. package/dist/components/zd-grid/footer/ZdGridFooter.js +16 -0
  54. package/dist/components/zd-grid/helper/ZdGridHelper.js +12 -0
  55. package/dist/components/zd-grid/row/TableRow.js +25 -0
  56. package/dist/components/zd-grid/row/ZdGridRow.js +70 -0
  57. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +15 -0
  58. package/dist/components/zd-grid-editable/ZdGridEditable.js +174 -0
  59. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +135 -0
  60. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +99 -0
  61. package/dist/components/zd-header/ZdHeader.js +111 -0
  62. package/dist/components/zd-icon/ZdIcon.js +63 -0
  63. package/dist/components/zd-image/ZdImage.js +48 -0
  64. package/dist/components/zd-increment/ZdIncrement.js +38 -0
  65. package/dist/components/zd-input/ZdInput.js +164 -0
  66. package/dist/components/zd-iterable/ZdIterable.js +38 -0
  67. package/dist/components/zd-iterable/ZdIterableNoData.js +20 -0
  68. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +50 -0
  69. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +21 -0
  70. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +55 -0
  71. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +36 -0
  72. package/dist/components/zd-iterable/zd-search/ZdSearch.js +42 -0
  73. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +108 -0
  74. package/dist/components/zd-layout/ZdLayout.js +41 -0
  75. package/dist/components/zd-list/ZdList.js +84 -0
  76. package/dist/components/zd-list/ZdListGroup.js +38 -0
  77. package/dist/components/zd-list/ZdListItem.js +66 -0
  78. package/dist/components/zd-loading/ZdLoading.js +61 -0
  79. package/dist/components/zd-login/ZdLogin.js +68 -0
  80. package/dist/components/zd-login/ZdLoginButton.js +28 -0
  81. package/dist/components/zd-main/ZdMain.js +33 -0
  82. package/dist/components/zd-master-detail/ZdMasterDetail.js +48 -0
  83. package/dist/components/zd-menu/ZdMenu.js +302 -0
  84. package/dist/components/zd-menu/ZdMenuButton.js +42 -0
  85. package/dist/components/zd-menu/ZdMenuGroup.js +66 -0
  86. package/dist/components/zd-menu/ZdMenuLink.js +63 -0
  87. package/dist/components/zd-menu/ZdMenuSeparator.js +26 -0
  88. package/dist/components/zd-modal/ZdModal.js +123 -0
  89. package/dist/components/zd-modal/ZdModalCloseButton.js +36 -0
  90. package/dist/components/zd-month/ZdMonth.js +31 -0
  91. package/dist/components/zd-number-input/ZdNumberInput.js +84 -0
  92. package/dist/components/zd-password/ZdPassword.js +23 -0
  93. package/dist/components/zd-progress/ZdProgress.js +52 -0
  94. package/dist/components/zd-radio/ZdRadio.js +56 -0
  95. package/dist/components/zd-row/ZdRow.js +43 -0
  96. package/dist/components/zd-select/ZdSelect.js +191 -0
  97. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +326 -0
  98. package/dist/components/zd-svg-map/ZdSvgMap.js +211 -0
  99. package/dist/components/zd-switch/ZdSwitch.js +39 -0
  100. package/dist/components/zd-table/ZdTable.js +42 -0
  101. package/dist/components/zd-tabs/ZdTab.js +92 -0
  102. package/dist/components/zd-tabs/ZdTabItem.js +17 -0
  103. package/dist/components/zd-tabs/ZdTabs.js +84 -0
  104. package/dist/components/zd-tag/ZdTag.js +34 -0
  105. package/dist/components/zd-text/ZdText.js +35 -0
  106. package/dist/components/zd-text-input/ZdTextInput.js +174 -0
  107. package/dist/components/zd-textarea/ZdTextarea.js +76 -0
  108. package/dist/components/zd-time/ZdTime.js +159 -0
  109. package/dist/components/zd-toggleable/ZdToggleable.js +13 -0
  110. package/dist/components/zd-tooltip/ZdTooltip.js +92 -0
  111. package/dist/components/zd-tree/ZdTree.js +315 -0
  112. package/dist/components/zd-tree/ZdTreeAfterTitle.js +17 -0
  113. package/dist/components/zd-tree/ZdTreeCheckbox.js +97 -0
  114. package/dist/components/zd-tree-grid/ZdTreeGrid.js +101 -0
  115. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +81 -0
  116. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +85 -0
  117. package/dist/composables/cellSelection.js +37 -0
  118. package/dist/composables/columnDrag.js +82 -0
  119. package/dist/composables/columnResize.js +115 -0
  120. package/dist/composables/density.js +13 -0
  121. package/dist/composables/doubleClick.js +32 -0
  122. package/dist/composables/fixedColumns.js +106 -0
  123. package/dist/composables/gridColorVars.js +30 -0
  124. package/dist/composables/gridColumns.js +87 -0
  125. package/dist/composables/gridSelection.js +91 -0
  126. package/dist/composables/gridSorting.js +19 -0
  127. package/dist/composables/hasSlot.js +25 -0
  128. package/dist/composables/index.js +16 -0
  129. package/dist/composables/maska.js +36 -0
  130. package/dist/composables/tableNavigation.js +126 -0
  131. package/dist/composables/useIsMobile.js +8 -0
  132. package/dist/composables/useTableLayout.js +212 -0
  133. package/dist/composables/virtualScroll.js +92 -0
  134. package/dist/composables/watchUrl.js +14 -0
  135. package/dist/errors/index.js +3 -0
  136. package/dist/errors/not-provided.js +11 -0
  137. package/dist/errors/row-not-found.js +9 -0
  138. package/dist/errors/zeedhi-error.js +8 -0
  139. package/dist/index.js +49 -0
  140. package/dist/propsMixins/heightProps.js +17 -0
  141. package/dist/propsMixins/index.js +3 -0
  142. package/dist/propsMixins/interfaces.js +1 -0
  143. package/dist/propsMixins/widthProps.js +13 -0
  144. package/dist/utils/buildProps.js +3 -0
  145. package/dist/utils/fillHeight.js +18 -0
  146. package/dist/utils/icons/icons.js +28 -0
  147. package/dist/utils/index.js +6 -0
  148. package/dist/utils/isArrayOperation.js +4 -0
  149. package/dist/utils/logger/logger.js +7 -0
  150. package/dist/utils/mergeDictionaries.js +22 -0
  151. package/dist/utils/plugins/formatSizePlugin.js +6 -0
  152. package/dist/utils/plugins/getIconPlugin.js +11 -0
  153. package/dist/utils/plugins/index.js +4 -0
  154. package/dist/utils/plugins/styleObjectPlugin.js +13 -0
  155. package/dist/zd-vuetify.css +22062 -22295
  156. package/dist/zd-vuetify.js +9696 -13977
  157. package/package.json +8 -6
  158. package/src/components/index.ts +0 -27
  159. package/src/components/zd-date-input/ZdDateInput.ts +11 -9
  160. package/src/components/zd-date-input/ZdDateInput.vue +42 -46
  161. package/src/components/zd-date-range/ZdDateRange.ts +24 -23
  162. package/src/components/zd-date-range/ZdDateRange.vue +42 -54
  163. package/src/components/zd-month/ZdMonth.ts +0 -17
  164. package/src/components/zd-month/ZdMonth.vue +0 -1
  165. package/src/components/zd-text-input/ZdTextInput.ts +4 -0
  166. package/src/components/zd-text-input/ZdTextInput.vue +1 -0
  167. package/src/components/zd-time/ZdTime.ts +11 -50
  168. package/src/components/zd-time/ZdTime.vue +41 -29
  169. package/src/composables/index.ts +1 -1
  170. package/src/composables/useIsMobile.ts +9 -0
  171. package/src/errors/index.ts +1 -0
  172. package/src/index.ts +1 -0
  173. package/src/utils/index.ts +0 -1
  174. package/types/components/index.d.ts +80 -88
  175. package/types/components/tek-grid/TekGrid.d.ts +7258 -7258
  176. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -129
  177. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -225
  178. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -2432
  179. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -65
  180. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -9
  181. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -2920
  182. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -32
  183. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -1892
  184. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -90
  185. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -87
  186. package/types/components/tooltip-overflow/ZdTooltipOverflow.d.ts +50 -50
  187. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.d.ts +25 -25
  188. package/types/components/zd-alert/ZdAlert.d.ts +884 -884
  189. package/types/components/zd-badge/ZdBadge.d.ts +624 -624
  190. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +697 -697
  191. package/types/components/zd-button/ZdButton.d.ts +1158 -1158
  192. package/types/components/zd-button-group/ZdButtonGroup.d.ts +785 -785
  193. package/types/components/zd-card/ZdCard.d.ts +1028 -1028
  194. package/types/components/zd-carousel/ZdCarousel.d.ts +2007 -2007
  195. package/types/components/zd-checkbox/ZdCheckbox.d.ts +655 -642
  196. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +2040 -2010
  197. package/types/components/zd-chip/ZdChip.d.ts +1256 -1256
  198. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +791 -791
  199. package/types/components/zd-code-viewer/prism.d.ts +14 -14
  200. package/types/components/zd-col/ZdCol.d.ts +741 -741
  201. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +1583 -1583
  202. package/types/components/zd-component/ZdComponent.d.ts +104 -104
  203. package/types/components/zd-component/ZdComponentRender.d.ts +80 -80
  204. package/types/components/zd-container/ZdContainer.d.ts +722 -722
  205. package/types/components/zd-currency/ZdCurrency.d.ts +2068 -2024
  206. package/types/components/zd-date-input/ZdDateInput.d.ts +986 -960
  207. package/types/components/zd-date-range/ZdDateRange.d.ts +2305 -0
  208. package/types/components/zd-dialog/ZdDialog.d.ts +262 -262
  209. package/types/components/zd-divider/ZdDivider.d.ts +623 -623
  210. package/types/components/zd-dropdown/ZdDropdown.d.ts +836 -836
  211. package/types/components/zd-footer/ZdFooter.d.ts +1262 -1262
  212. package/types/components/zd-form/ZdForm.d.ts +118 -118
  213. package/types/components/zd-frame/ZdFrame.d.ts +138 -138
  214. package/types/components/zd-frame-page/ZdFramePage.d.ts +805 -805
  215. package/types/components/zd-grid/ZdGrid.d.ts +7304 -7304
  216. package/types/components/zd-grid/cell/ZdGridAction.d.ts +14 -14
  217. package/types/components/zd-grid/cell/ZdGridCell.d.ts +68 -68
  218. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +58 -58
  219. package/types/components/zd-grid/cell/ZdGridCheckbox.d.ts +53 -53
  220. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +112 -112
  221. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.d.ts +46 -46
  222. package/types/components/zd-grid/column-header/ZdGridHeaderRow.d.ts +165 -165
  223. package/types/components/zd-grid/column-header/ZdGridSort.d.ts +47 -47
  224. package/types/components/zd-grid/composables/grid-instance.d.ts +2085 -2085
  225. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +2087 -2087
  226. package/types/components/zd-grid/helper/ZdGridHelper.d.ts +16 -16
  227. package/types/components/zd-grid/row/TableRow.d.ts +34 -34
  228. package/types/components/zd-grid/row/ZdGridRow.d.ts +105 -105
  229. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +2086 -2086
  230. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +8663 -8663
  231. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +637 -637
  232. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +126 -126
  233. package/types/components/zd-header/ZdHeader.d.ts +1320 -1320
  234. package/types/components/zd-icon/ZdIcon.d.ts +383 -383
  235. package/types/components/zd-image/ZdImage.d.ts +753 -753
  236. package/types/components/zd-increment/ZdIncrement.d.ts +2113 -2069
  237. package/types/components/zd-input/ZdInput.d.ts +204 -200
  238. package/types/components/zd-iterable/ZdIterable.d.ts +130 -130
  239. package/types/components/zd-iterable/ZdIterableNoData.d.ts +2089 -2089
  240. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +1645 -1645
  241. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +1081 -1081
  242. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +2807 -2763
  243. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +1653 -1627
  244. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +792 -766
  245. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +2484 -2484
  246. package/types/components/zd-layout/ZdLayout.d.ts +647 -647
  247. package/types/components/zd-list/ZdList.d.ts +1140 -1140
  248. package/types/components/zd-list/ZdListGroup.d.ts +1332 -1332
  249. package/types/components/zd-list/ZdListItem.d.ts +848 -848
  250. package/types/components/zd-loading/ZdLoading.d.ts +350 -350
  251. package/types/components/zd-login/ZdLogin.d.ts +1072 -1072
  252. package/types/components/zd-login/ZdLoginButton.d.ts +1913 -1910
  253. package/types/components/zd-main/ZdMain.d.ts +619 -619
  254. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +684 -684
  255. package/types/components/zd-menu/ZdMenu.d.ts +4484 -4484
  256. package/types/components/zd-menu/ZdMenuButton.d.ts +1142 -1142
  257. package/types/components/zd-menu/ZdMenuGroup.d.ts +6286 -6286
  258. package/types/components/zd-menu/ZdMenuLink.d.ts +10437 -10437
  259. package/types/components/zd-menu/ZdMenuSeparator.d.ts +600 -600
  260. package/types/components/zd-modal/ZdModal.d.ts +10 -10
  261. package/types/components/zd-modal/ZdModalCloseButton.d.ts +1137 -1137
  262. package/types/components/zd-month/ZdMonth.d.ts +2260 -2217
  263. package/types/components/zd-number-input/ZdNumberInput.d.ts +2065 -2021
  264. package/types/components/zd-password/ZdPassword.d.ts +2058 -2014
  265. package/types/components/zd-progress/ZdProgress.d.ts +859 -859
  266. package/types/components/zd-radio/ZdRadio.d.ts +695 -682
  267. package/types/components/zd-row/ZdRow.d.ts +734 -734
  268. package/types/components/zd-select/ZdSelect.d.ts +321 -313
  269. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +341 -333
  270. package/types/components/zd-svg-map/ZdSvgMap.d.ts +414 -414
  271. package/types/components/zd-switch/ZdSwitch.d.ts +1948 -1918
  272. package/types/components/zd-table/ZdTable.d.ts +1092 -1092
  273. package/types/components/zd-tabs/ZdTab.d.ts +674 -674
  274. package/types/components/zd-tabs/ZdTabItem.d.ts +268 -268
  275. package/types/components/zd-tabs/ZdTabs.d.ts +929 -929
  276. package/types/components/zd-tag/ZdTag.d.ts +613 -613
  277. package/types/components/zd-text/ZdText.d.ts +670 -670
  278. package/types/components/zd-text-input/ZdTextInput.d.ts +772 -746
  279. package/types/components/zd-textarea/ZdTextarea.d.ts +903 -877
  280. package/types/components/zd-time/ZdTime.d.ts +2271 -2224
  281. package/types/components/zd-toggleable/ZdToggleable.d.ts +203 -199
  282. package/types/components/zd-tooltip/ZdTooltip.d.ts +781 -781
  283. package/types/components/zd-tree/ZdTree.d.ts +1879 -1878
  284. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +28 -26
  285. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +74 -74
  286. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +4178 -4178
  287. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +92 -92
  288. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +124 -124
  289. package/types/composables/cellSelection.d.ts +281 -281
  290. package/types/composables/columnDrag.d.ts +9 -9
  291. package/types/composables/columnResize.d.ts +18 -18
  292. package/types/composables/density.d.ts +12 -12
  293. package/types/composables/doubleClick.d.ts +6 -6
  294. package/types/composables/fixedColumns.d.ts +14 -14
  295. package/types/composables/gridColorVars.d.ts +13 -13
  296. package/types/composables/gridColumns.d.ts +285 -285
  297. package/types/composables/gridSelection.d.ts +15 -15
  298. package/types/composables/gridSorting.d.ts +17 -17
  299. package/types/composables/hasSlot.d.ts +8 -8
  300. package/types/composables/index.d.ts +16 -16
  301. package/types/composables/maska.d.ts +16 -16
  302. package/types/composables/tableNavigation.d.ts +11 -11
  303. package/types/composables/useIsMobile.d.ts +3 -0
  304. package/types/composables/useTableLayout.d.ts +25 -25
  305. package/types/composables/virtualScroll.d.ts +26 -26
  306. package/types/composables/watchUrl.d.ts +8 -8
  307. package/types/errors/index.d.ts +3 -2
  308. package/types/errors/not-provided.d.ts +7 -7
  309. package/types/errors/row-not-found.d.ts +7 -7
  310. package/types/errors/zeedhi-error.d.ts +6 -6
  311. package/types/index.d.ts +22 -21
  312. package/types/propsMixins/heightProps.d.ts +17 -17
  313. package/types/propsMixins/index.d.ts +5 -5
  314. package/types/propsMixins/interfaces.d.ts +2 -2
  315. package/types/propsMixins/widthProps.d.ts +13 -13
  316. package/types/utils/buildProps.d.ts +2 -2
  317. package/types/utils/fillHeight.d.ts +1 -1
  318. package/types/utils/icons/icons.d.ts +5 -5
  319. package/types/utils/index.d.ts +6 -7
  320. package/types/utils/isArrayOperation.d.ts +2 -2
  321. package/types/utils/logger/logger.d.ts +3 -3
  322. package/types/utils/mergeDictionaries.d.ts +3 -3
  323. package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
  324. package/types/utils/plugins/getIconPlugin.d.ts +1 -1
  325. package/types/utils/plugins/index.d.ts +4 -4
  326. package/types/utils/plugins/styleObjectPlugin.d.ts +1 -1
  327. package/rollup.config.prod.js +0 -26
  328. package/rollup.scss.config.js +0 -13
  329. package/src/components/tek-grid/TekGrid.ts +0 -320
  330. package/src/components/tek-grid/TekGrid.vue +0 -235
  331. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +0 -243
  332. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +0 -93
  333. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +0 -147
  334. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +0 -78
  335. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +0 -97
  336. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +0 -273
  337. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +0 -469
  338. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +0 -512
  339. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +0 -46
  340. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +0 -28
  341. package/src/components/tek-grid/indentation/TekGridIndentation.ts +0 -21
  342. package/src/components/tek-grid/indentation/TekGridIndentation.vue +0 -33
  343. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +0 -117
  344. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +0 -172
  345. package/src/components/tek-grid/row/TekGridFooterRow.ts +0 -62
  346. package/src/components/tek-grid/row/TekGridFooterRow.vue +0 -64
  347. package/src/components/tek-grid/row/TekGridGroupRow.ts +0 -65
  348. package/src/components/tek-grid/row/TekGridGroupRow.vue +0 -65
  349. package/src/composables/useTableLayout.ts +0 -293
  350. package/src/utils/isArrayOperation.ts +0 -5
@@ -1,884 +1,884 @@
1
- import { Alert, Multiple } from '@zeedhi/common';
2
- import { PropType } from 'vue';
3
- export declare const ZdAlertProps: {
4
- multiple: {
5
- type: PropType<Multiple>;
6
- default: string;
7
- };
8
- children: {
9
- type: (StringConstructor | {
10
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
11
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
12
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
13
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
14
- isArray(arg: any): arg is any[];
15
- readonly prototype: any[];
16
- from<T>(arrayLike: ArrayLike<T>): T[];
17
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
18
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
19
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
20
- of<T_4>(...items: T_4[]): T_4[];
21
- readonly [Symbol.species]: ArrayConstructor;
22
- })[];
23
- default(): never[];
24
- };
25
- component: {
26
- type: StringConstructor;
27
- };
28
- allowDuplicate: {
29
- type: (StringConstructor | BooleanConstructor)[];
30
- default: boolean;
31
- };
32
- autofocus: {
33
- type: (StringConstructor | BooleanConstructor)[];
34
- default: boolean;
35
- };
36
- cssClass: {
37
- type: StringConstructor;
38
- default: string;
39
- };
40
- cssStyle: {
41
- type: (StringConstructor | (() => import("vue").StyleValue))[];
42
- default: string;
43
- };
44
- dark: {
45
- type: (StringConstructor | BooleanConstructor)[];
46
- default: boolean;
47
- };
48
- directives: {
49
- type: ObjectConstructor;
50
- default(): {};
51
- };
52
- events: {
53
- type: ObjectConstructor;
54
- default(): {};
55
- };
56
- instanceObject: {
57
- type: ObjectConstructor;
58
- };
59
- isVisible: {
60
- type: (StringConstructor | BooleanConstructor)[];
61
- default: boolean;
62
- };
63
- keyMap: {
64
- type: ObjectConstructor;
65
- default(): {};
66
- };
67
- light: {
68
- type: (StringConstructor | BooleanConstructor)[];
69
- default: boolean;
70
- };
71
- name: {
72
- type: StringConstructor;
73
- required: true;
74
- };
75
- parent: {
76
- type: ObjectConstructor;
77
- };
78
- tabStop: {
79
- type: (StringConstructor | BooleanConstructor)[];
80
- default: boolean;
81
- };
82
- theme: {
83
- type: StringConstructor;
84
- };
85
- };
86
- declare const alertComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
87
- multiple: {
88
- type: PropType<Multiple>;
89
- default: string;
90
- };
91
- children: {
92
- type: (StringConstructor | {
93
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
94
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
95
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
96
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
97
- isArray(arg: any): arg is any[];
98
- readonly prototype: any[];
99
- from<T>(arrayLike: ArrayLike<T>): T[];
100
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
101
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
102
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
103
- of<T_4>(...items: T_4[]): T_4[];
104
- readonly [Symbol.species]: ArrayConstructor;
105
- })[];
106
- default(): never[];
107
- };
108
- component: {
109
- type: StringConstructor;
110
- };
111
- allowDuplicate: {
112
- type: (StringConstructor | BooleanConstructor)[];
113
- default: boolean;
114
- };
115
- autofocus: {
116
- type: (StringConstructor | BooleanConstructor)[];
117
- default: boolean;
118
- };
119
- cssClass: {
120
- type: StringConstructor;
121
- default: string;
122
- };
123
- cssStyle: {
124
- type: (StringConstructor | (() => import("vue").StyleValue))[];
125
- default: string;
126
- };
127
- dark: {
128
- type: (StringConstructor | BooleanConstructor)[];
129
- default: boolean;
130
- };
131
- directives: {
132
- type: ObjectConstructor;
133
- default(): {};
134
- };
135
- events: {
136
- type: ObjectConstructor;
137
- default(): {};
138
- };
139
- instanceObject: {
140
- type: ObjectConstructor;
141
- };
142
- isVisible: {
143
- type: (StringConstructor | BooleanConstructor)[];
144
- default: boolean;
145
- };
146
- keyMap: {
147
- type: ObjectConstructor;
148
- default(): {};
149
- };
150
- light: {
151
- type: (StringConstructor | BooleanConstructor)[];
152
- default: boolean;
153
- };
154
- name: {
155
- type: StringConstructor;
156
- required: true;
157
- };
158
- parent: {
159
- type: ObjectConstructor;
160
- };
161
- tabStop: {
162
- type: (StringConstructor | BooleanConstructor)[];
163
- default: boolean;
164
- };
165
- theme: {
166
- type: StringConstructor;
167
- };
168
- }>, {
169
- instance: {
170
- bottom: boolean;
171
- buttonsSlot: {
172
- [x: string]: any;
173
- absolute?: boolean | undefined;
174
- block?: boolean | undefined;
175
- bottom?: boolean | undefined;
176
- color?: string | undefined;
177
- disabled?: boolean | undefined;
178
- events?: {
179
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
180
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
181
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
182
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
183
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
184
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
185
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
186
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
187
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
188
- } | undefined;
189
- fab?: boolean | undefined;
190
- fixed?: boolean | undefined;
191
- flat?: boolean | undefined;
192
- href?: string | undefined;
193
- icon?: boolean | undefined;
194
- iconName?: string | undefined;
195
- label?: string | undefined;
196
- large?: boolean | undefined;
197
- left?: boolean | undefined;
198
- outline?: boolean | undefined;
199
- reverse?: boolean | undefined;
200
- right?: boolean | undefined;
201
- round?: string | number | boolean | undefined;
202
- small?: boolean | undefined;
203
- target?: string | undefined;
204
- tile?: boolean | undefined;
205
- to?: string | undefined;
206
- top?: boolean | undefined;
207
- type?: string | undefined;
208
- width?: string | number | undefined;
209
- active?: boolean | undefined;
210
- appendIcon?: string | undefined;
211
- border?: string | number | boolean | undefined;
212
- density?: "default" | "comfortable" | "compact" | undefined;
213
- elevation?: string | number | undefined;
214
- loading?: string | boolean | undefined;
215
- position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
216
- prependIcon?: string | undefined;
217
- replace?: boolean | undefined;
218
- ripple?: boolean | undefined;
219
- selectedClass?: string | undefined;
220
- size?: "default" | "large" | "small" | "x-small" | "x-large" | undefined;
221
- stacked?: boolean | undefined;
222
- tag?: string | undefined;
223
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
224
- children?: {
225
- [x: string]: any;
226
- children?: any[] | undefined;
227
- component: string;
228
- allowDuplicate?: boolean | undefined;
229
- autofocus?: boolean | undefined;
230
- componentId?: number | undefined;
231
- cssClass?: string | undefined;
232
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
233
- events?: {
234
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
235
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
236
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
237
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
238
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
239
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
240
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
241
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
242
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
243
- } | undefined;
244
- directives?: {
245
- [x: string]: {
246
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
247
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
248
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
249
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
250
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
251
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
252
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
253
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
254
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
255
- } | undefined;
256
- touch?: {
257
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
258
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
259
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
260
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
261
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
262
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
263
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
264
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
266
- } | undefined;
267
- } | undefined;
268
- isVisible?: string | boolean | undefined;
269
- dark?: boolean | undefined;
270
- light?: boolean | undefined;
271
- theme?: string | undefined;
272
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
273
- name: string;
274
- parent?: {
275
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
276
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
277
- allowDuplicate: boolean;
278
- autofocus: boolean;
279
- children: {
280
- [x: string]: any;
281
- allowDuplicate?: boolean | undefined;
282
- autofocus?: boolean | undefined;
283
- children?: any[] | undefined;
284
- componentId?: number | undefined;
285
- cssClass?: string | undefined;
286
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
287
- events?: {
288
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
289
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
296
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
297
- } | undefined;
298
- directives?: {
299
- [x: string]: {
300
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
301
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
302
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
303
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
305
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
306
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
307
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
308
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
309
- } | undefined;
310
- touch?: {
311
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
312
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
313
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
314
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
315
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
- } | undefined;
321
- } | undefined;
322
- isVisible?: string | boolean | undefined;
323
- dark?: boolean | undefined;
324
- light?: boolean | undefined;
325
- theme?: string | undefined;
326
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
327
- name: string;
328
- parent?: any | undefined;
329
- tabStop?: boolean | undefined;
330
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
331
- fillHeight?: boolean | undefined;
332
- }[];
333
- componentId: number;
334
- cssClass: string;
335
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
336
- events: {
337
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
338
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
339
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
340
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
341
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
- };
347
- directives: {
348
- [x: string]: {
349
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
350
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
351
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
352
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
353
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
354
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
355
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
356
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
357
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
358
- } | undefined;
359
- touch?: {
360
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
361
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
362
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
363
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
364
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
- } | undefined;
370
- };
371
- isVisible: string | boolean;
372
- dark: boolean;
373
- light: boolean;
374
- theme?: string | undefined;
375
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
376
- name: string;
377
- parent?: any | undefined;
378
- tabStop: boolean;
379
- userProperties: import("@zeedhi/core").IDictionary<any>;
380
- fillHeight: boolean;
381
- } | undefined;
382
- tabStop?: boolean | undefined;
383
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
384
- fillHeight?: boolean | undefined;
385
- }[] | undefined;
386
- component: string;
387
- allowDuplicate?: boolean | undefined;
388
- autofocus?: boolean | undefined;
389
- componentId?: number | undefined;
390
- cssClass?: string | undefined;
391
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
392
- directives?: {
393
- [x: string]: {
394
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
395
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
399
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
400
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
401
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
402
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
403
- } | undefined;
404
- touch?: {
405
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
406
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
407
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
408
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
409
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
410
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
411
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
412
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
413
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
414
- } | undefined;
415
- } | undefined;
416
- isVisible?: string | boolean | undefined;
417
- dark?: boolean | undefined;
418
- light?: boolean | undefined;
419
- theme?: string | undefined;
420
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
421
- name: string;
422
- parent?: {
423
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
424
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
425
- allowDuplicate: boolean;
426
- autofocus: boolean;
427
- children: {
428
- [x: string]: any;
429
- allowDuplicate?: boolean | undefined;
430
- autofocus?: boolean | undefined;
431
- children?: any[] | undefined;
432
- componentId?: number | undefined;
433
- cssClass?: string | undefined;
434
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
435
- events?: {
436
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
437
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
445
- } | undefined;
446
- directives?: {
447
- [x: string]: {
448
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
449
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
453
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
454
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
456
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
457
- } | undefined;
458
- touch?: {
459
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
460
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
462
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
463
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
464
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
465
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
466
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
467
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
468
- } | undefined;
469
- } | undefined;
470
- isVisible?: string | boolean | undefined;
471
- dark?: boolean | undefined;
472
- light?: boolean | undefined;
473
- theme?: string | undefined;
474
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
475
- name: string;
476
- parent?: any | undefined;
477
- tabStop?: boolean | undefined;
478
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
479
- fillHeight?: boolean | undefined;
480
- }[];
481
- componentId: number;
482
- cssClass: string;
483
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
484
- events: {
485
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
486
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
487
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
488
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
489
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
494
- };
495
- directives: {
496
- [x: string]: {
497
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
498
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
499
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
- } | undefined;
507
- touch?: {
508
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
509
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
512
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
517
- } | undefined;
518
- };
519
- isVisible: string | boolean;
520
- dark: boolean;
521
- light: boolean;
522
- theme?: string | undefined;
523
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
524
- name: string;
525
- parent?: any | undefined;
526
- tabStop: boolean;
527
- userProperties: import("@zeedhi/core").IDictionary<any>;
528
- fillHeight: boolean;
529
- } | undefined;
530
- tabStop?: boolean | undefined;
531
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
532
- fillHeight?: boolean | undefined;
533
- }[];
534
- color: string;
535
- dismissColor: string;
536
- left: boolean;
537
- multiLine: boolean;
538
- right: boolean;
539
- showDismiss: boolean;
540
- timeout: number;
541
- text: string;
542
- top: boolean;
543
- vertical: boolean;
544
- id: number;
545
- assignAlertProperties: (alert: import("@zeedhi/common").IAlert) => void;
546
- show: () => void;
547
- hide: () => void;
548
- allowDuplicate: boolean;
549
- autofocus: boolean;
550
- children: {
551
- [x: string]: any;
552
- allowDuplicate?: boolean | undefined;
553
- autofocus?: boolean | undefined;
554
- children?: any[] | undefined;
555
- componentId?: number | undefined;
556
- cssClass?: string | undefined;
557
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
558
- events?: {
559
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
560
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
- } | undefined;
569
- directives?: {
570
- [x: string]: {
571
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
572
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
- } | undefined;
581
- touch?: {
582
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
583
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
588
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
591
- } | undefined;
592
- } | undefined;
593
- isVisible?: string | boolean | undefined;
594
- dark?: boolean | undefined;
595
- light?: boolean | undefined;
596
- theme?: string | undefined;
597
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
598
- name: string;
599
- parent?: any | undefined;
600
- tabStop?: boolean | undefined;
601
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
602
- fillHeight?: boolean | undefined;
603
- }[];
604
- childrenInstances: any[];
605
- cssClass: string;
606
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
607
- directives: {
608
- [x: string]: {
609
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
610
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
- } | undefined;
619
- touch?: {
620
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
621
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
- } | undefined;
630
- };
631
- events: {
632
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
633
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
- };
642
- isVisible: boolean;
643
- name: string;
644
- dark: boolean;
645
- light: boolean;
646
- theme?: string | undefined;
647
- fillHeight: boolean;
648
- parent?: {
649
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
650
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
651
- allowDuplicate: boolean;
652
- autofocus: boolean;
653
- children: {
654
- [x: string]: any;
655
- allowDuplicate?: boolean | undefined;
656
- autofocus?: boolean | undefined;
657
- children?: any[] | undefined;
658
- componentId?: number | undefined;
659
- cssClass?: string | undefined;
660
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
661
- events?: {
662
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
- } | undefined;
672
- directives?: {
673
- [x: string]: {
674
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
675
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
- } | undefined;
684
- touch?: {
685
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
686
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
- } | undefined;
695
- } | undefined;
696
- isVisible?: string | boolean | undefined;
697
- dark?: boolean | undefined;
698
- light?: boolean | undefined;
699
- theme?: string | undefined;
700
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
701
- name: string;
702
- parent?: any | undefined;
703
- tabStop?: boolean | undefined;
704
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
705
- fillHeight?: boolean | undefined;
706
- }[];
707
- componentId: number;
708
- cssClass: string;
709
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
710
- events: {
711
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
712
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- };
721
- directives: {
722
- [x: string]: {
723
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
724
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
- } | undefined;
733
- touch?: {
734
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
735
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
- } | undefined;
744
- };
745
- isVisible: string | boolean;
746
- dark: boolean;
747
- light: boolean;
748
- theme?: string | undefined;
749
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
750
- name: string;
751
- parent?: any | undefined;
752
- tabStop: boolean;
753
- userProperties: import("@zeedhi/core").IDictionary<any>;
754
- fillHeight: boolean;
755
- } | undefined;
756
- componentId: number;
757
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
758
- isFocused: boolean;
759
- tabStop: boolean;
760
- userProperties: import("@zeedhi/core").IDictionary<any>;
761
- setViewFocus: (viewFocus: () => void) => void;
762
- setFocus: () => void;
763
- callEvent: (eventName: string, args: any) => boolean;
764
- addChild: (child: import("@zeedhi/common").IComponent) => void;
765
- removeChild: (name: string) => void;
766
- getChildInstance: <T_1>(name: string) => T_1;
767
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
768
- onCreated: () => void;
769
- onBeforeMount: () => void;
770
- onMounted: (element: any) => void;
771
- onBeforeDestroy: () => void;
772
- onDestroyed: () => void;
773
- click: (event?: Event | undefined, element?: any) => void;
774
- focus: (event: Event, element: any) => void;
775
- blur: (event: Event, element: any) => void;
776
- mouseenter: (event?: Event | undefined, element?: any) => void;
777
- mouseleave: (event?: Event | undefined, element?: any) => void;
778
- mouseout: (event?: Event | undefined, element?: any) => void;
779
- mouseover: (event?: Event | undefined, element?: any) => void;
780
- };
781
- 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>>;
782
- alerts: Alert[];
783
- remove: (index: number) => void;
784
- hide: (index: number) => void;
785
- getAlertLocation: (alert: Alert) => any;
786
- arrangeStackItems: () => void;
787
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
788
- multiple: {
789
- type: PropType<Multiple>;
790
- default: string;
791
- };
792
- children: {
793
- type: (StringConstructor | {
794
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
795
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
796
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
797
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
798
- isArray(arg: any): arg is any[];
799
- readonly prototype: any[];
800
- from<T>(arrayLike: ArrayLike<T>): T[];
801
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
802
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
803
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
804
- of<T_4>(...items: T_4[]): T_4[];
805
- readonly [Symbol.species]: ArrayConstructor;
806
- })[];
807
- default(): never[];
808
- };
809
- component: {
810
- type: StringConstructor;
811
- };
812
- allowDuplicate: {
813
- type: (StringConstructor | BooleanConstructor)[];
814
- default: boolean;
815
- };
816
- autofocus: {
817
- type: (StringConstructor | BooleanConstructor)[];
818
- default: boolean;
819
- };
820
- cssClass: {
821
- type: StringConstructor;
822
- default: string;
823
- };
824
- cssStyle: {
825
- type: (StringConstructor | (() => import("vue").StyleValue))[];
826
- default: string;
827
- };
828
- dark: {
829
- type: (StringConstructor | BooleanConstructor)[];
830
- default: boolean;
831
- };
832
- directives: {
833
- type: ObjectConstructor;
834
- default(): {};
835
- };
836
- events: {
837
- type: ObjectConstructor;
838
- default(): {};
839
- };
840
- instanceObject: {
841
- type: ObjectConstructor;
842
- };
843
- isVisible: {
844
- type: (StringConstructor | BooleanConstructor)[];
845
- default: boolean;
846
- };
847
- keyMap: {
848
- type: ObjectConstructor;
849
- default(): {};
850
- };
851
- light: {
852
- type: (StringConstructor | BooleanConstructor)[];
853
- default: boolean;
854
- };
855
- name: {
856
- type: StringConstructor;
857
- required: true;
858
- };
859
- parent: {
860
- type: ObjectConstructor;
861
- };
862
- tabStop: {
863
- type: (StringConstructor | BooleanConstructor)[];
864
- default: boolean;
865
- };
866
- theme: {
867
- type: StringConstructor;
868
- };
869
- }>> & Readonly<{}>, {
870
- allowDuplicate: string | boolean;
871
- autofocus: string | boolean;
872
- children: string | import("@zeedhi/common").IComponentRender[];
873
- cssClass: string;
874
- cssStyle: import("vue").StyleValue;
875
- dark: string | boolean;
876
- directives: Record<string, any>;
877
- events: Record<string, any>;
878
- isVisible: string | boolean;
879
- keyMap: Record<string, any>;
880
- light: string | boolean;
881
- tabStop: string | boolean;
882
- multiple: Multiple;
883
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
884
- export default alertComponent;
1
+ import { Alert, Multiple } from '@zeedhi/common';
2
+ import { PropType } from 'vue';
3
+ export declare const ZdAlertProps: {
4
+ multiple: {
5
+ type: PropType<Multiple>;
6
+ default: string;
7
+ };
8
+ children: {
9
+ type: (StringConstructor | {
10
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
11
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
12
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
13
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
14
+ isArray(arg: any): arg is any[];
15
+ readonly prototype: any[];
16
+ from<T>(arrayLike: ArrayLike<T>): T[];
17
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
18
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
19
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
20
+ of<T_4>(...items: T_4[]): T_4[];
21
+ readonly [Symbol.species]: ArrayConstructor;
22
+ })[];
23
+ default(): never[];
24
+ };
25
+ component: {
26
+ type: StringConstructor;
27
+ };
28
+ allowDuplicate: {
29
+ type: (BooleanConstructor | StringConstructor)[];
30
+ default: boolean;
31
+ };
32
+ autofocus: {
33
+ type: (BooleanConstructor | StringConstructor)[];
34
+ default: boolean;
35
+ };
36
+ cssClass: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ cssStyle: {
41
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
42
+ default: string;
43
+ };
44
+ dark: {
45
+ type: (BooleanConstructor | StringConstructor)[];
46
+ default: boolean;
47
+ };
48
+ directives: {
49
+ type: ObjectConstructor;
50
+ default(): {};
51
+ };
52
+ events: {
53
+ type: ObjectConstructor;
54
+ default(): {};
55
+ };
56
+ instanceObject: {
57
+ type: ObjectConstructor;
58
+ };
59
+ isVisible: {
60
+ type: (BooleanConstructor | StringConstructor)[];
61
+ default: boolean;
62
+ };
63
+ keyMap: {
64
+ type: ObjectConstructor;
65
+ default(): {};
66
+ };
67
+ light: {
68
+ type: (BooleanConstructor | StringConstructor)[];
69
+ default: boolean;
70
+ };
71
+ name: {
72
+ type: StringConstructor;
73
+ required: true;
74
+ };
75
+ parent: {
76
+ type: ObjectConstructor;
77
+ };
78
+ tabStop: {
79
+ type: (BooleanConstructor | StringConstructor)[];
80
+ default: boolean;
81
+ };
82
+ theme: {
83
+ type: StringConstructor;
84
+ };
85
+ };
86
+ declare const alertComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
87
+ multiple: {
88
+ type: PropType<Multiple>;
89
+ default: string;
90
+ };
91
+ children: {
92
+ type: (StringConstructor | {
93
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
94
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
95
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
96
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
97
+ isArray(arg: any): arg is any[];
98
+ readonly prototype: any[];
99
+ from<T>(arrayLike: ArrayLike<T>): T[];
100
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
101
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
102
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
103
+ of<T_4>(...items: T_4[]): T_4[];
104
+ readonly [Symbol.species]: ArrayConstructor;
105
+ })[];
106
+ default(): never[];
107
+ };
108
+ component: {
109
+ type: StringConstructor;
110
+ };
111
+ allowDuplicate: {
112
+ type: (BooleanConstructor | StringConstructor)[];
113
+ default: boolean;
114
+ };
115
+ autofocus: {
116
+ type: (BooleanConstructor | StringConstructor)[];
117
+ default: boolean;
118
+ };
119
+ cssClass: {
120
+ type: StringConstructor;
121
+ default: string;
122
+ };
123
+ cssStyle: {
124
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
125
+ default: string;
126
+ };
127
+ dark: {
128
+ type: (BooleanConstructor | StringConstructor)[];
129
+ default: boolean;
130
+ };
131
+ directives: {
132
+ type: ObjectConstructor;
133
+ default(): {};
134
+ };
135
+ events: {
136
+ type: ObjectConstructor;
137
+ default(): {};
138
+ };
139
+ instanceObject: {
140
+ type: ObjectConstructor;
141
+ };
142
+ isVisible: {
143
+ type: (BooleanConstructor | StringConstructor)[];
144
+ default: boolean;
145
+ };
146
+ keyMap: {
147
+ type: ObjectConstructor;
148
+ default(): {};
149
+ };
150
+ light: {
151
+ type: (BooleanConstructor | StringConstructor)[];
152
+ default: boolean;
153
+ };
154
+ name: {
155
+ type: StringConstructor;
156
+ required: true;
157
+ };
158
+ parent: {
159
+ type: ObjectConstructor;
160
+ };
161
+ tabStop: {
162
+ type: (BooleanConstructor | StringConstructor)[];
163
+ default: boolean;
164
+ };
165
+ theme: {
166
+ type: StringConstructor;
167
+ };
168
+ }>, {
169
+ instance: {
170
+ bottom: boolean;
171
+ buttonsSlot: {
172
+ [x: string]: any;
173
+ absolute?: boolean | undefined;
174
+ block?: boolean | undefined;
175
+ bottom?: boolean | undefined;
176
+ color?: string | undefined;
177
+ disabled?: boolean | undefined;
178
+ events?: {
179
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
180
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
181
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
182
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
183
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
184
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
185
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
186
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
187
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
188
+ } | undefined;
189
+ fab?: boolean | undefined;
190
+ fixed?: boolean | undefined;
191
+ flat?: boolean | undefined;
192
+ href?: string | undefined;
193
+ icon?: boolean | undefined;
194
+ iconName?: string | undefined;
195
+ label?: string | undefined;
196
+ large?: boolean | undefined;
197
+ left?: boolean | undefined;
198
+ outline?: boolean | undefined;
199
+ reverse?: boolean | undefined;
200
+ right?: boolean | undefined;
201
+ round?: string | number | boolean | undefined;
202
+ small?: boolean | undefined;
203
+ target?: string | undefined;
204
+ tile?: boolean | undefined;
205
+ to?: string | undefined;
206
+ top?: boolean | undefined;
207
+ type?: string | undefined;
208
+ width?: string | number | undefined;
209
+ active?: boolean | undefined;
210
+ appendIcon?: string | undefined;
211
+ border?: string | number | boolean | undefined;
212
+ density?: "default" | "comfortable" | "compact" | undefined;
213
+ elevation?: string | number | undefined;
214
+ loading?: string | boolean | undefined;
215
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
216
+ prependIcon?: string | undefined;
217
+ replace?: boolean | undefined;
218
+ ripple?: boolean | undefined;
219
+ selectedClass?: string | undefined;
220
+ size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
221
+ stacked?: boolean | undefined;
222
+ tag?: string | undefined;
223
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
224
+ children?: {
225
+ [x: string]: any;
226
+ children?: any[] | undefined;
227
+ component: string;
228
+ allowDuplicate?: boolean | undefined;
229
+ autofocus?: boolean | undefined;
230
+ componentId?: number | undefined;
231
+ cssClass?: string | undefined;
232
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
233
+ events?: {
234
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
235
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
236
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
237
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
238
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
239
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
240
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
241
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
242
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
243
+ } | undefined;
244
+ directives?: {
245
+ [x: string]: {
246
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
247
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
248
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
249
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
250
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
251
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
252
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
253
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
254
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
255
+ } | undefined;
256
+ touch?: {
257
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
258
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
259
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
260
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
261
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
262
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
263
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
264
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
265
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
266
+ } | undefined;
267
+ } | undefined;
268
+ isVisible?: string | boolean | undefined;
269
+ dark?: boolean | undefined;
270
+ light?: boolean | undefined;
271
+ theme?: string | undefined;
272
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
273
+ name: string;
274
+ parent?: {
275
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
276
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
277
+ allowDuplicate: boolean;
278
+ autofocus: boolean;
279
+ children: {
280
+ [x: string]: any;
281
+ allowDuplicate?: boolean | undefined;
282
+ autofocus?: boolean | undefined;
283
+ children?: any[] | undefined;
284
+ componentId?: number | undefined;
285
+ cssClass?: string | undefined;
286
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
287
+ events?: {
288
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
289
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
290
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
291
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
296
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
297
+ } | undefined;
298
+ directives?: {
299
+ [x: string]: {
300
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
301
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
302
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
303
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
305
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
306
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
307
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
308
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
309
+ } | undefined;
310
+ touch?: {
311
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
312
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
313
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
314
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
315
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
+ } | undefined;
321
+ } | undefined;
322
+ isVisible?: string | boolean | undefined;
323
+ dark?: boolean | undefined;
324
+ light?: boolean | undefined;
325
+ theme?: string | undefined;
326
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
327
+ name: string;
328
+ parent?: any | undefined;
329
+ tabStop?: boolean | undefined;
330
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
331
+ fillHeight?: boolean | undefined;
332
+ }[];
333
+ componentId: number;
334
+ cssClass: string;
335
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
336
+ events: {
337
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
338
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
339
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
340
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
341
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
+ };
347
+ directives: {
348
+ [x: string]: {
349
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
350
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
351
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
352
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
353
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
354
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
355
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
356
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
357
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
358
+ } | undefined;
359
+ touch?: {
360
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
361
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
362
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
363
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
364
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
+ } | undefined;
370
+ };
371
+ isVisible: string | boolean;
372
+ dark: boolean;
373
+ light: boolean;
374
+ theme?: string | undefined;
375
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
376
+ name: string;
377
+ parent?: any | undefined;
378
+ tabStop: boolean;
379
+ userProperties: import("@zeedhi/core").IDictionary<any>;
380
+ fillHeight: boolean;
381
+ } | undefined;
382
+ tabStop?: boolean | undefined;
383
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
384
+ fillHeight?: boolean | undefined;
385
+ }[] | undefined;
386
+ component: string;
387
+ allowDuplicate?: boolean | undefined;
388
+ autofocus?: boolean | undefined;
389
+ componentId?: number | undefined;
390
+ cssClass?: string | undefined;
391
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
392
+ directives?: {
393
+ [x: string]: {
394
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
395
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
399
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
400
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
401
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
402
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
403
+ } | undefined;
404
+ touch?: {
405
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
406
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
407
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
408
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
409
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
410
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
411
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
412
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
413
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
414
+ } | undefined;
415
+ } | undefined;
416
+ isVisible?: string | boolean | undefined;
417
+ dark?: boolean | undefined;
418
+ light?: boolean | undefined;
419
+ theme?: string | undefined;
420
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
421
+ name: string;
422
+ parent?: {
423
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
424
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
425
+ allowDuplicate: boolean;
426
+ autofocus: boolean;
427
+ children: {
428
+ [x: string]: any;
429
+ allowDuplicate?: boolean | undefined;
430
+ autofocus?: boolean | undefined;
431
+ children?: any[] | undefined;
432
+ componentId?: number | undefined;
433
+ cssClass?: string | undefined;
434
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
435
+ events?: {
436
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
437
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
438
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
439
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
440
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
441
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
442
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
443
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
444
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
445
+ } | undefined;
446
+ directives?: {
447
+ [x: string]: {
448
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
449
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
453
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
454
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
455
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
456
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
457
+ } | undefined;
458
+ touch?: {
459
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
460
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
462
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
463
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
464
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
465
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
466
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
467
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
468
+ } | undefined;
469
+ } | undefined;
470
+ isVisible?: string | boolean | undefined;
471
+ dark?: boolean | undefined;
472
+ light?: boolean | undefined;
473
+ theme?: string | undefined;
474
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
475
+ name: string;
476
+ parent?: any | undefined;
477
+ tabStop?: boolean | undefined;
478
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
479
+ fillHeight?: boolean | undefined;
480
+ }[];
481
+ componentId: number;
482
+ cssClass: string;
483
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
484
+ events: {
485
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
486
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
487
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
488
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
489
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
490
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
491
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
492
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
493
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
494
+ };
495
+ directives: {
496
+ [x: string]: {
497
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
498
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
499
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
500
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
501
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
502
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
503
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
504
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
505
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
506
+ } | undefined;
507
+ touch?: {
508
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
509
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
510
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
511
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
512
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
517
+ } | undefined;
518
+ };
519
+ isVisible: string | boolean;
520
+ dark: boolean;
521
+ light: boolean;
522
+ theme?: string | undefined;
523
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
524
+ name: string;
525
+ parent?: any | undefined;
526
+ tabStop: boolean;
527
+ userProperties: import("@zeedhi/core").IDictionary<any>;
528
+ fillHeight: boolean;
529
+ } | undefined;
530
+ tabStop?: boolean | undefined;
531
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
532
+ fillHeight?: boolean | undefined;
533
+ }[];
534
+ color: string;
535
+ dismissColor: string;
536
+ left: boolean;
537
+ multiLine: boolean;
538
+ right: boolean;
539
+ showDismiss: boolean;
540
+ timeout: number;
541
+ text: string;
542
+ top: boolean;
543
+ vertical: boolean;
544
+ id: number;
545
+ assignAlertProperties: (alert: import("@zeedhi/common").IAlert) => void;
546
+ show: () => void;
547
+ hide: () => void;
548
+ allowDuplicate: boolean;
549
+ autofocus: boolean;
550
+ children: {
551
+ [x: string]: any;
552
+ allowDuplicate?: boolean | undefined;
553
+ autofocus?: boolean | undefined;
554
+ children?: any[] | undefined;
555
+ componentId?: number | undefined;
556
+ cssClass?: string | undefined;
557
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
558
+ events?: {
559
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
560
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
561
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
562
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
563
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
564
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
565
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
566
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
+ } | undefined;
569
+ directives?: {
570
+ [x: string]: {
571
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
572
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
575
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
576
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
577
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
578
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
+ } | undefined;
581
+ touch?: {
582
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
583
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
588
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
591
+ } | undefined;
592
+ } | undefined;
593
+ isVisible?: string | boolean | undefined;
594
+ dark?: boolean | undefined;
595
+ light?: boolean | undefined;
596
+ theme?: string | undefined;
597
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
598
+ name: string;
599
+ parent?: any | undefined;
600
+ tabStop?: boolean | undefined;
601
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
602
+ fillHeight?: boolean | undefined;
603
+ }[];
604
+ childrenInstances: any[];
605
+ cssClass: string;
606
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
607
+ directives: {
608
+ [x: string]: {
609
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
610
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ } | undefined;
619
+ touch?: {
620
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
621
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ } | undefined;
630
+ };
631
+ events: {
632
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
633
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
+ };
642
+ isVisible: boolean;
643
+ name: string;
644
+ dark: boolean;
645
+ light: boolean;
646
+ theme?: string | undefined;
647
+ fillHeight: boolean;
648
+ parent?: {
649
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
650
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
651
+ allowDuplicate: boolean;
652
+ autofocus: boolean;
653
+ children: {
654
+ [x: string]: any;
655
+ allowDuplicate?: boolean | undefined;
656
+ autofocus?: boolean | undefined;
657
+ children?: any[] | undefined;
658
+ componentId?: number | undefined;
659
+ cssClass?: string | undefined;
660
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
661
+ events?: {
662
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
663
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ } | undefined;
672
+ directives?: {
673
+ [x: string]: {
674
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
675
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
+ } | undefined;
684
+ touch?: {
685
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
686
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
+ } | undefined;
695
+ } | undefined;
696
+ isVisible?: string | boolean | undefined;
697
+ dark?: boolean | undefined;
698
+ light?: boolean | undefined;
699
+ theme?: string | undefined;
700
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
701
+ name: string;
702
+ parent?: any | undefined;
703
+ tabStop?: boolean | undefined;
704
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
705
+ fillHeight?: boolean | undefined;
706
+ }[];
707
+ componentId: number;
708
+ cssClass: string;
709
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
710
+ events: {
711
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
712
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ };
721
+ directives: {
722
+ [x: string]: {
723
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
724
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
+ } | undefined;
733
+ touch?: {
734
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
735
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
+ } | undefined;
744
+ };
745
+ isVisible: string | boolean;
746
+ dark: boolean;
747
+ light: boolean;
748
+ theme?: string | undefined;
749
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
750
+ name: string;
751
+ parent?: any | undefined;
752
+ tabStop: boolean;
753
+ userProperties: import("@zeedhi/core").IDictionary<any>;
754
+ fillHeight: boolean;
755
+ } | undefined;
756
+ componentId: number;
757
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
758
+ isFocused: boolean;
759
+ tabStop: boolean;
760
+ userProperties: import("@zeedhi/core").IDictionary<any>;
761
+ setViewFocus: (viewFocus: () => void) => void;
762
+ setFocus: () => void;
763
+ callEvent: (eventName: string, args: any) => boolean;
764
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
765
+ removeChild: (name: string) => void;
766
+ getChildInstance: <T_1>(name: string) => T_1;
767
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
768
+ onCreated: () => void;
769
+ onBeforeMount: () => void;
770
+ onMounted: (element: any) => void;
771
+ onBeforeDestroy: () => void;
772
+ onDestroyed: () => void;
773
+ click: (event?: Event | undefined, element?: any) => void;
774
+ focus: (event: Event, element: any) => void;
775
+ blur: (event: Event, element: any) => void;
776
+ mouseenter: (event?: Event | undefined, element?: any) => void;
777
+ mouseleave: (event?: Event | undefined, element?: any) => void;
778
+ mouseout: (event?: Event | undefined, element?: any) => void;
779
+ mouseover: (event?: Event | undefined, element?: any) => void;
780
+ };
781
+ 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>>;
782
+ alerts: Alert[];
783
+ remove: (index: number) => void;
784
+ hide: (index: number) => void;
785
+ getAlertLocation: (alert: Alert) => any;
786
+ arrangeStackItems: () => void;
787
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
788
+ multiple: {
789
+ type: PropType<Multiple>;
790
+ default: string;
791
+ };
792
+ children: {
793
+ type: (StringConstructor | {
794
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
795
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
796
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
797
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
798
+ isArray(arg: any): arg is any[];
799
+ readonly prototype: any[];
800
+ from<T>(arrayLike: ArrayLike<T>): T[];
801
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
802
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
803
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
804
+ of<T_4>(...items: T_4[]): T_4[];
805
+ readonly [Symbol.species]: ArrayConstructor;
806
+ })[];
807
+ default(): never[];
808
+ };
809
+ component: {
810
+ type: StringConstructor;
811
+ };
812
+ allowDuplicate: {
813
+ type: (BooleanConstructor | StringConstructor)[];
814
+ default: boolean;
815
+ };
816
+ autofocus: {
817
+ type: (BooleanConstructor | StringConstructor)[];
818
+ default: boolean;
819
+ };
820
+ cssClass: {
821
+ type: StringConstructor;
822
+ default: string;
823
+ };
824
+ cssStyle: {
825
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
826
+ default: string;
827
+ };
828
+ dark: {
829
+ type: (BooleanConstructor | StringConstructor)[];
830
+ default: boolean;
831
+ };
832
+ directives: {
833
+ type: ObjectConstructor;
834
+ default(): {};
835
+ };
836
+ events: {
837
+ type: ObjectConstructor;
838
+ default(): {};
839
+ };
840
+ instanceObject: {
841
+ type: ObjectConstructor;
842
+ };
843
+ isVisible: {
844
+ type: (BooleanConstructor | StringConstructor)[];
845
+ default: boolean;
846
+ };
847
+ keyMap: {
848
+ type: ObjectConstructor;
849
+ default(): {};
850
+ };
851
+ light: {
852
+ type: (BooleanConstructor | StringConstructor)[];
853
+ default: boolean;
854
+ };
855
+ name: {
856
+ type: StringConstructor;
857
+ required: true;
858
+ };
859
+ parent: {
860
+ type: ObjectConstructor;
861
+ };
862
+ tabStop: {
863
+ type: (BooleanConstructor | StringConstructor)[];
864
+ default: boolean;
865
+ };
866
+ theme: {
867
+ type: StringConstructor;
868
+ };
869
+ }>> & Readonly<{}>, {
870
+ allowDuplicate: string | boolean;
871
+ autofocus: string | boolean;
872
+ children: string | import("@zeedhi/common").IComponentRender[];
873
+ cssClass: string;
874
+ cssStyle: import("vue").StyleValue;
875
+ dark: string | boolean;
876
+ directives: Record<string, any>;
877
+ events: Record<string, any>;
878
+ isVisible: string | boolean;
879
+ keyMap: Record<string, any>;
880
+ light: string | boolean;
881
+ tabStop: string | boolean;
882
+ multiple: Multiple;
883
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
884
+ export default alertComponent;