@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,2007 +1,2007 @@
1
- import { ISlideData } from '@zeedhi/common';
2
- import { ComponentPublicInstance } from 'vue';
3
- import 'vue3-carousel/dist/carousel.css';
4
- export declare const ZdCarouselProps: {
5
- autoPlay: {
6
- type: (StringConstructor | BooleanConstructor)[];
7
- default: boolean;
8
- };
9
- buttonsOutside: {
10
- type: (StringConstructor | BooleanConstructor)[];
11
- default: boolean;
12
- };
13
- center: {
14
- type: (StringConstructor | BooleanConstructor)[];
15
- default: boolean;
16
- };
17
- currentSlide: {
18
- type: (StringConstructor | NumberConstructor)[];
19
- };
20
- fractionPagination: {
21
- type: (StringConstructor | BooleanConstructor)[];
22
- default: boolean;
23
- };
24
- height: {
25
- type: (StringConstructor | NumberConstructor)[];
26
- default: string;
27
- };
28
- maxHeight: {
29
- type: (StringConstructor | NumberConstructor)[];
30
- default: string;
31
- };
32
- minHeight: {
33
- type: (StringConstructor | NumberConstructor)[];
34
- default: string;
35
- };
36
- fillHeight: {
37
- type: (StringConstructor | BooleanConstructor)[];
38
- default: boolean;
39
- };
40
- infiniteScroll: {
41
- type: (StringConstructor | BooleanConstructor)[];
42
- default: boolean;
43
- };
44
- initialSlide: {
45
- type: (StringConstructor | NumberConstructor)[];
46
- default: number;
47
- };
48
- interval: {
49
- type: (StringConstructor | NumberConstructor)[];
50
- default: number;
51
- };
52
- keysControl: {
53
- type: (StringConstructor | BooleanConstructor)[];
54
- default: boolean;
55
- };
56
- mouseControl: {
57
- type: (StringConstructor | BooleanConstructor)[];
58
- default: boolean;
59
- };
60
- paginationBackground: {
61
- type: (StringConstructor | BooleanConstructor)[];
62
- default: boolean;
63
- };
64
- pauseOnHover: {
65
- type: (StringConstructor | BooleanConstructor)[];
66
- default: boolean;
67
- };
68
- showArrows: {
69
- type: (StringConstructor | BooleanConstructor)[];
70
- default: boolean;
71
- };
72
- showArrowsOnHover: {
73
- type: (StringConstructor | BooleanConstructor)[];
74
- default: boolean;
75
- };
76
- showPagination: {
77
- type: (StringConstructor | BooleanConstructor)[];
78
- default: boolean;
79
- };
80
- showProgress: {
81
- type: (StringConstructor | BooleanConstructor)[];
82
- default: boolean;
83
- };
84
- slideCssClass: {
85
- type: StringConstructor;
86
- default: string;
87
- };
88
- slidesPerView: {
89
- type: (StringConstructor | NumberConstructor)[];
90
- default: number;
91
- };
92
- slidesToSlide: {
93
- type: (StringConstructor | NumberConstructor)[];
94
- default: number;
95
- };
96
- touchControl: {
97
- type: (StringConstructor | BooleanConstructor)[];
98
- default: boolean;
99
- };
100
- transitionDuration: {
101
- type: (StringConstructor | NumberConstructor)[];
102
- default: number;
103
- };
104
- wheelControl: {
105
- type: (StringConstructor | BooleanConstructor)[];
106
- default: boolean;
107
- };
108
- nextButton: {
109
- type: ObjectConstructor;
110
- default: () => {
111
- name: string;
112
- component: string;
113
- iconName: string;
114
- icon: boolean;
115
- large: boolean;
116
- };
117
- };
118
- prevButton: {
119
- type: ObjectConstructor;
120
- default: () => {
121
- name: string;
122
- component: string;
123
- iconName: string;
124
- icon: boolean;
125
- large: boolean;
126
- };
127
- };
128
- children: {
129
- type: (StringConstructor | {
130
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
131
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
132
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
133
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
134
- isArray(arg: any): arg is any[];
135
- readonly prototype: any[];
136
- from<T>(arrayLike: ArrayLike<T>): T[];
137
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
138
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
139
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
140
- of<T_4>(...items: T_4[]): T_4[];
141
- readonly [Symbol.species]: ArrayConstructor;
142
- })[];
143
- default(): never[];
144
- };
145
- component: {
146
- type: StringConstructor;
147
- };
148
- allowDuplicate: {
149
- type: (StringConstructor | BooleanConstructor)[];
150
- default: boolean;
151
- };
152
- autofocus: {
153
- type: (StringConstructor | BooleanConstructor)[];
154
- default: boolean;
155
- };
156
- cssClass: {
157
- type: StringConstructor;
158
- default: string;
159
- };
160
- cssStyle: {
161
- type: (StringConstructor | (() => import("vue").StyleValue))[];
162
- default: string;
163
- };
164
- dark: {
165
- type: (StringConstructor | BooleanConstructor)[];
166
- default: boolean;
167
- };
168
- directives: {
169
- type: ObjectConstructor;
170
- default(): {};
171
- };
172
- events: {
173
- type: ObjectConstructor;
174
- default(): {};
175
- };
176
- instanceObject: {
177
- type: ObjectConstructor;
178
- };
179
- isVisible: {
180
- type: (StringConstructor | BooleanConstructor)[];
181
- default: boolean;
182
- };
183
- keyMap: {
184
- type: ObjectConstructor;
185
- default(): {};
186
- };
187
- light: {
188
- type: (StringConstructor | BooleanConstructor)[];
189
- default: boolean;
190
- };
191
- name: {
192
- type: StringConstructor;
193
- required: true;
194
- };
195
- parent: {
196
- type: ObjectConstructor;
197
- };
198
- tabStop: {
199
- type: (StringConstructor | BooleanConstructor)[];
200
- default: boolean;
201
- };
202
- theme: {
203
- type: StringConstructor;
204
- };
205
- };
206
- declare const carouselComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
207
- autoPlay: {
208
- type: (StringConstructor | BooleanConstructor)[];
209
- default: boolean;
210
- };
211
- buttonsOutside: {
212
- type: (StringConstructor | BooleanConstructor)[];
213
- default: boolean;
214
- };
215
- center: {
216
- type: (StringConstructor | BooleanConstructor)[];
217
- default: boolean;
218
- };
219
- currentSlide: {
220
- type: (StringConstructor | NumberConstructor)[];
221
- };
222
- fractionPagination: {
223
- type: (StringConstructor | BooleanConstructor)[];
224
- default: boolean;
225
- };
226
- height: {
227
- type: (StringConstructor | NumberConstructor)[];
228
- default: string;
229
- };
230
- maxHeight: {
231
- type: (StringConstructor | NumberConstructor)[];
232
- default: string;
233
- };
234
- minHeight: {
235
- type: (StringConstructor | NumberConstructor)[];
236
- default: string;
237
- };
238
- fillHeight: {
239
- type: (StringConstructor | BooleanConstructor)[];
240
- default: boolean;
241
- };
242
- infiniteScroll: {
243
- type: (StringConstructor | BooleanConstructor)[];
244
- default: boolean;
245
- };
246
- initialSlide: {
247
- type: (StringConstructor | NumberConstructor)[];
248
- default: number;
249
- };
250
- interval: {
251
- type: (StringConstructor | NumberConstructor)[];
252
- default: number;
253
- };
254
- keysControl: {
255
- type: (StringConstructor | BooleanConstructor)[];
256
- default: boolean;
257
- };
258
- mouseControl: {
259
- type: (StringConstructor | BooleanConstructor)[];
260
- default: boolean;
261
- };
262
- paginationBackground: {
263
- type: (StringConstructor | BooleanConstructor)[];
264
- default: boolean;
265
- };
266
- pauseOnHover: {
267
- type: (StringConstructor | BooleanConstructor)[];
268
- default: boolean;
269
- };
270
- showArrows: {
271
- type: (StringConstructor | BooleanConstructor)[];
272
- default: boolean;
273
- };
274
- showArrowsOnHover: {
275
- type: (StringConstructor | BooleanConstructor)[];
276
- default: boolean;
277
- };
278
- showPagination: {
279
- type: (StringConstructor | BooleanConstructor)[];
280
- default: boolean;
281
- };
282
- showProgress: {
283
- type: (StringConstructor | BooleanConstructor)[];
284
- default: boolean;
285
- };
286
- slideCssClass: {
287
- type: StringConstructor;
288
- default: string;
289
- };
290
- slidesPerView: {
291
- type: (StringConstructor | NumberConstructor)[];
292
- default: number;
293
- };
294
- slidesToSlide: {
295
- type: (StringConstructor | NumberConstructor)[];
296
- default: number;
297
- };
298
- touchControl: {
299
- type: (StringConstructor | BooleanConstructor)[];
300
- default: boolean;
301
- };
302
- transitionDuration: {
303
- type: (StringConstructor | NumberConstructor)[];
304
- default: number;
305
- };
306
- wheelControl: {
307
- type: (StringConstructor | BooleanConstructor)[];
308
- default: boolean;
309
- };
310
- nextButton: {
311
- type: ObjectConstructor;
312
- default: () => {
313
- name: string;
314
- component: string;
315
- iconName: string;
316
- icon: boolean;
317
- large: boolean;
318
- };
319
- };
320
- prevButton: {
321
- type: ObjectConstructor;
322
- default: () => {
323
- name: string;
324
- component: string;
325
- iconName: string;
326
- icon: boolean;
327
- large: boolean;
328
- };
329
- };
330
- children: {
331
- type: (StringConstructor | {
332
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
333
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
334
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
335
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
336
- isArray(arg: any): arg is any[];
337
- readonly prototype: any[];
338
- from<T>(arrayLike: ArrayLike<T>): T[];
339
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
340
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
341
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
342
- of<T_4>(...items: T_4[]): T_4[];
343
- readonly [Symbol.species]: ArrayConstructor;
344
- })[];
345
- default(): never[];
346
- };
347
- component: {
348
- type: StringConstructor;
349
- };
350
- allowDuplicate: {
351
- type: (StringConstructor | BooleanConstructor)[];
352
- default: boolean;
353
- };
354
- autofocus: {
355
- type: (StringConstructor | BooleanConstructor)[];
356
- default: boolean;
357
- };
358
- cssClass: {
359
- type: StringConstructor;
360
- default: string;
361
- };
362
- cssStyle: {
363
- type: (StringConstructor | (() => import("vue").StyleValue))[];
364
- default: string;
365
- };
366
- dark: {
367
- type: (StringConstructor | BooleanConstructor)[];
368
- default: boolean;
369
- };
370
- directives: {
371
- type: ObjectConstructor;
372
- default(): {};
373
- };
374
- events: {
375
- type: ObjectConstructor;
376
- default(): {};
377
- };
378
- instanceObject: {
379
- type: ObjectConstructor;
380
- };
381
- isVisible: {
382
- type: (StringConstructor | BooleanConstructor)[];
383
- default: boolean;
384
- };
385
- keyMap: {
386
- type: ObjectConstructor;
387
- default(): {};
388
- };
389
- light: {
390
- type: (StringConstructor | BooleanConstructor)[];
391
- default: boolean;
392
- };
393
- name: {
394
- type: StringConstructor;
395
- required: true;
396
- };
397
- parent: {
398
- type: ObjectConstructor;
399
- };
400
- tabStop: {
401
- type: (StringConstructor | BooleanConstructor)[];
402
- default: boolean;
403
- };
404
- theme: {
405
- type: StringConstructor;
406
- };
407
- }>, {
408
- instance: {
409
- autoPlay: boolean;
410
- buttonsOutside: boolean;
411
- center: boolean;
412
- currentSlide: number;
413
- events: {
414
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam> | undefined)[] | undefined;
415
- beforeSlide?: ((data: import("@zeedhi/common").ICarouselEventParam) => void) | undefined;
416
- slide?: ((data: import("@zeedhi/common").ICarouselEventParam) => void) | undefined;
417
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
418
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
419
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
420
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
421
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
422
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
423
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
424
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
425
- };
426
- fractionPagination: boolean;
427
- height: string | number;
428
- maxHeight: string | number;
429
- minHeight: string | number;
430
- fillHeight: boolean;
431
- infiniteScroll: boolean;
432
- initialSlide: number;
433
- interval: number;
434
- keysControl: boolean;
435
- mouseControl: boolean;
436
- paginationBackground: boolean;
437
- pauseOnHover: boolean;
438
- showArrows: boolean;
439
- showArrowsOnHover: boolean;
440
- showPagination: boolean;
441
- showProgress: boolean;
442
- slideCssClass: string;
443
- slidesPerView: number;
444
- slidesToSlide: number;
445
- touchControl: boolean;
446
- transitionDuration: number;
447
- wheelControl: boolean;
448
- nextButton: {
449
- [x: string]: any;
450
- absolute?: boolean | undefined;
451
- block?: boolean | undefined;
452
- bottom?: boolean | undefined;
453
- color?: string | undefined;
454
- disabled?: boolean | undefined;
455
- events?: {
456
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
457
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
458
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
459
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
460
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
461
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
462
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
463
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
464
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
465
- } | undefined;
466
- fab?: boolean | undefined;
467
- fixed?: boolean | undefined;
468
- flat?: boolean | undefined;
469
- href?: string | undefined;
470
- icon?: boolean | undefined;
471
- iconName?: string | undefined;
472
- label?: string | undefined;
473
- large?: boolean | undefined;
474
- left?: boolean | undefined;
475
- outline?: boolean | undefined;
476
- reverse?: boolean | undefined;
477
- right?: boolean | undefined;
478
- round?: string | number | boolean | undefined;
479
- small?: boolean | undefined;
480
- target?: string | undefined;
481
- tile?: boolean | undefined;
482
- to?: string | undefined;
483
- top?: boolean | undefined;
484
- type?: string | undefined;
485
- width?: string | number | undefined;
486
- active?: boolean | undefined;
487
- appendIcon?: string | undefined;
488
- border?: string | number | boolean | undefined;
489
- density?: "default" | "comfortable" | "compact" | undefined;
490
- elevation?: string | number | undefined;
491
- loading?: string | boolean | undefined;
492
- position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
493
- prependIcon?: string | undefined;
494
- replace?: boolean | undefined;
495
- ripple?: boolean | undefined;
496
- selectedClass?: string | undefined;
497
- size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
498
- stacked?: boolean | undefined;
499
- tag?: string | undefined;
500
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
501
- children?: {
502
- [x: string]: any;
503
- children?: any[] | undefined;
504
- component: string;
505
- allowDuplicate?: boolean | undefined;
506
- autofocus?: boolean | undefined;
507
- componentId?: number | undefined;
508
- cssClass?: string | undefined;
509
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
510
- events?: {
511
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
512
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
517
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
518
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
519
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
520
- } | undefined;
521
- directives?: {
522
- [x: string]: {
523
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
524
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
525
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
526
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
528
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
529
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
530
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
531
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
- } | undefined;
533
- touch?: {
534
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
535
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
536
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
537
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
542
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
543
- } | undefined;
544
- } | undefined;
545
- isVisible?: string | boolean | undefined;
546
- dark?: boolean | undefined;
547
- light?: boolean | undefined;
548
- theme?: string | undefined;
549
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
550
- name: string;
551
- parent?: {
552
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
553
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
554
- allowDuplicate: boolean;
555
- autofocus: boolean;
556
- children: {
557
- [x: string]: any;
558
- allowDuplicate?: boolean | undefined;
559
- autofocus?: boolean | undefined;
560
- children?: any[] | undefined;
561
- componentId?: number | undefined;
562
- cssClass?: string | undefined;
563
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
564
- events?: {
565
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
566
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
570
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
571
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
- } | undefined;
575
- directives?: {
576
- [x: string]: {
577
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
578
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
581
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
582
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
583
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
- } | undefined;
587
- touch?: {
588
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
589
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
591
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
592
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
593
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
594
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
595
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
596
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
597
- } | undefined;
598
- } | undefined;
599
- isVisible?: string | boolean | undefined;
600
- dark?: boolean | undefined;
601
- light?: boolean | undefined;
602
- theme?: string | undefined;
603
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
604
- name: string;
605
- parent?: any | undefined;
606
- tabStop?: boolean | undefined;
607
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
608
- fillHeight?: boolean | undefined;
609
- }[];
610
- componentId: number;
611
- cssClass: string;
612
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
613
- events: {
614
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
615
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
- };
624
- directives: {
625
- [x: string]: {
626
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
627
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
- } | undefined;
636
- touch?: {
637
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
638
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
645
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
- } | undefined;
647
- };
648
- isVisible: string | boolean;
649
- dark: boolean;
650
- light: boolean;
651
- theme?: string | undefined;
652
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
653
- name: string;
654
- parent?: any | undefined;
655
- tabStop: boolean;
656
- userProperties: import("@zeedhi/core").IDictionary<any>;
657
- fillHeight: boolean;
658
- } | undefined;
659
- tabStop?: boolean | undefined;
660
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
661
- fillHeight?: boolean | undefined;
662
- }[] | undefined;
663
- component: string;
664
- allowDuplicate?: boolean | undefined;
665
- autofocus?: boolean | undefined;
666
- componentId?: number | undefined;
667
- cssClass?: string | undefined;
668
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
669
- directives?: {
670
- [x: string]: {
671
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
672
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- } | undefined;
681
- touch?: {
682
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
683
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- } | undefined;
692
- } | undefined;
693
- isVisible?: string | boolean | undefined;
694
- dark?: boolean | undefined;
695
- light?: boolean | undefined;
696
- theme?: string | undefined;
697
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
698
- name: string;
699
- parent?: {
700
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
701
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
702
- allowDuplicate: boolean;
703
- autofocus: boolean;
704
- children: {
705
- [x: string]: any;
706
- allowDuplicate?: boolean | undefined;
707
- autofocus?: boolean | undefined;
708
- children?: any[] | undefined;
709
- componentId?: number | undefined;
710
- cssClass?: string | undefined;
711
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
712
- events?: {
713
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
714
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- } | undefined;
723
- directives?: {
724
- [x: string]: {
725
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
726
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
733
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
- } | undefined;
735
- touch?: {
736
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
737
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
- } | undefined;
746
- } | undefined;
747
- isVisible?: string | boolean | undefined;
748
- dark?: boolean | undefined;
749
- light?: boolean | undefined;
750
- theme?: string | undefined;
751
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
752
- name: string;
753
- parent?: any | undefined;
754
- tabStop?: boolean | undefined;
755
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
756
- fillHeight?: boolean | undefined;
757
- }[];
758
- componentId: number;
759
- cssClass: string;
760
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
761
- events: {
762
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
763
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- };
772
- directives: {
773
- [x: string]: {
774
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
775
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
782
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
- } | undefined;
784
- touch?: {
785
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
786
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
- } | undefined;
795
- };
796
- isVisible: string | boolean;
797
- dark: boolean;
798
- light: boolean;
799
- theme?: string | undefined;
800
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
801
- name: string;
802
- parent?: any | undefined;
803
- tabStop: boolean;
804
- userProperties: import("@zeedhi/core").IDictionary<any>;
805
- fillHeight: boolean;
806
- } | undefined;
807
- tabStop?: boolean | undefined;
808
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
809
- fillHeight?: boolean | undefined;
810
- };
811
- prevButton: {
812
- [x: string]: any;
813
- absolute?: boolean | undefined;
814
- block?: boolean | undefined;
815
- bottom?: boolean | undefined;
816
- color?: string | undefined;
817
- disabled?: boolean | undefined;
818
- events?: {
819
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
820
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
821
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
822
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
823
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
824
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
825
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
826
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
827
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
828
- } | undefined;
829
- fab?: boolean | undefined;
830
- fixed?: boolean | undefined;
831
- flat?: boolean | undefined;
832
- href?: string | undefined;
833
- icon?: boolean | undefined;
834
- iconName?: string | undefined;
835
- label?: string | undefined;
836
- large?: boolean | undefined;
837
- left?: boolean | undefined;
838
- outline?: boolean | undefined;
839
- reverse?: boolean | undefined;
840
- right?: boolean | undefined;
841
- round?: string | number | boolean | undefined;
842
- small?: boolean | undefined;
843
- target?: string | undefined;
844
- tile?: boolean | undefined;
845
- to?: string | undefined;
846
- top?: boolean | undefined;
847
- type?: string | undefined;
848
- width?: string | number | undefined;
849
- active?: boolean | undefined;
850
- appendIcon?: string | undefined;
851
- border?: string | number | boolean | undefined;
852
- density?: "default" | "comfortable" | "compact" | undefined;
853
- elevation?: string | number | undefined;
854
- loading?: string | boolean | undefined;
855
- position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
856
- prependIcon?: string | undefined;
857
- replace?: boolean | undefined;
858
- ripple?: boolean | undefined;
859
- selectedClass?: string | undefined;
860
- size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
861
- stacked?: boolean | undefined;
862
- tag?: string | undefined;
863
- variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
864
- children?: {
865
- [x: string]: any;
866
- children?: any[] | undefined;
867
- component: string;
868
- allowDuplicate?: boolean | undefined;
869
- autofocus?: boolean | undefined;
870
- componentId?: number | undefined;
871
- cssClass?: string | undefined;
872
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
873
- events?: {
874
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
875
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
876
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
- } | undefined;
884
- directives?: {
885
- [x: string]: {
886
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
887
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
888
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
889
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
- } | undefined;
896
- touch?: {
897
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
898
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
899
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
- } | undefined;
907
- } | undefined;
908
- isVisible?: string | boolean | undefined;
909
- dark?: boolean | undefined;
910
- light?: boolean | undefined;
911
- theme?: string | undefined;
912
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
913
- name: string;
914
- parent?: {
915
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
916
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
917
- allowDuplicate: boolean;
918
- autofocus: boolean;
919
- children: {
920
- [x: string]: any;
921
- allowDuplicate?: boolean | undefined;
922
- autofocus?: boolean | undefined;
923
- children?: any[] | undefined;
924
- componentId?: number | undefined;
925
- cssClass?: string | undefined;
926
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
927
- events?: {
928
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
929
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
932
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
937
- } | undefined;
938
- directives?: {
939
- [x: string]: {
940
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
941
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
942
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
943
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
948
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
- } | undefined;
950
- touch?: {
951
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
952
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
- } | undefined;
961
- } | undefined;
962
- isVisible?: string | boolean | undefined;
963
- dark?: boolean | undefined;
964
- light?: boolean | undefined;
965
- theme?: string | undefined;
966
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
967
- name: string;
968
- parent?: any | undefined;
969
- tabStop?: boolean | undefined;
970
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
971
- fillHeight?: boolean | undefined;
972
- }[];
973
- componentId: number;
974
- cssClass: string;
975
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
976
- events: {
977
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
978
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
- };
987
- directives: {
988
- [x: string]: {
989
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
990
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
991
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
992
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
993
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
994
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
995
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
997
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
998
- } | undefined;
999
- touch?: {
1000
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1001
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1006
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1009
- } | undefined;
1010
- };
1011
- isVisible: string | boolean;
1012
- dark: boolean;
1013
- light: boolean;
1014
- theme?: string | undefined;
1015
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1016
- name: string;
1017
- parent?: any | undefined;
1018
- tabStop: boolean;
1019
- userProperties: import("@zeedhi/core").IDictionary<any>;
1020
- fillHeight: boolean;
1021
- } | undefined;
1022
- tabStop?: boolean | undefined;
1023
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1024
- fillHeight?: boolean | undefined;
1025
- }[] | undefined;
1026
- component: string;
1027
- allowDuplicate?: boolean | undefined;
1028
- autofocus?: boolean | undefined;
1029
- componentId?: number | undefined;
1030
- cssClass?: string | undefined;
1031
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1032
- directives?: {
1033
- [x: string]: {
1034
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1035
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1043
- } | undefined;
1044
- touch?: {
1045
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1046
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1047
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
- } | undefined;
1055
- } | undefined;
1056
- isVisible?: string | boolean | undefined;
1057
- dark?: boolean | undefined;
1058
- light?: boolean | undefined;
1059
- theme?: string | undefined;
1060
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1061
- name: string;
1062
- parent?: {
1063
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1064
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1065
- allowDuplicate: boolean;
1066
- autofocus: boolean;
1067
- children: {
1068
- [x: string]: any;
1069
- allowDuplicate?: boolean | undefined;
1070
- autofocus?: boolean | undefined;
1071
- children?: any[] | undefined;
1072
- componentId?: number | undefined;
1073
- cssClass?: string | undefined;
1074
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1075
- events?: {
1076
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1077
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1082
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
- } | undefined;
1086
- directives?: {
1087
- [x: string]: {
1088
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1089
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1097
- } | undefined;
1098
- touch?: {
1099
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1100
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
- } | undefined;
1109
- } | undefined;
1110
- isVisible?: string | boolean | undefined;
1111
- dark?: boolean | undefined;
1112
- light?: boolean | undefined;
1113
- theme?: string | undefined;
1114
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1115
- name: string;
1116
- parent?: any | undefined;
1117
- tabStop?: boolean | undefined;
1118
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1119
- fillHeight?: boolean | undefined;
1120
- }[];
1121
- componentId: number;
1122
- cssClass: string;
1123
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1124
- events: {
1125
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1126
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1127
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1128
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
- };
1135
- directives: {
1136
- [x: string]: {
1137
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1138
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1139
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1140
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
- } | undefined;
1147
- touch?: {
1148
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1149
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1150
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1151
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1152
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1153
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1154
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
- } | undefined;
1158
- };
1159
- isVisible: string | boolean;
1160
- dark: boolean;
1161
- light: boolean;
1162
- theme?: string | undefined;
1163
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1164
- name: string;
1165
- parent?: any | undefined;
1166
- tabStop: boolean;
1167
- userProperties: import("@zeedhi/core").IDictionary<any>;
1168
- fillHeight: boolean;
1169
- } | undefined;
1170
- tabStop?: boolean | undefined;
1171
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1172
- fillHeight?: boolean | undefined;
1173
- };
1174
- slideTo: (index: number) => void;
1175
- slideNext: () => void;
1176
- slidePrev: () => void;
1177
- beforeSlide: (element: any, slideData: ISlideData, event?: Event | undefined) => void;
1178
- slide: (element: any, slideData: ISlideData, event?: Event | undefined) => void;
1179
- children: {
1180
- [x: string]: any;
1181
- children?: any[] | undefined;
1182
- component: string;
1183
- allowDuplicate?: boolean | undefined;
1184
- autofocus?: boolean | undefined;
1185
- componentId?: number | undefined;
1186
- cssClass?: string | undefined;
1187
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1188
- events?: {
1189
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1190
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1191
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1192
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1193
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1194
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1195
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1198
- } | undefined;
1199
- directives?: {
1200
- [x: string]: {
1201
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1202
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1203
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1204
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1205
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1206
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1207
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
- } | undefined;
1211
- touch?: {
1212
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1213
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1217
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1218
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
- } | undefined;
1222
- } | undefined;
1223
- isVisible?: string | boolean | undefined;
1224
- dark?: boolean | undefined;
1225
- light?: boolean | undefined;
1226
- theme?: string | undefined;
1227
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1228
- name: string;
1229
- parent?: {
1230
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1231
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1232
- allowDuplicate: boolean;
1233
- autofocus: boolean;
1234
- children: {
1235
- [x: string]: any;
1236
- allowDuplicate?: boolean | undefined;
1237
- autofocus?: boolean | undefined;
1238
- children?: any[] | undefined;
1239
- componentId?: number | undefined;
1240
- cssClass?: string | undefined;
1241
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1242
- events?: {
1243
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1244
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1245
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1246
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1247
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
- } | undefined;
1253
- directives?: {
1254
- [x: string]: {
1255
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1256
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1257
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1258
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1259
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1260
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1261
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1263
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1264
- } | undefined;
1265
- touch?: {
1266
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1267
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1268
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1269
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1270
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1271
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1272
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1273
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
- } | undefined;
1276
- } | undefined;
1277
- isVisible?: string | boolean | undefined;
1278
- dark?: boolean | undefined;
1279
- light?: boolean | undefined;
1280
- theme?: string | undefined;
1281
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1282
- name: string;
1283
- parent?: any | undefined;
1284
- tabStop?: boolean | undefined;
1285
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1286
- fillHeight?: boolean | undefined;
1287
- }[];
1288
- componentId: number;
1289
- cssClass: string;
1290
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1291
- events: {
1292
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1293
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1294
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1295
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1296
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
- };
1302
- directives: {
1303
- [x: string]: {
1304
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1305
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1306
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1307
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1308
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1309
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1310
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1312
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1313
- } | undefined;
1314
- touch?: {
1315
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1316
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1317
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1318
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1319
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1320
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1321
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1322
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1323
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1324
- } | undefined;
1325
- };
1326
- isVisible: string | boolean;
1327
- dark: boolean;
1328
- light: boolean;
1329
- theme?: string | undefined;
1330
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1331
- name: string;
1332
- parent?: any | undefined;
1333
- tabStop: boolean;
1334
- userProperties: import("@zeedhi/core").IDictionary<any>;
1335
- fillHeight: boolean;
1336
- } | undefined;
1337
- tabStop?: boolean | undefined;
1338
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1339
- fillHeight?: boolean | undefined;
1340
- }[];
1341
- component: string;
1342
- allowDuplicate: boolean;
1343
- autofocus: boolean;
1344
- childrenInstances: any[];
1345
- cssClass: string;
1346
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1347
- directives: {
1348
- [x: string]: {
1349
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1350
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1351
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1352
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1353
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1354
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1355
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1356
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1357
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1358
- } | undefined;
1359
- touch?: {
1360
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1361
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1362
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1363
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1364
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1365
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1366
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1367
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1368
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1369
- } | undefined;
1370
- };
1371
- isVisible: boolean;
1372
- name: string;
1373
- dark: boolean;
1374
- light: boolean;
1375
- theme?: string | undefined;
1376
- parent?: {
1377
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1378
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1379
- allowDuplicate: boolean;
1380
- autofocus: boolean;
1381
- children: {
1382
- [x: string]: any;
1383
- allowDuplicate?: boolean | undefined;
1384
- autofocus?: boolean | undefined;
1385
- children?: any[] | undefined;
1386
- componentId?: number | undefined;
1387
- cssClass?: string | undefined;
1388
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1389
- events?: {
1390
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1391
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1392
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1393
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1394
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1395
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1396
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1397
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1398
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1399
- } | undefined;
1400
- directives?: {
1401
- [x: string]: {
1402
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1403
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1404
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1405
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1406
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1407
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1408
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1409
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1410
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1411
- } | undefined;
1412
- touch?: {
1413
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1414
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1415
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1420
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1421
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1422
- } | undefined;
1423
- } | undefined;
1424
- isVisible?: string | boolean | undefined;
1425
- dark?: boolean | undefined;
1426
- light?: boolean | undefined;
1427
- theme?: string | undefined;
1428
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1429
- name: string;
1430
- parent?: any | undefined;
1431
- tabStop?: boolean | undefined;
1432
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1433
- fillHeight?: boolean | undefined;
1434
- }[];
1435
- componentId: number;
1436
- cssClass: string;
1437
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1438
- events: {
1439
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1440
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1443
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1444
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1445
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1446
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1447
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1448
- };
1449
- directives: {
1450
- [x: string]: {
1451
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1452
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1453
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1454
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1455
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1456
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1457
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1458
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1459
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1460
- } | undefined;
1461
- touch?: {
1462
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1463
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1464
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1465
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1466
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1467
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1468
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1469
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
- } | undefined;
1472
- };
1473
- isVisible: string | boolean;
1474
- dark: boolean;
1475
- light: boolean;
1476
- theme?: string | undefined;
1477
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1478
- name: string;
1479
- parent?: any | undefined;
1480
- tabStop: boolean;
1481
- userProperties: import("@zeedhi/core").IDictionary<any>;
1482
- fillHeight: boolean;
1483
- } | undefined;
1484
- componentId: number;
1485
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1486
- isFocused: boolean;
1487
- tabStop: boolean;
1488
- userProperties: import("@zeedhi/core").IDictionary<any>;
1489
- setViewFocus: (viewFocus: () => void) => void;
1490
- setFocus: () => void;
1491
- callEvent: (eventName: string, args: any) => boolean;
1492
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1493
- removeChild: (name: string) => void;
1494
- getChildInstance: <T_1>(name: string) => T_1;
1495
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1496
- onCreated: () => void;
1497
- onBeforeMount: () => void;
1498
- onMounted: (element: any) => void;
1499
- onBeforeDestroy: () => void;
1500
- onDestroyed: () => void;
1501
- click: (event?: Event | undefined, element?: any) => void;
1502
- focus: (event: Event, element: any) => void;
1503
- blur: (event: Event, element: any) => void;
1504
- mouseenter: (event?: Event | undefined, element?: any) => void;
1505
- mouseleave: (event?: Event | undefined, element?: any) => void;
1506
- mouseout: (event?: Event | undefined, element?: any) => void;
1507
- mouseover: (event?: Event | undefined, element?: any) => void;
1508
- };
1509
- root: Readonly<import("vue").ShallowRef<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
1510
- infiniteScrollProp: import("vue").ComputedRef<boolean>;
1511
- initialSlideProp: import("vue").ComputedRef<string | number>;
1512
- progressWidth: import("vue").ComputedRef<string>;
1513
- isHovered: boolean;
1514
- click: (event: Event) => void;
1515
- focus: (event: Event) => void;
1516
- blur: (event: Event) => void;
1517
- mouseenter: (event: Event) => void;
1518
- mouseleave: (event: Event) => void;
1519
- beforeSlide: (slideData: ISlideData) => void;
1520
- slide: (slideData: ISlideData) => void;
1521
- setEvent: (event: any) => void;
1522
- Carousel: import("vue").DefineComponent<{
1523
- autoplay?: number | undefined;
1524
- breakpointMode?: "viewport" | "carousel" | undefined;
1525
- breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1526
- dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1527
- enabled: boolean;
1528
- gap: number;
1529
- height: string | number;
1530
- i18n: {
1531
- ariaGallery?: string | undefined;
1532
- ariaNavigateToPage?: string | undefined;
1533
- ariaNavigateToSlide?: string | undefined;
1534
- ariaNextSlide?: string | undefined;
1535
- ariaPreviousSlide?: string | undefined;
1536
- iconArrowDown?: string | undefined;
1537
- iconArrowLeft?: string | undefined;
1538
- iconArrowRight?: string | undefined;
1539
- iconArrowUp?: string | undefined;
1540
- itemXofY?: string | undefined;
1541
- };
1542
- ignoreAnimations: string | boolean | string[];
1543
- itemsToScroll: number;
1544
- itemsToShow: number | "auto";
1545
- modelValue?: number | undefined;
1546
- mouseDrag?: boolean | undefined;
1547
- pauseAutoplayOnHover?: boolean | undefined;
1548
- preventExcessiveDragging: boolean;
1549
- slideEffect: "slide" | "fade";
1550
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1551
- touchDrag?: boolean | undefined;
1552
- transition?: number | undefined;
1553
- wrapAround?: boolean | undefined;
1554
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1555
- [key: string]: any;
1556
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, "slide-registered" | "slide-unregistered" | "drag" | "before-init" | "init" | "loop" | "slide-end" | "slide-start" | "update:modelValue", import("vue").PublicProps, Readonly<{
1557
- autoplay?: number | undefined;
1558
- breakpointMode?: "viewport" | "carousel" | undefined;
1559
- breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1560
- dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1561
- enabled: boolean;
1562
- gap: number;
1563
- height: string | number;
1564
- i18n: {
1565
- ariaGallery?: string | undefined;
1566
- ariaNavigateToPage?: string | undefined;
1567
- ariaNavigateToSlide?: string | undefined;
1568
- ariaNextSlide?: string | undefined;
1569
- ariaPreviousSlide?: string | undefined;
1570
- iconArrowDown?: string | undefined;
1571
- iconArrowLeft?: string | undefined;
1572
- iconArrowRight?: string | undefined;
1573
- iconArrowUp?: string | undefined;
1574
- itemXofY?: string | undefined;
1575
- };
1576
- ignoreAnimations: string | boolean | string[];
1577
- itemsToScroll: number;
1578
- itemsToShow: number | "auto";
1579
- modelValue?: number | undefined;
1580
- mouseDrag?: boolean | undefined;
1581
- pauseAutoplayOnHover?: boolean | undefined;
1582
- preventExcessiveDragging: boolean;
1583
- slideEffect: "slide" | "fade";
1584
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1585
- touchDrag?: boolean | undefined;
1586
- transition?: number | undefined;
1587
- wrapAround?: boolean | undefined;
1588
- }> & Readonly<{}>, {
1589
- breakpoints: import("vue3-carousel").Breakpoints | undefined;
1590
- modelValue: number;
1591
- breakpointMode: "viewport" | "carousel";
1592
- autoplay: number;
1593
- dir: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top";
1594
- enabled: boolean;
1595
- gap: number;
1596
- height: string | number;
1597
- i18n: {
1598
- ariaGallery?: string | undefined;
1599
- ariaNavigateToPage?: string | undefined;
1600
- ariaNavigateToSlide?: string | undefined;
1601
- ariaNextSlide?: string | undefined;
1602
- ariaPreviousSlide?: string | undefined;
1603
- iconArrowDown?: string | undefined;
1604
- iconArrowLeft?: string | undefined;
1605
- iconArrowRight?: string | undefined;
1606
- iconArrowUp?: string | undefined;
1607
- itemXofY?: string | undefined;
1608
- };
1609
- ignoreAnimations: string | boolean | string[];
1610
- itemsToScroll: number;
1611
- itemsToShow: string | number;
1612
- mouseDrag: boolean;
1613
- pauseAutoplayOnHover: boolean;
1614
- preventExcessiveDragging: boolean;
1615
- slideEffect: "slide" | "fade";
1616
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1617
- touchDrag: boolean;
1618
- transition: number;
1619
- wrapAround: boolean;
1620
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1621
- Slide: import("vue").DefineComponent<{
1622
- readonly id?: string | undefined;
1623
- readonly index: number;
1624
- readonly isClone?: boolean | undefined;
1625
- readonly position?: "before" | "after" | undefined;
1626
- }, (() => string) | (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1627
- [key: string]: any;
1628
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1629
- [key: string]: any;
1630
- }>[] | undefined), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
1631
- readonly id?: string | undefined;
1632
- readonly index: number;
1633
- readonly isClone?: boolean | undefined;
1634
- readonly position?: "before" | "after" | undefined;
1635
- }> & Readonly<{}>, {
1636
- isClone: boolean;
1637
- position: string;
1638
- index: number;
1639
- id: string;
1640
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1641
- Navigation: import("vue").DefineComponent<import("vue3-carousel").NavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").NavigationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1642
- Pagination: import("vue").DefineComponent<import("vue3-carousel").PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").PaginationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1643
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1644
- autoPlay: {
1645
- type: (StringConstructor | BooleanConstructor)[];
1646
- default: boolean;
1647
- };
1648
- buttonsOutside: {
1649
- type: (StringConstructor | BooleanConstructor)[];
1650
- default: boolean;
1651
- };
1652
- center: {
1653
- type: (StringConstructor | BooleanConstructor)[];
1654
- default: boolean;
1655
- };
1656
- currentSlide: {
1657
- type: (StringConstructor | NumberConstructor)[];
1658
- };
1659
- fractionPagination: {
1660
- type: (StringConstructor | BooleanConstructor)[];
1661
- default: boolean;
1662
- };
1663
- height: {
1664
- type: (StringConstructor | NumberConstructor)[];
1665
- default: string;
1666
- };
1667
- maxHeight: {
1668
- type: (StringConstructor | NumberConstructor)[];
1669
- default: string;
1670
- };
1671
- minHeight: {
1672
- type: (StringConstructor | NumberConstructor)[];
1673
- default: string;
1674
- };
1675
- fillHeight: {
1676
- type: (StringConstructor | BooleanConstructor)[];
1677
- default: boolean;
1678
- };
1679
- infiniteScroll: {
1680
- type: (StringConstructor | BooleanConstructor)[];
1681
- default: boolean;
1682
- };
1683
- initialSlide: {
1684
- type: (StringConstructor | NumberConstructor)[];
1685
- default: number;
1686
- };
1687
- interval: {
1688
- type: (StringConstructor | NumberConstructor)[];
1689
- default: number;
1690
- };
1691
- keysControl: {
1692
- type: (StringConstructor | BooleanConstructor)[];
1693
- default: boolean;
1694
- };
1695
- mouseControl: {
1696
- type: (StringConstructor | BooleanConstructor)[];
1697
- default: boolean;
1698
- };
1699
- paginationBackground: {
1700
- type: (StringConstructor | BooleanConstructor)[];
1701
- default: boolean;
1702
- };
1703
- pauseOnHover: {
1704
- type: (StringConstructor | BooleanConstructor)[];
1705
- default: boolean;
1706
- };
1707
- showArrows: {
1708
- type: (StringConstructor | BooleanConstructor)[];
1709
- default: boolean;
1710
- };
1711
- showArrowsOnHover: {
1712
- type: (StringConstructor | BooleanConstructor)[];
1713
- default: boolean;
1714
- };
1715
- showPagination: {
1716
- type: (StringConstructor | BooleanConstructor)[];
1717
- default: boolean;
1718
- };
1719
- showProgress: {
1720
- type: (StringConstructor | BooleanConstructor)[];
1721
- default: boolean;
1722
- };
1723
- slideCssClass: {
1724
- type: StringConstructor;
1725
- default: string;
1726
- };
1727
- slidesPerView: {
1728
- type: (StringConstructor | NumberConstructor)[];
1729
- default: number;
1730
- };
1731
- slidesToSlide: {
1732
- type: (StringConstructor | NumberConstructor)[];
1733
- default: number;
1734
- };
1735
- touchControl: {
1736
- type: (StringConstructor | BooleanConstructor)[];
1737
- default: boolean;
1738
- };
1739
- transitionDuration: {
1740
- type: (StringConstructor | NumberConstructor)[];
1741
- default: number;
1742
- };
1743
- wheelControl: {
1744
- type: (StringConstructor | BooleanConstructor)[];
1745
- default: boolean;
1746
- };
1747
- nextButton: {
1748
- type: ObjectConstructor;
1749
- default: () => {
1750
- name: string;
1751
- component: string;
1752
- iconName: string;
1753
- icon: boolean;
1754
- large: boolean;
1755
- };
1756
- };
1757
- prevButton: {
1758
- type: ObjectConstructor;
1759
- default: () => {
1760
- name: string;
1761
- component: string;
1762
- iconName: string;
1763
- icon: boolean;
1764
- large: boolean;
1765
- };
1766
- };
1767
- children: {
1768
- type: (StringConstructor | {
1769
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1770
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1771
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1772
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1773
- isArray(arg: any): arg is any[];
1774
- readonly prototype: any[];
1775
- from<T>(arrayLike: ArrayLike<T>): T[];
1776
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1777
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1778
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1779
- of<T_4>(...items: T_4[]): T_4[];
1780
- readonly [Symbol.species]: ArrayConstructor;
1781
- })[];
1782
- default(): never[];
1783
- };
1784
- component: {
1785
- type: StringConstructor;
1786
- };
1787
- allowDuplicate: {
1788
- type: (StringConstructor | BooleanConstructor)[];
1789
- default: boolean;
1790
- };
1791
- autofocus: {
1792
- type: (StringConstructor | BooleanConstructor)[];
1793
- default: boolean;
1794
- };
1795
- cssClass: {
1796
- type: StringConstructor;
1797
- default: string;
1798
- };
1799
- cssStyle: {
1800
- type: (StringConstructor | (() => import("vue").StyleValue))[];
1801
- default: string;
1802
- };
1803
- dark: {
1804
- type: (StringConstructor | BooleanConstructor)[];
1805
- default: boolean;
1806
- };
1807
- directives: {
1808
- type: ObjectConstructor;
1809
- default(): {};
1810
- };
1811
- events: {
1812
- type: ObjectConstructor;
1813
- default(): {};
1814
- };
1815
- instanceObject: {
1816
- type: ObjectConstructor;
1817
- };
1818
- isVisible: {
1819
- type: (StringConstructor | BooleanConstructor)[];
1820
- default: boolean;
1821
- };
1822
- keyMap: {
1823
- type: ObjectConstructor;
1824
- default(): {};
1825
- };
1826
- light: {
1827
- type: (StringConstructor | BooleanConstructor)[];
1828
- default: boolean;
1829
- };
1830
- name: {
1831
- type: StringConstructor;
1832
- required: true;
1833
- };
1834
- parent: {
1835
- type: ObjectConstructor;
1836
- };
1837
- tabStop: {
1838
- type: (StringConstructor | BooleanConstructor)[];
1839
- default: boolean;
1840
- };
1841
- theme: {
1842
- type: StringConstructor;
1843
- };
1844
- }>> & Readonly<{}>, {
1845
- allowDuplicate: string | boolean;
1846
- autofocus: string | boolean;
1847
- children: string | import("@zeedhi/common").IComponentRender[];
1848
- cssClass: string;
1849
- cssStyle: import("vue").StyleValue;
1850
- dark: string | boolean;
1851
- directives: Record<string, any>;
1852
- events: Record<string, any>;
1853
- isVisible: string | boolean;
1854
- keyMap: Record<string, any>;
1855
- light: string | boolean;
1856
- tabStop: string | boolean;
1857
- autoPlay: string | boolean;
1858
- buttonsOutside: string | boolean;
1859
- center: string | boolean;
1860
- fractionPagination: string | boolean;
1861
- height: string | number;
1862
- maxHeight: string | number;
1863
- minHeight: string | number;
1864
- fillHeight: string | boolean;
1865
- infiniteScroll: string | boolean;
1866
- initialSlide: string | number;
1867
- interval: string | number;
1868
- keysControl: string | boolean;
1869
- mouseControl: string | boolean;
1870
- paginationBackground: string | boolean;
1871
- pauseOnHover: string | boolean;
1872
- showArrows: string | boolean;
1873
- showArrowsOnHover: string | boolean;
1874
- showPagination: string | boolean;
1875
- showProgress: string | boolean;
1876
- slideCssClass: string;
1877
- slidesPerView: string | number;
1878
- slidesToSlide: string | number;
1879
- touchControl: string | boolean;
1880
- transitionDuration: string | number;
1881
- wheelControl: string | boolean;
1882
- nextButton: Record<string, any>;
1883
- prevButton: Record<string, any>;
1884
- }, {}, {
1885
- Carousel: import("vue").DefineComponent<{
1886
- autoplay?: number | undefined;
1887
- breakpointMode?: "viewport" | "carousel" | undefined;
1888
- breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1889
- dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1890
- enabled: boolean;
1891
- gap: number;
1892
- height: string | number;
1893
- i18n: {
1894
- ariaGallery?: string | undefined;
1895
- ariaNavigateToPage?: string | undefined;
1896
- ariaNavigateToSlide?: string | undefined;
1897
- ariaNextSlide?: string | undefined;
1898
- ariaPreviousSlide?: string | undefined;
1899
- iconArrowDown?: string | undefined;
1900
- iconArrowLeft?: string | undefined;
1901
- iconArrowRight?: string | undefined;
1902
- iconArrowUp?: string | undefined;
1903
- itemXofY?: string | undefined;
1904
- };
1905
- ignoreAnimations: string | boolean | string[];
1906
- itemsToScroll: number;
1907
- itemsToShow: number | "auto";
1908
- modelValue?: number | undefined;
1909
- mouseDrag?: boolean | undefined;
1910
- pauseAutoplayOnHover?: boolean | undefined;
1911
- preventExcessiveDragging: boolean;
1912
- slideEffect: "slide" | "fade";
1913
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1914
- touchDrag?: boolean | undefined;
1915
- transition?: number | undefined;
1916
- wrapAround?: boolean | undefined;
1917
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1918
- [key: string]: any;
1919
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, "slide-registered" | "slide-unregistered" | "drag" | "before-init" | "init" | "loop" | "slide-end" | "slide-start" | "update:modelValue", import("vue").PublicProps, Readonly<{
1920
- autoplay?: number | undefined;
1921
- breakpointMode?: "viewport" | "carousel" | undefined;
1922
- breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1923
- dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1924
- enabled: boolean;
1925
- gap: number;
1926
- height: string | number;
1927
- i18n: {
1928
- ariaGallery?: string | undefined;
1929
- ariaNavigateToPage?: string | undefined;
1930
- ariaNavigateToSlide?: string | undefined;
1931
- ariaNextSlide?: string | undefined;
1932
- ariaPreviousSlide?: string | undefined;
1933
- iconArrowDown?: string | undefined;
1934
- iconArrowLeft?: string | undefined;
1935
- iconArrowRight?: string | undefined;
1936
- iconArrowUp?: string | undefined;
1937
- itemXofY?: string | undefined;
1938
- };
1939
- ignoreAnimations: string | boolean | string[];
1940
- itemsToScroll: number;
1941
- itemsToShow: number | "auto";
1942
- modelValue?: number | undefined;
1943
- mouseDrag?: boolean | undefined;
1944
- pauseAutoplayOnHover?: boolean | undefined;
1945
- preventExcessiveDragging: boolean;
1946
- slideEffect: "slide" | "fade";
1947
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1948
- touchDrag?: boolean | undefined;
1949
- transition?: number | undefined;
1950
- wrapAround?: boolean | undefined;
1951
- }> & Readonly<{}>, {
1952
- breakpoints: import("vue3-carousel").Breakpoints | undefined;
1953
- modelValue: number;
1954
- breakpointMode: "viewport" | "carousel";
1955
- autoplay: number;
1956
- dir: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top";
1957
- enabled: boolean;
1958
- gap: number;
1959
- height: string | number;
1960
- i18n: {
1961
- ariaGallery?: string | undefined;
1962
- ariaNavigateToPage?: string | undefined;
1963
- ariaNavigateToSlide?: string | undefined;
1964
- ariaNextSlide?: string | undefined;
1965
- ariaPreviousSlide?: string | undefined;
1966
- iconArrowDown?: string | undefined;
1967
- iconArrowLeft?: string | undefined;
1968
- iconArrowRight?: string | undefined;
1969
- iconArrowUp?: string | undefined;
1970
- itemXofY?: string | undefined;
1971
- };
1972
- ignoreAnimations: string | boolean | string[];
1973
- itemsToScroll: number;
1974
- itemsToShow: string | number;
1975
- mouseDrag: boolean;
1976
- pauseAutoplayOnHover: boolean;
1977
- preventExcessiveDragging: boolean;
1978
- slideEffect: "slide" | "fade";
1979
- snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1980
- touchDrag: boolean;
1981
- transition: number;
1982
- wrapAround: boolean;
1983
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1984
- Slide: import("vue").DefineComponent<{
1985
- readonly id?: string | undefined;
1986
- readonly index: number;
1987
- readonly isClone?: boolean | undefined;
1988
- readonly position?: "before" | "after" | undefined;
1989
- }, (() => string) | (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1990
- [key: string]: any;
1991
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1992
- [key: string]: any;
1993
- }>[] | undefined), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
1994
- readonly id?: string | undefined;
1995
- readonly index: number;
1996
- readonly isClone?: boolean | undefined;
1997
- readonly position?: "before" | "after" | undefined;
1998
- }> & Readonly<{}>, {
1999
- isClone: boolean;
2000
- position: string;
2001
- index: number;
2002
- id: string;
2003
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2004
- Pagination: import("vue").DefineComponent<import("vue3-carousel").PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").PaginationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2005
- Navigation: import("vue").DefineComponent<import("vue3-carousel").NavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").NavigationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2006
- }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2007
- export default carouselComponent;
1
+ import { ISlideData } from '@zeedhi/common';
2
+ import { ComponentPublicInstance } from 'vue';
3
+ import 'vue3-carousel/dist/carousel.css';
4
+ export declare const ZdCarouselProps: {
5
+ autoPlay: {
6
+ type: (BooleanConstructor | StringConstructor)[];
7
+ default: boolean;
8
+ };
9
+ buttonsOutside: {
10
+ type: (BooleanConstructor | StringConstructor)[];
11
+ default: boolean;
12
+ };
13
+ center: {
14
+ type: (BooleanConstructor | StringConstructor)[];
15
+ default: boolean;
16
+ };
17
+ currentSlide: {
18
+ type: (NumberConstructor | StringConstructor)[];
19
+ };
20
+ fractionPagination: {
21
+ type: (BooleanConstructor | StringConstructor)[];
22
+ default: boolean;
23
+ };
24
+ height: {
25
+ type: (NumberConstructor | StringConstructor)[];
26
+ default: string;
27
+ };
28
+ maxHeight: {
29
+ type: (NumberConstructor | StringConstructor)[];
30
+ default: string;
31
+ };
32
+ minHeight: {
33
+ type: (NumberConstructor | StringConstructor)[];
34
+ default: string;
35
+ };
36
+ fillHeight: {
37
+ type: (BooleanConstructor | StringConstructor)[];
38
+ default: boolean;
39
+ };
40
+ infiniteScroll: {
41
+ type: (BooleanConstructor | StringConstructor)[];
42
+ default: boolean;
43
+ };
44
+ initialSlide: {
45
+ type: (NumberConstructor | StringConstructor)[];
46
+ default: number;
47
+ };
48
+ interval: {
49
+ type: (NumberConstructor | StringConstructor)[];
50
+ default: number;
51
+ };
52
+ keysControl: {
53
+ type: (BooleanConstructor | StringConstructor)[];
54
+ default: boolean;
55
+ };
56
+ mouseControl: {
57
+ type: (BooleanConstructor | StringConstructor)[];
58
+ default: boolean;
59
+ };
60
+ paginationBackground: {
61
+ type: (BooleanConstructor | StringConstructor)[];
62
+ default: boolean;
63
+ };
64
+ pauseOnHover: {
65
+ type: (BooleanConstructor | StringConstructor)[];
66
+ default: boolean;
67
+ };
68
+ showArrows: {
69
+ type: (BooleanConstructor | StringConstructor)[];
70
+ default: boolean;
71
+ };
72
+ showArrowsOnHover: {
73
+ type: (BooleanConstructor | StringConstructor)[];
74
+ default: boolean;
75
+ };
76
+ showPagination: {
77
+ type: (BooleanConstructor | StringConstructor)[];
78
+ default: boolean;
79
+ };
80
+ showProgress: {
81
+ type: (BooleanConstructor | StringConstructor)[];
82
+ default: boolean;
83
+ };
84
+ slideCssClass: {
85
+ type: StringConstructor;
86
+ default: string;
87
+ };
88
+ slidesPerView: {
89
+ type: (NumberConstructor | StringConstructor)[];
90
+ default: number;
91
+ };
92
+ slidesToSlide: {
93
+ type: (NumberConstructor | StringConstructor)[];
94
+ default: number;
95
+ };
96
+ touchControl: {
97
+ type: (BooleanConstructor | StringConstructor)[];
98
+ default: boolean;
99
+ };
100
+ transitionDuration: {
101
+ type: (NumberConstructor | StringConstructor)[];
102
+ default: number;
103
+ };
104
+ wheelControl: {
105
+ type: (BooleanConstructor | StringConstructor)[];
106
+ default: boolean;
107
+ };
108
+ nextButton: {
109
+ type: ObjectConstructor;
110
+ default: () => {
111
+ name: string;
112
+ component: string;
113
+ iconName: string;
114
+ icon: boolean;
115
+ large: boolean;
116
+ };
117
+ };
118
+ prevButton: {
119
+ type: ObjectConstructor;
120
+ default: () => {
121
+ name: string;
122
+ component: string;
123
+ iconName: string;
124
+ icon: boolean;
125
+ large: boolean;
126
+ };
127
+ };
128
+ children: {
129
+ type: (StringConstructor | {
130
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
131
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
132
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
133
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
134
+ isArray(arg: any): arg is any[];
135
+ readonly prototype: any[];
136
+ from<T>(arrayLike: ArrayLike<T>): T[];
137
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
138
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
139
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
140
+ of<T_4>(...items: T_4[]): T_4[];
141
+ readonly [Symbol.species]: ArrayConstructor;
142
+ })[];
143
+ default(): never[];
144
+ };
145
+ component: {
146
+ type: StringConstructor;
147
+ };
148
+ allowDuplicate: {
149
+ type: (BooleanConstructor | StringConstructor)[];
150
+ default: boolean;
151
+ };
152
+ autofocus: {
153
+ type: (BooleanConstructor | StringConstructor)[];
154
+ default: boolean;
155
+ };
156
+ cssClass: {
157
+ type: StringConstructor;
158
+ default: string;
159
+ };
160
+ cssStyle: {
161
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
162
+ default: string;
163
+ };
164
+ dark: {
165
+ type: (BooleanConstructor | StringConstructor)[];
166
+ default: boolean;
167
+ };
168
+ directives: {
169
+ type: ObjectConstructor;
170
+ default(): {};
171
+ };
172
+ events: {
173
+ type: ObjectConstructor;
174
+ default(): {};
175
+ };
176
+ instanceObject: {
177
+ type: ObjectConstructor;
178
+ };
179
+ isVisible: {
180
+ type: (BooleanConstructor | StringConstructor)[];
181
+ default: boolean;
182
+ };
183
+ keyMap: {
184
+ type: ObjectConstructor;
185
+ default(): {};
186
+ };
187
+ light: {
188
+ type: (BooleanConstructor | StringConstructor)[];
189
+ default: boolean;
190
+ };
191
+ name: {
192
+ type: StringConstructor;
193
+ required: true;
194
+ };
195
+ parent: {
196
+ type: ObjectConstructor;
197
+ };
198
+ tabStop: {
199
+ type: (BooleanConstructor | StringConstructor)[];
200
+ default: boolean;
201
+ };
202
+ theme: {
203
+ type: StringConstructor;
204
+ };
205
+ };
206
+ declare const carouselComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
207
+ autoPlay: {
208
+ type: (BooleanConstructor | StringConstructor)[];
209
+ default: boolean;
210
+ };
211
+ buttonsOutside: {
212
+ type: (BooleanConstructor | StringConstructor)[];
213
+ default: boolean;
214
+ };
215
+ center: {
216
+ type: (BooleanConstructor | StringConstructor)[];
217
+ default: boolean;
218
+ };
219
+ currentSlide: {
220
+ type: (NumberConstructor | StringConstructor)[];
221
+ };
222
+ fractionPagination: {
223
+ type: (BooleanConstructor | StringConstructor)[];
224
+ default: boolean;
225
+ };
226
+ height: {
227
+ type: (NumberConstructor | StringConstructor)[];
228
+ default: string;
229
+ };
230
+ maxHeight: {
231
+ type: (NumberConstructor | StringConstructor)[];
232
+ default: string;
233
+ };
234
+ minHeight: {
235
+ type: (NumberConstructor | StringConstructor)[];
236
+ default: string;
237
+ };
238
+ fillHeight: {
239
+ type: (BooleanConstructor | StringConstructor)[];
240
+ default: boolean;
241
+ };
242
+ infiniteScroll: {
243
+ type: (BooleanConstructor | StringConstructor)[];
244
+ default: boolean;
245
+ };
246
+ initialSlide: {
247
+ type: (NumberConstructor | StringConstructor)[];
248
+ default: number;
249
+ };
250
+ interval: {
251
+ type: (NumberConstructor | StringConstructor)[];
252
+ default: number;
253
+ };
254
+ keysControl: {
255
+ type: (BooleanConstructor | StringConstructor)[];
256
+ default: boolean;
257
+ };
258
+ mouseControl: {
259
+ type: (BooleanConstructor | StringConstructor)[];
260
+ default: boolean;
261
+ };
262
+ paginationBackground: {
263
+ type: (BooleanConstructor | StringConstructor)[];
264
+ default: boolean;
265
+ };
266
+ pauseOnHover: {
267
+ type: (BooleanConstructor | StringConstructor)[];
268
+ default: boolean;
269
+ };
270
+ showArrows: {
271
+ type: (BooleanConstructor | StringConstructor)[];
272
+ default: boolean;
273
+ };
274
+ showArrowsOnHover: {
275
+ type: (BooleanConstructor | StringConstructor)[];
276
+ default: boolean;
277
+ };
278
+ showPagination: {
279
+ type: (BooleanConstructor | StringConstructor)[];
280
+ default: boolean;
281
+ };
282
+ showProgress: {
283
+ type: (BooleanConstructor | StringConstructor)[];
284
+ default: boolean;
285
+ };
286
+ slideCssClass: {
287
+ type: StringConstructor;
288
+ default: string;
289
+ };
290
+ slidesPerView: {
291
+ type: (NumberConstructor | StringConstructor)[];
292
+ default: number;
293
+ };
294
+ slidesToSlide: {
295
+ type: (NumberConstructor | StringConstructor)[];
296
+ default: number;
297
+ };
298
+ touchControl: {
299
+ type: (BooleanConstructor | StringConstructor)[];
300
+ default: boolean;
301
+ };
302
+ transitionDuration: {
303
+ type: (NumberConstructor | StringConstructor)[];
304
+ default: number;
305
+ };
306
+ wheelControl: {
307
+ type: (BooleanConstructor | StringConstructor)[];
308
+ default: boolean;
309
+ };
310
+ nextButton: {
311
+ type: ObjectConstructor;
312
+ default: () => {
313
+ name: string;
314
+ component: string;
315
+ iconName: string;
316
+ icon: boolean;
317
+ large: boolean;
318
+ };
319
+ };
320
+ prevButton: {
321
+ type: ObjectConstructor;
322
+ default: () => {
323
+ name: string;
324
+ component: string;
325
+ iconName: string;
326
+ icon: boolean;
327
+ large: boolean;
328
+ };
329
+ };
330
+ children: {
331
+ type: (StringConstructor | {
332
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
333
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
334
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
335
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
336
+ isArray(arg: any): arg is any[];
337
+ readonly prototype: any[];
338
+ from<T>(arrayLike: ArrayLike<T>): T[];
339
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
340
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
341
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
342
+ of<T_4>(...items: T_4[]): T_4[];
343
+ readonly [Symbol.species]: ArrayConstructor;
344
+ })[];
345
+ default(): never[];
346
+ };
347
+ component: {
348
+ type: StringConstructor;
349
+ };
350
+ allowDuplicate: {
351
+ type: (BooleanConstructor | StringConstructor)[];
352
+ default: boolean;
353
+ };
354
+ autofocus: {
355
+ type: (BooleanConstructor | StringConstructor)[];
356
+ default: boolean;
357
+ };
358
+ cssClass: {
359
+ type: StringConstructor;
360
+ default: string;
361
+ };
362
+ cssStyle: {
363
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
364
+ default: string;
365
+ };
366
+ dark: {
367
+ type: (BooleanConstructor | StringConstructor)[];
368
+ default: boolean;
369
+ };
370
+ directives: {
371
+ type: ObjectConstructor;
372
+ default(): {};
373
+ };
374
+ events: {
375
+ type: ObjectConstructor;
376
+ default(): {};
377
+ };
378
+ instanceObject: {
379
+ type: ObjectConstructor;
380
+ };
381
+ isVisible: {
382
+ type: (BooleanConstructor | StringConstructor)[];
383
+ default: boolean;
384
+ };
385
+ keyMap: {
386
+ type: ObjectConstructor;
387
+ default(): {};
388
+ };
389
+ light: {
390
+ type: (BooleanConstructor | StringConstructor)[];
391
+ default: boolean;
392
+ };
393
+ name: {
394
+ type: StringConstructor;
395
+ required: true;
396
+ };
397
+ parent: {
398
+ type: ObjectConstructor;
399
+ };
400
+ tabStop: {
401
+ type: (BooleanConstructor | StringConstructor)[];
402
+ default: boolean;
403
+ };
404
+ theme: {
405
+ type: StringConstructor;
406
+ };
407
+ }>, {
408
+ instance: {
409
+ autoPlay: boolean;
410
+ buttonsOutside: boolean;
411
+ center: boolean;
412
+ currentSlide: number;
413
+ events: {
414
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam> | undefined)[] | undefined;
415
+ beforeSlide?: ((data: import("@zeedhi/common").ICarouselEventParam) => void) | undefined;
416
+ slide?: ((data: import("@zeedhi/common").ICarouselEventParam) => void) | undefined;
417
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
418
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
419
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
420
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
421
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
422
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
423
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
424
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").ICarouselEventParam, import("@zeedhi/core").IEvent<import("@zeedhi/common").ICarouselEventParam>> | undefined;
425
+ };
426
+ fractionPagination: boolean;
427
+ height: string | number;
428
+ maxHeight: string | number;
429
+ minHeight: string | number;
430
+ fillHeight: boolean;
431
+ infiniteScroll: boolean;
432
+ initialSlide: number;
433
+ interval: number;
434
+ keysControl: boolean;
435
+ mouseControl: boolean;
436
+ paginationBackground: boolean;
437
+ pauseOnHover: boolean;
438
+ showArrows: boolean;
439
+ showArrowsOnHover: boolean;
440
+ showPagination: boolean;
441
+ showProgress: boolean;
442
+ slideCssClass: string;
443
+ slidesPerView: number;
444
+ slidesToSlide: number;
445
+ touchControl: boolean;
446
+ transitionDuration: number;
447
+ wheelControl: boolean;
448
+ nextButton: {
449
+ [x: string]: any;
450
+ absolute?: boolean | undefined;
451
+ block?: boolean | undefined;
452
+ bottom?: boolean | undefined;
453
+ color?: string | undefined;
454
+ disabled?: boolean | undefined;
455
+ events?: {
456
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
457
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
458
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
459
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
460
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
461
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
462
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
463
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
464
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
465
+ } | undefined;
466
+ fab?: boolean | undefined;
467
+ fixed?: boolean | undefined;
468
+ flat?: boolean | undefined;
469
+ href?: string | undefined;
470
+ icon?: boolean | undefined;
471
+ iconName?: string | undefined;
472
+ label?: string | undefined;
473
+ large?: boolean | undefined;
474
+ left?: boolean | undefined;
475
+ outline?: boolean | undefined;
476
+ reverse?: boolean | undefined;
477
+ right?: boolean | undefined;
478
+ round?: string | number | boolean | undefined;
479
+ small?: boolean | undefined;
480
+ target?: string | undefined;
481
+ tile?: boolean | undefined;
482
+ to?: string | undefined;
483
+ top?: boolean | undefined;
484
+ type?: string | undefined;
485
+ width?: string | number | undefined;
486
+ active?: boolean | undefined;
487
+ appendIcon?: string | undefined;
488
+ border?: string | number | boolean | undefined;
489
+ density?: "default" | "comfortable" | "compact" | undefined;
490
+ elevation?: string | number | undefined;
491
+ loading?: string | boolean | undefined;
492
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
493
+ prependIcon?: string | undefined;
494
+ replace?: boolean | undefined;
495
+ ripple?: boolean | undefined;
496
+ selectedClass?: string | undefined;
497
+ size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
498
+ stacked?: boolean | undefined;
499
+ tag?: string | undefined;
500
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
501
+ children?: {
502
+ [x: string]: any;
503
+ children?: any[] | undefined;
504
+ component: string;
505
+ allowDuplicate?: boolean | undefined;
506
+ autofocus?: boolean | undefined;
507
+ componentId?: number | undefined;
508
+ cssClass?: string | undefined;
509
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
510
+ events?: {
511
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
512
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
513
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
514
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
515
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
516
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
517
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
518
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
519
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
520
+ } | undefined;
521
+ directives?: {
522
+ [x: string]: {
523
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
524
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
525
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
526
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
527
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
528
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
529
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
530
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
531
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
+ } | undefined;
533
+ touch?: {
534
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
535
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
536
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
537
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
542
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
543
+ } | undefined;
544
+ } | undefined;
545
+ isVisible?: string | boolean | undefined;
546
+ dark?: boolean | undefined;
547
+ light?: boolean | undefined;
548
+ theme?: string | undefined;
549
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
550
+ name: string;
551
+ parent?: {
552
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
553
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
554
+ allowDuplicate: boolean;
555
+ autofocus: boolean;
556
+ children: {
557
+ [x: string]: any;
558
+ allowDuplicate?: boolean | undefined;
559
+ autofocus?: boolean | undefined;
560
+ children?: any[] | undefined;
561
+ componentId?: number | undefined;
562
+ cssClass?: string | undefined;
563
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
564
+ events?: {
565
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
566
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
567
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
568
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
569
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
570
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
571
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
572
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
573
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
574
+ } | undefined;
575
+ directives?: {
576
+ [x: string]: {
577
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
578
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
579
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
580
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
581
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
582
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
583
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
+ } | undefined;
587
+ touch?: {
588
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
589
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
591
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
592
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
593
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
594
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
595
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
596
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
597
+ } | undefined;
598
+ } | undefined;
599
+ isVisible?: string | boolean | undefined;
600
+ dark?: boolean | undefined;
601
+ light?: boolean | undefined;
602
+ theme?: string | undefined;
603
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
604
+ name: string;
605
+ parent?: any | undefined;
606
+ tabStop?: boolean | undefined;
607
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
608
+ fillHeight?: boolean | undefined;
609
+ }[];
610
+ componentId: number;
611
+ cssClass: string;
612
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
613
+ events: {
614
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
615
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ };
624
+ directives: {
625
+ [x: string]: {
626
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
627
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ } | undefined;
636
+ touch?: {
637
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
638
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
645
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
+ } | undefined;
647
+ };
648
+ isVisible: string | boolean;
649
+ dark: boolean;
650
+ light: boolean;
651
+ theme?: string | undefined;
652
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
653
+ name: string;
654
+ parent?: any | undefined;
655
+ tabStop: boolean;
656
+ userProperties: import("@zeedhi/core").IDictionary<any>;
657
+ fillHeight: boolean;
658
+ } | undefined;
659
+ tabStop?: boolean | undefined;
660
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
661
+ fillHeight?: boolean | undefined;
662
+ }[] | undefined;
663
+ component: string;
664
+ allowDuplicate?: boolean | undefined;
665
+ autofocus?: boolean | undefined;
666
+ componentId?: number | undefined;
667
+ cssClass?: string | undefined;
668
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
669
+ directives?: {
670
+ [x: string]: {
671
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
672
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ } | undefined;
681
+ touch?: {
682
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
683
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
+ } | undefined;
692
+ } | undefined;
693
+ isVisible?: string | boolean | undefined;
694
+ dark?: boolean | undefined;
695
+ light?: boolean | undefined;
696
+ theme?: string | undefined;
697
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
698
+ name: string;
699
+ parent?: {
700
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
701
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
702
+ allowDuplicate: boolean;
703
+ autofocus: boolean;
704
+ children: {
705
+ [x: string]: any;
706
+ allowDuplicate?: boolean | undefined;
707
+ autofocus?: boolean | undefined;
708
+ children?: any[] | undefined;
709
+ componentId?: number | undefined;
710
+ cssClass?: string | undefined;
711
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
712
+ events?: {
713
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
714
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
+ } | undefined;
723
+ directives?: {
724
+ [x: string]: {
725
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
726
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
733
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
+ } | undefined;
735
+ touch?: {
736
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
737
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
740
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
741
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
+ } | undefined;
746
+ } | undefined;
747
+ isVisible?: string | boolean | undefined;
748
+ dark?: boolean | undefined;
749
+ light?: boolean | undefined;
750
+ theme?: string | undefined;
751
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
752
+ name: string;
753
+ parent?: any | undefined;
754
+ tabStop?: boolean | undefined;
755
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
756
+ fillHeight?: boolean | undefined;
757
+ }[];
758
+ componentId: number;
759
+ cssClass: string;
760
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
761
+ events: {
762
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
763
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
+ };
772
+ directives: {
773
+ [x: string]: {
774
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
775
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
782
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
+ } | undefined;
784
+ touch?: {
785
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
786
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
+ } | undefined;
795
+ };
796
+ isVisible: string | boolean;
797
+ dark: boolean;
798
+ light: boolean;
799
+ theme?: string | undefined;
800
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
801
+ name: string;
802
+ parent?: any | undefined;
803
+ tabStop: boolean;
804
+ userProperties: import("@zeedhi/core").IDictionary<any>;
805
+ fillHeight: boolean;
806
+ } | undefined;
807
+ tabStop?: boolean | undefined;
808
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
809
+ fillHeight?: boolean | undefined;
810
+ };
811
+ prevButton: {
812
+ [x: string]: any;
813
+ absolute?: boolean | undefined;
814
+ block?: boolean | undefined;
815
+ bottom?: boolean | undefined;
816
+ color?: string | undefined;
817
+ disabled?: boolean | undefined;
818
+ events?: {
819
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
820
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
821
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
822
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
823
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
824
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
825
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
826
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
827
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
828
+ } | undefined;
829
+ fab?: boolean | undefined;
830
+ fixed?: boolean | undefined;
831
+ flat?: boolean | undefined;
832
+ href?: string | undefined;
833
+ icon?: boolean | undefined;
834
+ iconName?: string | undefined;
835
+ label?: string | undefined;
836
+ large?: boolean | undefined;
837
+ left?: boolean | undefined;
838
+ outline?: boolean | undefined;
839
+ reverse?: boolean | undefined;
840
+ right?: boolean | undefined;
841
+ round?: string | number | boolean | undefined;
842
+ small?: boolean | undefined;
843
+ target?: string | undefined;
844
+ tile?: boolean | undefined;
845
+ to?: string | undefined;
846
+ top?: boolean | undefined;
847
+ type?: string | undefined;
848
+ width?: string | number | undefined;
849
+ active?: boolean | undefined;
850
+ appendIcon?: string | undefined;
851
+ border?: string | number | boolean | undefined;
852
+ density?: "default" | "comfortable" | "compact" | undefined;
853
+ elevation?: string | number | undefined;
854
+ loading?: string | boolean | undefined;
855
+ position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
856
+ prependIcon?: string | undefined;
857
+ replace?: boolean | undefined;
858
+ ripple?: boolean | undefined;
859
+ selectedClass?: string | undefined;
860
+ size?: "default" | "small" | "large" | "x-small" | "x-large" | undefined;
861
+ stacked?: boolean | undefined;
862
+ tag?: string | undefined;
863
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
864
+ children?: {
865
+ [x: string]: any;
866
+ children?: any[] | undefined;
867
+ component: string;
868
+ allowDuplicate?: boolean | undefined;
869
+ autofocus?: boolean | undefined;
870
+ componentId?: number | undefined;
871
+ cssClass?: string | undefined;
872
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
873
+ events?: {
874
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
875
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
876
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
+ } | undefined;
884
+ directives?: {
885
+ [x: string]: {
886
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
887
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
888
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
889
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
+ } | undefined;
896
+ touch?: {
897
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
898
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
899
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ } | undefined;
907
+ } | undefined;
908
+ isVisible?: string | boolean | undefined;
909
+ dark?: boolean | undefined;
910
+ light?: boolean | undefined;
911
+ theme?: string | undefined;
912
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
913
+ name: string;
914
+ parent?: {
915
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
916
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
917
+ allowDuplicate: boolean;
918
+ autofocus: boolean;
919
+ children: {
920
+ [x: string]: any;
921
+ allowDuplicate?: boolean | undefined;
922
+ autofocus?: boolean | undefined;
923
+ children?: any[] | undefined;
924
+ componentId?: number | undefined;
925
+ cssClass?: string | undefined;
926
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
927
+ events?: {
928
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
929
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
932
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
937
+ } | undefined;
938
+ directives?: {
939
+ [x: string]: {
940
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
941
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
942
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
943
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
948
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
+ } | undefined;
950
+ touch?: {
951
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
952
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
+ } | undefined;
961
+ } | undefined;
962
+ isVisible?: string | boolean | undefined;
963
+ dark?: boolean | undefined;
964
+ light?: boolean | undefined;
965
+ theme?: string | undefined;
966
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
967
+ name: string;
968
+ parent?: any | undefined;
969
+ tabStop?: boolean | undefined;
970
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
971
+ fillHeight?: boolean | undefined;
972
+ }[];
973
+ componentId: number;
974
+ cssClass: string;
975
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
976
+ events: {
977
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
978
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
981
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
982
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
983
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
+ };
987
+ directives: {
988
+ [x: string]: {
989
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
990
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
991
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
992
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
993
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
994
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
995
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
997
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
998
+ } | undefined;
999
+ touch?: {
1000
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1001
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1006
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1009
+ } | undefined;
1010
+ };
1011
+ isVisible: string | boolean;
1012
+ dark: boolean;
1013
+ light: boolean;
1014
+ theme?: string | undefined;
1015
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1016
+ name: string;
1017
+ parent?: any | undefined;
1018
+ tabStop: boolean;
1019
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1020
+ fillHeight: boolean;
1021
+ } | undefined;
1022
+ tabStop?: boolean | undefined;
1023
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1024
+ fillHeight?: boolean | undefined;
1025
+ }[] | undefined;
1026
+ component: string;
1027
+ allowDuplicate?: boolean | undefined;
1028
+ autofocus?: boolean | undefined;
1029
+ componentId?: number | undefined;
1030
+ cssClass?: string | undefined;
1031
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1032
+ directives?: {
1033
+ [x: string]: {
1034
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1035
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1043
+ } | undefined;
1044
+ touch?: {
1045
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1046
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1047
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ } | undefined;
1055
+ } | undefined;
1056
+ isVisible?: string | boolean | undefined;
1057
+ dark?: boolean | undefined;
1058
+ light?: boolean | undefined;
1059
+ theme?: string | undefined;
1060
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1061
+ name: string;
1062
+ parent?: {
1063
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1064
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1065
+ allowDuplicate: boolean;
1066
+ autofocus: boolean;
1067
+ children: {
1068
+ [x: string]: any;
1069
+ allowDuplicate?: boolean | undefined;
1070
+ autofocus?: boolean | undefined;
1071
+ children?: any[] | undefined;
1072
+ componentId?: number | undefined;
1073
+ cssClass?: string | undefined;
1074
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1075
+ events?: {
1076
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1077
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1082
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1084
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1085
+ } | undefined;
1086
+ directives?: {
1087
+ [x: string]: {
1088
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1089
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1097
+ } | undefined;
1098
+ touch?: {
1099
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1100
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
+ } | undefined;
1109
+ } | undefined;
1110
+ isVisible?: string | boolean | undefined;
1111
+ dark?: boolean | undefined;
1112
+ light?: boolean | undefined;
1113
+ theme?: string | undefined;
1114
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1115
+ name: string;
1116
+ parent?: any | undefined;
1117
+ tabStop?: boolean | undefined;
1118
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1119
+ fillHeight?: boolean | undefined;
1120
+ }[];
1121
+ componentId: number;
1122
+ cssClass: string;
1123
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1124
+ events: {
1125
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1126
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1127
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1128
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
+ };
1135
+ directives: {
1136
+ [x: string]: {
1137
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1138
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1139
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1140
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
+ } | undefined;
1147
+ touch?: {
1148
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1149
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1150
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1151
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1152
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1153
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1154
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
+ } | undefined;
1158
+ };
1159
+ isVisible: string | boolean;
1160
+ dark: boolean;
1161
+ light: boolean;
1162
+ theme?: string | undefined;
1163
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1164
+ name: string;
1165
+ parent?: any | undefined;
1166
+ tabStop: boolean;
1167
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1168
+ fillHeight: boolean;
1169
+ } | undefined;
1170
+ tabStop?: boolean | undefined;
1171
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1172
+ fillHeight?: boolean | undefined;
1173
+ };
1174
+ slideTo: (index: number) => void;
1175
+ slideNext: () => void;
1176
+ slidePrev: () => void;
1177
+ beforeSlide: (element: any, slideData: ISlideData, event?: Event | undefined) => void;
1178
+ slide: (element: any, slideData: ISlideData, event?: Event | undefined) => void;
1179
+ children: {
1180
+ [x: string]: any;
1181
+ children?: any[] | undefined;
1182
+ component: string;
1183
+ allowDuplicate?: boolean | undefined;
1184
+ autofocus?: boolean | undefined;
1185
+ componentId?: number | undefined;
1186
+ cssClass?: string | undefined;
1187
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1188
+ events?: {
1189
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1190
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1191
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1192
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1193
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1194
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1195
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1198
+ } | undefined;
1199
+ directives?: {
1200
+ [x: string]: {
1201
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1202
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1203
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1204
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1205
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1206
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1207
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
+ } | undefined;
1211
+ touch?: {
1212
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1213
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1217
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1218
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
+ } | undefined;
1222
+ } | undefined;
1223
+ isVisible?: string | boolean | undefined;
1224
+ dark?: boolean | undefined;
1225
+ light?: boolean | undefined;
1226
+ theme?: string | undefined;
1227
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1228
+ name: string;
1229
+ parent?: {
1230
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1231
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1232
+ allowDuplicate: boolean;
1233
+ autofocus: boolean;
1234
+ children: {
1235
+ [x: string]: any;
1236
+ allowDuplicate?: boolean | undefined;
1237
+ autofocus?: boolean | undefined;
1238
+ children?: any[] | undefined;
1239
+ componentId?: number | undefined;
1240
+ cssClass?: string | undefined;
1241
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1242
+ events?: {
1243
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1244
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1245
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1246
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1247
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
+ } | undefined;
1253
+ directives?: {
1254
+ [x: string]: {
1255
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1256
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1257
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1258
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1259
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1260
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1261
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1263
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1264
+ } | undefined;
1265
+ touch?: {
1266
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1267
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1268
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1269
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1270
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1271
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1272
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1273
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
+ } | undefined;
1276
+ } | undefined;
1277
+ isVisible?: string | boolean | undefined;
1278
+ dark?: boolean | undefined;
1279
+ light?: boolean | undefined;
1280
+ theme?: string | undefined;
1281
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1282
+ name: string;
1283
+ parent?: any | undefined;
1284
+ tabStop?: boolean | undefined;
1285
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1286
+ fillHeight?: boolean | undefined;
1287
+ }[];
1288
+ componentId: number;
1289
+ cssClass: string;
1290
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1291
+ events: {
1292
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1293
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1294
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1295
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1296
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ };
1302
+ directives: {
1303
+ [x: string]: {
1304
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1305
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1306
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1307
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1308
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1309
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1310
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1312
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1313
+ } | undefined;
1314
+ touch?: {
1315
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1316
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1317
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1318
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1319
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1320
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1321
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1322
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1323
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1324
+ } | undefined;
1325
+ };
1326
+ isVisible: string | boolean;
1327
+ dark: boolean;
1328
+ light: boolean;
1329
+ theme?: string | undefined;
1330
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1331
+ name: string;
1332
+ parent?: any | undefined;
1333
+ tabStop: boolean;
1334
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1335
+ fillHeight: boolean;
1336
+ } | undefined;
1337
+ tabStop?: boolean | undefined;
1338
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1339
+ fillHeight?: boolean | undefined;
1340
+ }[];
1341
+ component: string;
1342
+ allowDuplicate: boolean;
1343
+ autofocus: boolean;
1344
+ childrenInstances: any[];
1345
+ cssClass: string;
1346
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1347
+ directives: {
1348
+ [x: string]: {
1349
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1350
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1351
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1352
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1353
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1354
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1355
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1356
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1357
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1358
+ } | undefined;
1359
+ touch?: {
1360
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1361
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1362
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1363
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1364
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1365
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1366
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1367
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1368
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1369
+ } | undefined;
1370
+ };
1371
+ isVisible: boolean;
1372
+ name: string;
1373
+ dark: boolean;
1374
+ light: boolean;
1375
+ theme?: string | undefined;
1376
+ parent?: {
1377
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1378
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1379
+ allowDuplicate: boolean;
1380
+ autofocus: boolean;
1381
+ children: {
1382
+ [x: string]: any;
1383
+ allowDuplicate?: boolean | undefined;
1384
+ autofocus?: boolean | undefined;
1385
+ children?: any[] | undefined;
1386
+ componentId?: number | undefined;
1387
+ cssClass?: string | undefined;
1388
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1389
+ events?: {
1390
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1391
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1392
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1393
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1394
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1395
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1396
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1397
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1398
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1399
+ } | undefined;
1400
+ directives?: {
1401
+ [x: string]: {
1402
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1403
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1404
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1405
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1406
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1407
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1408
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1409
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1410
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1411
+ } | undefined;
1412
+ touch?: {
1413
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1414
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1415
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1420
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1421
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1422
+ } | undefined;
1423
+ } | undefined;
1424
+ isVisible?: string | boolean | undefined;
1425
+ dark?: boolean | undefined;
1426
+ light?: boolean | undefined;
1427
+ theme?: string | undefined;
1428
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1429
+ name: string;
1430
+ parent?: any | undefined;
1431
+ tabStop?: boolean | undefined;
1432
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1433
+ fillHeight?: boolean | undefined;
1434
+ }[];
1435
+ componentId: number;
1436
+ cssClass: string;
1437
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1438
+ events: {
1439
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1440
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1443
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1444
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1445
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1446
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1447
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1448
+ };
1449
+ directives: {
1450
+ [x: string]: {
1451
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1452
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1453
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1454
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1455
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1456
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1457
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1458
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1459
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1460
+ } | undefined;
1461
+ touch?: {
1462
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1463
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1464
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1465
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1466
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1467
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1468
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1469
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
+ } | undefined;
1472
+ };
1473
+ isVisible: string | boolean;
1474
+ dark: boolean;
1475
+ light: boolean;
1476
+ theme?: string | undefined;
1477
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1478
+ name: string;
1479
+ parent?: any | undefined;
1480
+ tabStop: boolean;
1481
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1482
+ fillHeight: boolean;
1483
+ } | undefined;
1484
+ componentId: number;
1485
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1486
+ isFocused: boolean;
1487
+ tabStop: boolean;
1488
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1489
+ setViewFocus: (viewFocus: () => void) => void;
1490
+ setFocus: () => void;
1491
+ callEvent: (eventName: string, args: any) => boolean;
1492
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1493
+ removeChild: (name: string) => void;
1494
+ getChildInstance: <T_1>(name: string) => T_1;
1495
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1496
+ onCreated: () => void;
1497
+ onBeforeMount: () => void;
1498
+ onMounted: (element: any) => void;
1499
+ onBeforeDestroy: () => void;
1500
+ onDestroyed: () => void;
1501
+ click: (event?: Event | undefined, element?: any) => void;
1502
+ focus: (event: Event, element: any) => void;
1503
+ blur: (event: Event, element: any) => void;
1504
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1505
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1506
+ mouseout: (event?: Event | undefined, element?: any) => void;
1507
+ mouseover: (event?: Event | undefined, element?: any) => void;
1508
+ };
1509
+ root: Readonly<import("vue").ShallowRef<HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
1510
+ infiniteScrollProp: import("vue").ComputedRef<boolean>;
1511
+ initialSlideProp: import("vue").ComputedRef<string | number>;
1512
+ progressWidth: import("vue").ComputedRef<string>;
1513
+ isHovered: boolean;
1514
+ click: (event: Event) => void;
1515
+ focus: (event: Event) => void;
1516
+ blur: (event: Event) => void;
1517
+ mouseenter: (event: Event) => void;
1518
+ mouseleave: (event: Event) => void;
1519
+ beforeSlide: (slideData: ISlideData) => void;
1520
+ slide: (slideData: ISlideData) => void;
1521
+ setEvent: (event: any) => void;
1522
+ Carousel: import("vue").DefineComponent<{
1523
+ autoplay?: number | undefined;
1524
+ breakpointMode?: "viewport" | "carousel" | undefined;
1525
+ breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1526
+ dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1527
+ enabled: boolean;
1528
+ gap: number;
1529
+ height: string | number;
1530
+ i18n: {
1531
+ ariaGallery?: string | undefined;
1532
+ ariaNavigateToPage?: string | undefined;
1533
+ ariaNavigateToSlide?: string | undefined;
1534
+ ariaNextSlide?: string | undefined;
1535
+ ariaPreviousSlide?: string | undefined;
1536
+ iconArrowDown?: string | undefined;
1537
+ iconArrowLeft?: string | undefined;
1538
+ iconArrowRight?: string | undefined;
1539
+ iconArrowUp?: string | undefined;
1540
+ itemXofY?: string | undefined;
1541
+ };
1542
+ ignoreAnimations: string | boolean | string[];
1543
+ itemsToScroll: number;
1544
+ itemsToShow: number | "auto";
1545
+ modelValue?: number | undefined;
1546
+ mouseDrag?: boolean | undefined;
1547
+ pauseAutoplayOnHover?: boolean | undefined;
1548
+ preventExcessiveDragging: boolean;
1549
+ slideEffect: "slide" | "fade";
1550
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1551
+ touchDrag?: boolean | undefined;
1552
+ transition?: number | undefined;
1553
+ wrapAround?: boolean | undefined;
1554
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1555
+ [key: string]: any;
1556
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, "slide-registered" | "slide-unregistered" | "drag" | "before-init" | "init" | "loop" | "slide-end" | "slide-start" | "update:modelValue", import("vue").PublicProps, Readonly<{
1557
+ autoplay?: number | undefined;
1558
+ breakpointMode?: "viewport" | "carousel" | undefined;
1559
+ breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1560
+ dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1561
+ enabled: boolean;
1562
+ gap: number;
1563
+ height: string | number;
1564
+ i18n: {
1565
+ ariaGallery?: string | undefined;
1566
+ ariaNavigateToPage?: string | undefined;
1567
+ ariaNavigateToSlide?: string | undefined;
1568
+ ariaNextSlide?: string | undefined;
1569
+ ariaPreviousSlide?: string | undefined;
1570
+ iconArrowDown?: string | undefined;
1571
+ iconArrowLeft?: string | undefined;
1572
+ iconArrowRight?: string | undefined;
1573
+ iconArrowUp?: string | undefined;
1574
+ itemXofY?: string | undefined;
1575
+ };
1576
+ ignoreAnimations: string | boolean | string[];
1577
+ itemsToScroll: number;
1578
+ itemsToShow: number | "auto";
1579
+ modelValue?: number | undefined;
1580
+ mouseDrag?: boolean | undefined;
1581
+ pauseAutoplayOnHover?: boolean | undefined;
1582
+ preventExcessiveDragging: boolean;
1583
+ slideEffect: "slide" | "fade";
1584
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1585
+ touchDrag?: boolean | undefined;
1586
+ transition?: number | undefined;
1587
+ wrapAround?: boolean | undefined;
1588
+ }> & Readonly<{}>, {
1589
+ breakpoints: import("vue3-carousel").Breakpoints | undefined;
1590
+ modelValue: number;
1591
+ breakpointMode: "viewport" | "carousel";
1592
+ autoplay: number;
1593
+ dir: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top";
1594
+ enabled: boolean;
1595
+ gap: number;
1596
+ height: string | number;
1597
+ i18n: {
1598
+ ariaGallery?: string | undefined;
1599
+ ariaNavigateToPage?: string | undefined;
1600
+ ariaNavigateToSlide?: string | undefined;
1601
+ ariaNextSlide?: string | undefined;
1602
+ ariaPreviousSlide?: string | undefined;
1603
+ iconArrowDown?: string | undefined;
1604
+ iconArrowLeft?: string | undefined;
1605
+ iconArrowRight?: string | undefined;
1606
+ iconArrowUp?: string | undefined;
1607
+ itemXofY?: string | undefined;
1608
+ };
1609
+ ignoreAnimations: string | boolean | string[];
1610
+ itemsToScroll: number;
1611
+ itemsToShow: string | number;
1612
+ mouseDrag: boolean;
1613
+ pauseAutoplayOnHover: boolean;
1614
+ preventExcessiveDragging: boolean;
1615
+ slideEffect: "slide" | "fade";
1616
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1617
+ touchDrag: boolean;
1618
+ transition: number;
1619
+ wrapAround: boolean;
1620
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1621
+ Slide: import("vue").DefineComponent<{
1622
+ readonly id?: string | undefined;
1623
+ readonly index: number;
1624
+ readonly isClone?: boolean | undefined;
1625
+ readonly position?: "before" | "after" | undefined;
1626
+ }, (() => string) | (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1627
+ [key: string]: any;
1628
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1629
+ [key: string]: any;
1630
+ }>[] | undefined), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
1631
+ readonly id?: string | undefined;
1632
+ readonly index: number;
1633
+ readonly isClone?: boolean | undefined;
1634
+ readonly position?: "before" | "after" | undefined;
1635
+ }> & Readonly<{}>, {
1636
+ isClone: boolean;
1637
+ position: string;
1638
+ index: number;
1639
+ id: string;
1640
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1641
+ Navigation: import("vue").DefineComponent<import("vue3-carousel").NavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").NavigationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1642
+ Pagination: import("vue").DefineComponent<import("vue3-carousel").PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").PaginationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1643
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1644
+ autoPlay: {
1645
+ type: (BooleanConstructor | StringConstructor)[];
1646
+ default: boolean;
1647
+ };
1648
+ buttonsOutside: {
1649
+ type: (BooleanConstructor | StringConstructor)[];
1650
+ default: boolean;
1651
+ };
1652
+ center: {
1653
+ type: (BooleanConstructor | StringConstructor)[];
1654
+ default: boolean;
1655
+ };
1656
+ currentSlide: {
1657
+ type: (NumberConstructor | StringConstructor)[];
1658
+ };
1659
+ fractionPagination: {
1660
+ type: (BooleanConstructor | StringConstructor)[];
1661
+ default: boolean;
1662
+ };
1663
+ height: {
1664
+ type: (NumberConstructor | StringConstructor)[];
1665
+ default: string;
1666
+ };
1667
+ maxHeight: {
1668
+ type: (NumberConstructor | StringConstructor)[];
1669
+ default: string;
1670
+ };
1671
+ minHeight: {
1672
+ type: (NumberConstructor | StringConstructor)[];
1673
+ default: string;
1674
+ };
1675
+ fillHeight: {
1676
+ type: (BooleanConstructor | StringConstructor)[];
1677
+ default: boolean;
1678
+ };
1679
+ infiniteScroll: {
1680
+ type: (BooleanConstructor | StringConstructor)[];
1681
+ default: boolean;
1682
+ };
1683
+ initialSlide: {
1684
+ type: (NumberConstructor | StringConstructor)[];
1685
+ default: number;
1686
+ };
1687
+ interval: {
1688
+ type: (NumberConstructor | StringConstructor)[];
1689
+ default: number;
1690
+ };
1691
+ keysControl: {
1692
+ type: (BooleanConstructor | StringConstructor)[];
1693
+ default: boolean;
1694
+ };
1695
+ mouseControl: {
1696
+ type: (BooleanConstructor | StringConstructor)[];
1697
+ default: boolean;
1698
+ };
1699
+ paginationBackground: {
1700
+ type: (BooleanConstructor | StringConstructor)[];
1701
+ default: boolean;
1702
+ };
1703
+ pauseOnHover: {
1704
+ type: (BooleanConstructor | StringConstructor)[];
1705
+ default: boolean;
1706
+ };
1707
+ showArrows: {
1708
+ type: (BooleanConstructor | StringConstructor)[];
1709
+ default: boolean;
1710
+ };
1711
+ showArrowsOnHover: {
1712
+ type: (BooleanConstructor | StringConstructor)[];
1713
+ default: boolean;
1714
+ };
1715
+ showPagination: {
1716
+ type: (BooleanConstructor | StringConstructor)[];
1717
+ default: boolean;
1718
+ };
1719
+ showProgress: {
1720
+ type: (BooleanConstructor | StringConstructor)[];
1721
+ default: boolean;
1722
+ };
1723
+ slideCssClass: {
1724
+ type: StringConstructor;
1725
+ default: string;
1726
+ };
1727
+ slidesPerView: {
1728
+ type: (NumberConstructor | StringConstructor)[];
1729
+ default: number;
1730
+ };
1731
+ slidesToSlide: {
1732
+ type: (NumberConstructor | StringConstructor)[];
1733
+ default: number;
1734
+ };
1735
+ touchControl: {
1736
+ type: (BooleanConstructor | StringConstructor)[];
1737
+ default: boolean;
1738
+ };
1739
+ transitionDuration: {
1740
+ type: (NumberConstructor | StringConstructor)[];
1741
+ default: number;
1742
+ };
1743
+ wheelControl: {
1744
+ type: (BooleanConstructor | StringConstructor)[];
1745
+ default: boolean;
1746
+ };
1747
+ nextButton: {
1748
+ type: ObjectConstructor;
1749
+ default: () => {
1750
+ name: string;
1751
+ component: string;
1752
+ iconName: string;
1753
+ icon: boolean;
1754
+ large: boolean;
1755
+ };
1756
+ };
1757
+ prevButton: {
1758
+ type: ObjectConstructor;
1759
+ default: () => {
1760
+ name: string;
1761
+ component: string;
1762
+ iconName: string;
1763
+ icon: boolean;
1764
+ large: boolean;
1765
+ };
1766
+ };
1767
+ children: {
1768
+ type: (StringConstructor | {
1769
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1770
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1771
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1772
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1773
+ isArray(arg: any): arg is any[];
1774
+ readonly prototype: any[];
1775
+ from<T>(arrayLike: ArrayLike<T>): T[];
1776
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1777
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1778
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1779
+ of<T_4>(...items: T_4[]): T_4[];
1780
+ readonly [Symbol.species]: ArrayConstructor;
1781
+ })[];
1782
+ default(): never[];
1783
+ };
1784
+ component: {
1785
+ type: StringConstructor;
1786
+ };
1787
+ allowDuplicate: {
1788
+ type: (BooleanConstructor | StringConstructor)[];
1789
+ default: boolean;
1790
+ };
1791
+ autofocus: {
1792
+ type: (BooleanConstructor | StringConstructor)[];
1793
+ default: boolean;
1794
+ };
1795
+ cssClass: {
1796
+ type: StringConstructor;
1797
+ default: string;
1798
+ };
1799
+ cssStyle: {
1800
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1801
+ default: string;
1802
+ };
1803
+ dark: {
1804
+ type: (BooleanConstructor | StringConstructor)[];
1805
+ default: boolean;
1806
+ };
1807
+ directives: {
1808
+ type: ObjectConstructor;
1809
+ default(): {};
1810
+ };
1811
+ events: {
1812
+ type: ObjectConstructor;
1813
+ default(): {};
1814
+ };
1815
+ instanceObject: {
1816
+ type: ObjectConstructor;
1817
+ };
1818
+ isVisible: {
1819
+ type: (BooleanConstructor | StringConstructor)[];
1820
+ default: boolean;
1821
+ };
1822
+ keyMap: {
1823
+ type: ObjectConstructor;
1824
+ default(): {};
1825
+ };
1826
+ light: {
1827
+ type: (BooleanConstructor | StringConstructor)[];
1828
+ default: boolean;
1829
+ };
1830
+ name: {
1831
+ type: StringConstructor;
1832
+ required: true;
1833
+ };
1834
+ parent: {
1835
+ type: ObjectConstructor;
1836
+ };
1837
+ tabStop: {
1838
+ type: (BooleanConstructor | StringConstructor)[];
1839
+ default: boolean;
1840
+ };
1841
+ theme: {
1842
+ type: StringConstructor;
1843
+ };
1844
+ }>> & Readonly<{}>, {
1845
+ allowDuplicate: string | boolean;
1846
+ autofocus: string | boolean;
1847
+ children: string | import("@zeedhi/common").IComponentRender[];
1848
+ cssClass: string;
1849
+ cssStyle: import("vue").StyleValue;
1850
+ dark: string | boolean;
1851
+ directives: Record<string, any>;
1852
+ events: Record<string, any>;
1853
+ isVisible: string | boolean;
1854
+ keyMap: Record<string, any>;
1855
+ light: string | boolean;
1856
+ tabStop: string | boolean;
1857
+ fillHeight: string | boolean;
1858
+ center: string | boolean;
1859
+ height: string | number;
1860
+ minHeight: string | number;
1861
+ maxHeight: string | number;
1862
+ autoPlay: string | boolean;
1863
+ buttonsOutside: string | boolean;
1864
+ fractionPagination: string | boolean;
1865
+ infiniteScroll: string | boolean;
1866
+ initialSlide: string | number;
1867
+ interval: string | number;
1868
+ keysControl: string | boolean;
1869
+ mouseControl: string | boolean;
1870
+ paginationBackground: string | boolean;
1871
+ pauseOnHover: string | boolean;
1872
+ showArrows: string | boolean;
1873
+ showArrowsOnHover: string | boolean;
1874
+ showPagination: string | boolean;
1875
+ showProgress: string | boolean;
1876
+ slideCssClass: string;
1877
+ slidesPerView: string | number;
1878
+ slidesToSlide: string | number;
1879
+ touchControl: string | boolean;
1880
+ transitionDuration: string | number;
1881
+ wheelControl: string | boolean;
1882
+ nextButton: Record<string, any>;
1883
+ prevButton: Record<string, any>;
1884
+ }, {}, {
1885
+ Carousel: import("vue").DefineComponent<{
1886
+ autoplay?: number | undefined;
1887
+ breakpointMode?: "viewport" | "carousel" | undefined;
1888
+ breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1889
+ dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1890
+ enabled: boolean;
1891
+ gap: number;
1892
+ height: string | number;
1893
+ i18n: {
1894
+ ariaGallery?: string | undefined;
1895
+ ariaNavigateToPage?: string | undefined;
1896
+ ariaNavigateToSlide?: string | undefined;
1897
+ ariaNextSlide?: string | undefined;
1898
+ ariaPreviousSlide?: string | undefined;
1899
+ iconArrowDown?: string | undefined;
1900
+ iconArrowLeft?: string | undefined;
1901
+ iconArrowRight?: string | undefined;
1902
+ iconArrowUp?: string | undefined;
1903
+ itemXofY?: string | undefined;
1904
+ };
1905
+ ignoreAnimations: string | boolean | string[];
1906
+ itemsToScroll: number;
1907
+ itemsToShow: number | "auto";
1908
+ modelValue?: number | undefined;
1909
+ mouseDrag?: boolean | undefined;
1910
+ pauseAutoplayOnHover?: boolean | undefined;
1911
+ preventExcessiveDragging: boolean;
1912
+ slideEffect: "slide" | "fade";
1913
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1914
+ touchDrag?: boolean | undefined;
1915
+ transition?: number | undefined;
1916
+ wrapAround?: boolean | undefined;
1917
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1918
+ [key: string]: any;
1919
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, "slide-registered" | "slide-unregistered" | "drag" | "before-init" | "init" | "loop" | "slide-end" | "slide-start" | "update:modelValue", import("vue").PublicProps, Readonly<{
1920
+ autoplay?: number | undefined;
1921
+ breakpointMode?: "viewport" | "carousel" | undefined;
1922
+ breakpoints?: import("vue3-carousel").Breakpoints | undefined;
1923
+ dir?: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top" | undefined;
1924
+ enabled: boolean;
1925
+ gap: number;
1926
+ height: string | number;
1927
+ i18n: {
1928
+ ariaGallery?: string | undefined;
1929
+ ariaNavigateToPage?: string | undefined;
1930
+ ariaNavigateToSlide?: string | undefined;
1931
+ ariaNextSlide?: string | undefined;
1932
+ ariaPreviousSlide?: string | undefined;
1933
+ iconArrowDown?: string | undefined;
1934
+ iconArrowLeft?: string | undefined;
1935
+ iconArrowRight?: string | undefined;
1936
+ iconArrowUp?: string | undefined;
1937
+ itemXofY?: string | undefined;
1938
+ };
1939
+ ignoreAnimations: string | boolean | string[];
1940
+ itemsToScroll: number;
1941
+ itemsToShow: number | "auto";
1942
+ modelValue?: number | undefined;
1943
+ mouseDrag?: boolean | undefined;
1944
+ pauseAutoplayOnHover?: boolean | undefined;
1945
+ preventExcessiveDragging: boolean;
1946
+ slideEffect: "slide" | "fade";
1947
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1948
+ touchDrag?: boolean | undefined;
1949
+ transition?: number | undefined;
1950
+ wrapAround?: boolean | undefined;
1951
+ }> & Readonly<{}>, {
1952
+ breakpoints: import("vue3-carousel").Breakpoints | undefined;
1953
+ modelValue: number;
1954
+ breakpointMode: "viewport" | "carousel";
1955
+ autoplay: number;
1956
+ dir: "ltr" | "left-to-right" | "rtl" | "right-to-left" | "ttb" | "top-to-bottom" | "btt" | "bottom-to-top";
1957
+ enabled: boolean;
1958
+ gap: number;
1959
+ height: string | number;
1960
+ i18n: {
1961
+ ariaGallery?: string | undefined;
1962
+ ariaNavigateToPage?: string | undefined;
1963
+ ariaNavigateToSlide?: string | undefined;
1964
+ ariaNextSlide?: string | undefined;
1965
+ ariaPreviousSlide?: string | undefined;
1966
+ iconArrowDown?: string | undefined;
1967
+ iconArrowLeft?: string | undefined;
1968
+ iconArrowRight?: string | undefined;
1969
+ iconArrowUp?: string | undefined;
1970
+ itemXofY?: string | undefined;
1971
+ };
1972
+ ignoreAnimations: string | boolean | string[];
1973
+ itemsToScroll: number;
1974
+ itemsToShow: string | number;
1975
+ mouseDrag: boolean;
1976
+ pauseAutoplayOnHover: boolean;
1977
+ preventExcessiveDragging: boolean;
1978
+ slideEffect: "slide" | "fade";
1979
+ snapAlign: "center" | "start" | "end" | "center-even" | "center-odd";
1980
+ touchDrag: boolean;
1981
+ transition: number;
1982
+ wrapAround: boolean;
1983
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1984
+ Slide: import("vue").DefineComponent<{
1985
+ readonly id?: string | undefined;
1986
+ readonly index: number;
1987
+ readonly isClone?: boolean | undefined;
1988
+ readonly position?: "before" | "after" | undefined;
1989
+ }, (() => string) | (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1990
+ [key: string]: any;
1991
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1992
+ [key: string]: any;
1993
+ }>[] | undefined), {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
1994
+ readonly id?: string | undefined;
1995
+ readonly index: number;
1996
+ readonly isClone?: boolean | undefined;
1997
+ readonly position?: "before" | "after" | undefined;
1998
+ }> & Readonly<{}>, {
1999
+ isClone: boolean;
2000
+ position: string;
2001
+ index: number;
2002
+ id: string;
2003
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2004
+ Pagination: import("vue").DefineComponent<import("vue3-carousel").PaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").PaginationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2005
+ Navigation: import("vue").DefineComponent<import("vue3-carousel").NavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue3-carousel").NavigationProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2006
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2007
+ export default carouselComponent;