@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,1627 +1,1653 @@
1
- import { PropType } from 'vue';
2
- export declare const ZdSearchProps: {
3
- iterableComponentName: {
4
- type: StringConstructor;
5
- };
6
- circle: {
7
- type: PropType<string | boolean>;
8
- default: boolean;
9
- };
10
- maxButtons: {
11
- type: PropType<string | number>;
12
- };
13
- nextIcon: {
14
- type: StringConstructor;
15
- default: string;
16
- };
17
- prevIcon: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- appendIcon: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- appendOuterIcon: {
26
- type: StringConstructor;
27
- default: string;
28
- };
29
- prefix: {
30
- type: StringConstructor;
31
- default: string;
32
- };
33
- prependIcon: {
34
- type: StringConstructor;
35
- default: string;
36
- };
37
- prependOuterIcon: {
38
- type: StringConstructor;
39
- default: string;
40
- };
41
- suffix: {
42
- type: StringConstructor;
43
- default: string;
44
- };
45
- valueWithPrefix: {
46
- type: (StringConstructor | BooleanConstructor)[];
47
- default: boolean;
48
- };
49
- valueWithSuffix: {
50
- type: (StringConstructor | BooleanConstructor)[];
51
- default: boolean;
52
- };
53
- type: {
54
- type: StringConstructor;
55
- default: string;
56
- };
57
- disableMaska: {
58
- type: BooleanConstructor;
59
- default: boolean;
60
- };
61
- width: {
62
- type: (StringConstructor | NumberConstructor)[];
63
- };
64
- minWidth: {
65
- type: (StringConstructor | NumberConstructor)[];
66
- default: string;
67
- };
68
- maxWidth: {
69
- type: (StringConstructor | NumberConstructor)[];
70
- default: string;
71
- };
72
- fillHeight: {
73
- type: (StringConstructor | BooleanConstructor)[];
74
- default: boolean;
75
- };
76
- height: {
77
- type: (StringConstructor | NumberConstructor)[];
78
- };
79
- minHeight: {
80
- type: (StringConstructor | NumberConstructor)[];
81
- default: string;
82
- };
83
- maxHeight: {
84
- type: (StringConstructor | NumberConstructor)[];
85
- default: string;
86
- };
87
- align: {
88
- type: StringConstructor;
89
- default: string;
90
- };
91
- alwaysShowError: {
92
- type: (StringConstructor | BooleanConstructor)[];
93
- default: boolean;
94
- };
95
- autofill: {
96
- type: (StringConstructor | BooleanConstructor)[];
97
- default: boolean;
98
- };
99
- clearable: {
100
- type: (StringConstructor | BooleanConstructor)[];
101
- default: boolean;
102
- };
103
- color: {
104
- type: StringConstructor;
105
- default: string;
106
- };
107
- dense: {
108
- type: (StringConstructor | BooleanConstructor)[];
109
- default: boolean;
110
- };
111
- disabled: {
112
- type: (StringConstructor | BooleanConstructor)[];
113
- default: boolean;
114
- };
115
- hint: {
116
- type: StringConstructor;
117
- default: string;
118
- };
119
- label: {
120
- type: StringConstructor;
121
- default: string;
122
- };
123
- mask: {
124
- default: string;
125
- };
126
- maxLength: {
127
- type: (StringConstructor | NumberConstructor)[];
128
- default: undefined;
129
- };
130
- persistentHint: {
131
- type: (StringConstructor | BooleanConstructor)[];
132
- default: boolean;
133
- };
134
- placeholder: {
135
- type: StringConstructor;
136
- default: string;
137
- };
138
- readonly: {
139
- type: (StringConstructor | BooleanConstructor)[];
140
- default: boolean;
141
- };
142
- autoHintDetails: {
143
- type: (StringConstructor | BooleanConstructor)[];
144
- default: boolean;
145
- };
146
- reverse: {
147
- type: (StringConstructor | BooleanConstructor)[];
148
- default: boolean;
149
- };
150
- showBorder: {
151
- type: (StringConstructor | BooleanConstructor)[];
152
- default: boolean;
153
- };
154
- showHelper: {
155
- type: (StringConstructor | BooleanConstructor)[];
156
- default: boolean;
157
- };
158
- showLabel: {
159
- type: (StringConstructor | BooleanConstructor)[];
160
- default: boolean;
161
- };
162
- storePath: {
163
- type: StringConstructor;
164
- default: string;
165
- };
166
- validations: {
167
- type: (StringConstructor | ObjectConstructor)[];
168
- default: {};
169
- };
170
- value: {
171
- default: null;
172
- };
173
- children: {
174
- type: (StringConstructor | {
175
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
176
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
177
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
178
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
179
- isArray(arg: any): arg is any[];
180
- readonly prototype: any[];
181
- from<T>(arrayLike: ArrayLike<T>): T[];
182
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
183
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
184
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
185
- of<T_4>(...items: T_4[]): T_4[];
186
- readonly [Symbol.species]: ArrayConstructor;
187
- })[];
188
- default(): never[];
189
- };
190
- component: {
191
- type: StringConstructor;
192
- };
193
- allowDuplicate: {
194
- type: (StringConstructor | BooleanConstructor)[];
195
- default: boolean;
196
- };
197
- autofocus: {
198
- type: (StringConstructor | BooleanConstructor)[];
199
- default: boolean;
200
- };
201
- cssClass: {
202
- type: StringConstructor;
203
- default: string;
204
- };
205
- cssStyle: {
206
- type: (StringConstructor | (() => import("vue").StyleValue))[];
207
- default: string;
208
- };
209
- dark: {
210
- type: (StringConstructor | BooleanConstructor)[];
211
- default: boolean;
212
- };
213
- directives: {
214
- type: ObjectConstructor;
215
- default(): {};
216
- };
217
- events: {
218
- type: ObjectConstructor;
219
- default(): {};
220
- };
221
- instanceObject: {
222
- type: ObjectConstructor;
223
- };
224
- isVisible: {
225
- type: (StringConstructor | BooleanConstructor)[];
226
- default: boolean;
227
- };
228
- keyMap: {
229
- type: ObjectConstructor;
230
- default(): {};
231
- };
232
- light: {
233
- type: (StringConstructor | BooleanConstructor)[];
234
- default: boolean;
235
- };
236
- name: {
237
- type: StringConstructor;
238
- required: true;
239
- };
240
- parent: {
241
- type: ObjectConstructor;
242
- };
243
- tabStop: {
244
- type: (StringConstructor | BooleanConstructor)[];
245
- default: boolean;
246
- };
247
- theme: {
248
- type: StringConstructor;
249
- };
250
- };
251
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
252
- iterableComponentName: {
253
- type: StringConstructor;
254
- };
255
- circle: {
256
- type: PropType<string | boolean>;
257
- default: boolean;
258
- };
259
- maxButtons: {
260
- type: PropType<string | number>;
261
- };
262
- nextIcon: {
263
- type: StringConstructor;
264
- default: string;
265
- };
266
- prevIcon: {
267
- type: StringConstructor;
268
- default: string;
269
- };
270
- appendIcon: {
271
- type: StringConstructor;
272
- default: string;
273
- };
274
- appendOuterIcon: {
275
- type: StringConstructor;
276
- default: string;
277
- };
278
- prefix: {
279
- type: StringConstructor;
280
- default: string;
281
- };
282
- prependIcon: {
283
- type: StringConstructor;
284
- default: string;
285
- };
286
- prependOuterIcon: {
287
- type: StringConstructor;
288
- default: string;
289
- };
290
- suffix: {
291
- type: StringConstructor;
292
- default: string;
293
- };
294
- valueWithPrefix: {
295
- type: (StringConstructor | BooleanConstructor)[];
296
- default: boolean;
297
- };
298
- valueWithSuffix: {
299
- type: (StringConstructor | BooleanConstructor)[];
300
- default: boolean;
301
- };
302
- type: {
303
- type: StringConstructor;
304
- default: string;
305
- };
306
- disableMaska: {
307
- type: BooleanConstructor;
308
- default: boolean;
309
- };
310
- width: {
311
- type: (StringConstructor | NumberConstructor)[];
312
- };
313
- minWidth: {
314
- type: (StringConstructor | NumberConstructor)[];
315
- default: string;
316
- };
317
- maxWidth: {
318
- type: (StringConstructor | NumberConstructor)[];
319
- default: string;
320
- };
321
- fillHeight: {
322
- type: (StringConstructor | BooleanConstructor)[];
323
- default: boolean;
324
- };
325
- height: {
326
- type: (StringConstructor | NumberConstructor)[];
327
- };
328
- minHeight: {
329
- type: (StringConstructor | NumberConstructor)[];
330
- default: string;
331
- };
332
- maxHeight: {
333
- type: (StringConstructor | NumberConstructor)[];
334
- default: string;
335
- };
336
- align: {
337
- type: StringConstructor;
338
- default: string;
339
- };
340
- alwaysShowError: {
341
- type: (StringConstructor | BooleanConstructor)[];
342
- default: boolean;
343
- };
344
- autofill: {
345
- type: (StringConstructor | BooleanConstructor)[];
346
- default: boolean;
347
- };
348
- clearable: {
349
- type: (StringConstructor | BooleanConstructor)[];
350
- default: boolean;
351
- };
352
- color: {
353
- type: StringConstructor;
354
- default: string;
355
- };
356
- dense: {
357
- type: (StringConstructor | BooleanConstructor)[];
358
- default: boolean;
359
- };
360
- disabled: {
361
- type: (StringConstructor | BooleanConstructor)[];
362
- default: boolean;
363
- };
364
- hint: {
365
- type: StringConstructor;
366
- default: string;
367
- };
368
- label: {
369
- type: StringConstructor;
370
- default: string;
371
- };
372
- mask: {
373
- default: string;
374
- };
375
- maxLength: {
376
- type: (StringConstructor | NumberConstructor)[];
377
- default: undefined;
378
- };
379
- persistentHint: {
380
- type: (StringConstructor | BooleanConstructor)[];
381
- default: boolean;
382
- };
383
- placeholder: {
384
- type: StringConstructor;
385
- default: string;
386
- };
387
- readonly: {
388
- type: (StringConstructor | BooleanConstructor)[];
389
- default: boolean;
390
- };
391
- autoHintDetails: {
392
- type: (StringConstructor | BooleanConstructor)[];
393
- default: boolean;
394
- };
395
- reverse: {
396
- type: (StringConstructor | BooleanConstructor)[];
397
- default: boolean;
398
- };
399
- showBorder: {
400
- type: (StringConstructor | BooleanConstructor)[];
401
- default: boolean;
402
- };
403
- showHelper: {
404
- type: (StringConstructor | BooleanConstructor)[];
405
- default: boolean;
406
- };
407
- showLabel: {
408
- type: (StringConstructor | BooleanConstructor)[];
409
- default: boolean;
410
- };
411
- storePath: {
412
- type: StringConstructor;
413
- default: string;
414
- };
415
- validations: {
416
- type: (StringConstructor | ObjectConstructor)[];
417
- default: {};
418
- };
419
- value: {
420
- default: null;
421
- };
422
- children: {
423
- type: (StringConstructor | {
424
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
425
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
426
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
427
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
428
- isArray(arg: any): arg is any[];
429
- readonly prototype: any[];
430
- from<T>(arrayLike: ArrayLike<T>): T[];
431
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
432
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
433
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
434
- of<T_4>(...items: T_4[]): T_4[];
435
- readonly [Symbol.species]: ArrayConstructor;
436
- })[];
437
- default(): never[];
438
- };
439
- component: {
440
- type: StringConstructor;
441
- };
442
- allowDuplicate: {
443
- type: (StringConstructor | BooleanConstructor)[];
444
- default: boolean;
445
- };
446
- autofocus: {
447
- type: (StringConstructor | BooleanConstructor)[];
448
- default: boolean;
449
- };
450
- cssClass: {
451
- type: StringConstructor;
452
- default: string;
453
- };
454
- cssStyle: {
455
- type: (StringConstructor | (() => import("vue").StyleValue))[];
456
- default: string;
457
- };
458
- dark: {
459
- type: (StringConstructor | BooleanConstructor)[];
460
- default: boolean;
461
- };
462
- directives: {
463
- type: ObjectConstructor;
464
- default(): {};
465
- };
466
- events: {
467
- type: ObjectConstructor;
468
- default(): {};
469
- };
470
- instanceObject: {
471
- type: ObjectConstructor;
472
- };
473
- isVisible: {
474
- type: (StringConstructor | BooleanConstructor)[];
475
- default: boolean;
476
- };
477
- keyMap: {
478
- type: ObjectConstructor;
479
- default(): {};
480
- };
481
- light: {
482
- type: (StringConstructor | BooleanConstructor)[];
483
- default: boolean;
484
- };
485
- name: {
486
- type: StringConstructor;
487
- required: true;
488
- };
489
- parent: {
490
- type: ObjectConstructor;
491
- };
492
- tabStop: {
493
- type: (StringConstructor | BooleanConstructor)[];
494
- default: boolean;
495
- };
496
- theme: {
497
- type: StringConstructor;
498
- };
499
- }>, {
500
- instance: {
501
- prevIcon: string;
502
- nextIcon: string;
503
- circle: boolean;
504
- maxButtons?: number | undefined;
505
- iterableComponentName: string;
506
- iterableComponent: {
507
- datasource: {
508
- data: import("@zeedhi/core").IDictionary<any>[];
509
- defaultLimit: number;
510
- filter: import("@zeedhi/core").IDictionary<any>;
511
- loadAll: boolean;
512
- loading: boolean;
513
- order: string[];
514
- page: number;
515
- search: string;
516
- searchIn: string[];
517
- selectedRows: import("@zeedhi/core").IDictionary<any>[];
518
- uniqueKey: string;
519
- visibleSelectedRows: import("@zeedhi/core").IDictionary<any>[];
520
- watchUrl: boolean;
521
- error: any;
522
- events: {
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
- onChangeCurrentRow?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
525
- onChangePagination?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
526
- };
527
- initialize: () => void | Promise<void>;
528
- destroy: () => void;
529
- currentRow: import("@zeedhi/core").IDictionary<any>;
530
- limit: number;
531
- total: number;
532
- urlHasChanged: () => boolean;
533
- get: () => Promise<any>;
534
- post: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
535
- put: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
536
- delete: (row?: import("@zeedhi/core").IDictionary<any> | undefined) => Promise<any>;
537
- updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
538
- getLoadedData: () => import("@zeedhi/core").IDictionary<any>[];
539
- setSearch: (search: string) => Promise<any>;
540
- addFilter: (column: string, value: any) => Promise<any>;
541
- removeFilter: (column: string) => Promise<any>;
542
- setFilter: (filter: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
543
- clearFilter: () => Promise<any>;
544
- setLimit: (limit: number, replaceUrl?: boolean | undefined) => Promise<any>;
545
- setPage: (page: number, replaceUrl?: boolean | undefined) => Promise<any>;
546
- addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
547
- removeOrder: (column: string) => Promise<any>;
548
- setOrder: (order: string[]) => Promise<any>;
549
- clearOrder: () => Promise<any>;
550
- getOrderByColumn: (column: string) => import("@zeedhi/core").Order | null;
551
- selectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
552
- deselectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
553
- updateSelectedPage: () => Promise<any> | import("@zeedhi/core").IDictionary<any>[];
554
- clone: () => import("@zeedhi/core").IDatasource;
555
- registerGetCallback: (callback: import("@zeedhi/core").Callback) => void;
556
- hasFilter: (columnName: string) => boolean;
557
- };
558
- columns: {
559
- align: import("@zeedhi/common").ColumnAlign;
560
- label: string;
561
- width?: string | undefined;
562
- maxWidth?: string | undefined;
563
- minWidth?: string | undefined;
564
- mask: string;
565
- type?: "action" | undefined;
566
- actionFixed: boolean;
567
- fixed: boolean;
568
- sortable: boolean;
569
- loading: boolean;
570
- componentProps: any;
571
- style: import("@zeedhi/core").IDictionary<any>;
572
- xlsType: string;
573
- lookupData: any;
574
- lookupDataCount: number;
575
- overflow: string | number;
576
- conditions: import("@zeedhi/core").IDictionary<any>;
577
- helperText: string;
578
- storeData: boolean;
579
- setViewGetWidth: (viewGetWidth: () => number) => void;
580
- setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary<any>) => void;
581
- getWidth: () => number;
582
- formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
583
- formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
584
- getLookupData: (lookupColumn: string, value: any) => any;
585
- initialize: () => void;
586
- clearLookupData: () => void;
587
- onBeforeDestroy: () => void;
588
- allowDuplicate: boolean;
589
- autofocus: boolean;
590
- children: {
591
- [x: string]: any;
592
- allowDuplicate?: boolean | undefined;
593
- autofocus?: boolean | undefined;
594
- children?: any[] | undefined;
595
- componentId?: number | undefined;
596
- cssClass?: string | undefined;
597
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
598
- events?: {
599
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
600
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
601
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
602
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
- } | undefined;
609
- directives?: {
610
- [x: string]: {
611
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
612
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
614
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
- } | undefined;
621
- touch?: {
622
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
623
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
625
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
- } | undefined;
632
- } | undefined;
633
- isVisible?: string | boolean | undefined;
634
- dark?: boolean | undefined;
635
- light?: boolean | undefined;
636
- theme?: string | undefined;
637
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
638
- name: string;
639
- parent?: {
640
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
641
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
642
- allowDuplicate: boolean;
643
- autofocus: boolean;
644
- children: any[];
645
- componentId: number;
646
- cssClass: string;
647
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
648
- events: {
649
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
650
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
651
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
655
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
656
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
- };
659
- directives: {
660
- [x: string]: {
661
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
662
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
- } | undefined;
671
- touch?: {
672
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
673
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
677
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
678
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
- } | undefined;
682
- };
683
- isVisible: string | boolean;
684
- dark: boolean;
685
- light: boolean;
686
- theme?: string | undefined;
687
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
688
- name: string;
689
- parent?: any | undefined;
690
- tabStop: boolean;
691
- userProperties: import("@zeedhi/core").IDictionary<any>;
692
- fillHeight: boolean;
693
- } | undefined;
694
- tabStop?: boolean | undefined;
695
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
696
- fillHeight?: boolean | undefined;
697
- }[];
698
- childrenInstances: any[];
699
- cssClass: string;
700
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
701
- directives: {
702
- [x: string]: {
703
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
704
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
708
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
- } | undefined;
713
- touch?: {
714
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
715
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
- } | undefined;
724
- };
725
- events: {
726
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
727
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
733
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
- };
736
- isVisible: boolean;
737
- name: string;
738
- dark: boolean;
739
- light: boolean;
740
- theme?: string | undefined;
741
- fillHeight: boolean;
742
- parent?: {
743
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
744
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
745
- allowDuplicate: boolean;
746
- autofocus: boolean;
747
- children: any[];
748
- componentId: number;
749
- cssClass: string;
750
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
751
- events: {
752
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
753
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
- };
762
- directives: {
763
- [x: string]: {
764
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
765
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
- } | undefined;
774
- touch?: {
775
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
776
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
782
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
784
- } | undefined;
785
- };
786
- isVisible: string | boolean;
787
- dark: boolean;
788
- light: boolean;
789
- theme?: string | undefined;
790
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
791
- name: string;
792
- parent?: any | undefined;
793
- tabStop: boolean;
794
- userProperties: import("@zeedhi/core").IDictionary<any>;
795
- fillHeight: boolean;
796
- } | undefined;
797
- componentId: number;
798
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
799
- isFocused: boolean;
800
- tabStop: boolean;
801
- userProperties: import("@zeedhi/core").IDictionary<any>;
802
- setViewFocus: (viewFocus: () => void) => void;
803
- setFocus: () => void;
804
- callEvent: (eventName: string, args: any) => boolean;
805
- addChild: (child: import("@zeedhi/common").IComponent) => void;
806
- removeChild: (name: string) => void;
807
- getChildInstance: <T_6>(name: string) => T_6;
808
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
809
- onCreated: () => void;
810
- onBeforeMount: () => void;
811
- onMounted: (element: any) => void;
812
- onDestroyed: () => void;
813
- click: (event?: Event | undefined, element?: any) => void;
814
- focus: (event: Event, element: any) => void;
815
- blur: (event: Event, element: any) => void;
816
- mouseenter: (event?: Event | undefined, element?: any) => void;
817
- mouseleave: (event?: Event | undefined, element?: any) => void;
818
- mouseout: (event?: Event | undefined, element?: any) => void;
819
- mouseover: (event?: Event | undefined, element?: any) => void;
820
- }[];
821
- pageSizes: string[];
822
- events: {
823
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
824
- changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
827
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
- };
834
- virtualScroll: boolean;
835
- virtualScrollCache: number;
836
- searchVisibleOnly: boolean;
837
- defaultSearchVisibleOnly: boolean;
838
- updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
839
- getAppliedConditions: (args: {
840
- row: import("@zeedhi/core").IDictionary<any>;
841
- column: import("@zeedhi/common").Column;
842
- path?: string | undefined;
843
- }) => Partial<import("@zeedhi/common").IComponentRender>;
844
- getCurrentRowIndex: () => number;
845
- getPage: () => number;
846
- setPage: (page: number) => Promise<any>;
847
- getLastPage: () => number;
848
- onCreated: () => void;
849
- createColumn: (columnProps: import("@zeedhi/common").IColumn) => import("@zeedhi/common").Column;
850
- getColumn: (name: string) => import("@zeedhi/common").Column;
851
- readonly pageText: string;
852
- readonly paginationLength: number;
853
- getCellWithAppliedConditions: (columns: import("@zeedhi/common").Column[], row: import("@zeedhi/core").IDictionary<any>) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
854
- reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[] | undefined) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
855
- reload: () => Promise<any>;
856
- changeData: (data: import("@zeedhi/core").IDictionary<any>[]) => void;
857
- onBeforeDestroy: () => void;
858
- changeLayout: (event?: Event | undefined, element?: any) => void;
859
- setSearch: (search: string) => Promise<any>;
860
- setCurrentRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
861
- setOrder: (order: string[]) => Promise<any>;
862
- getRowKey: (row: import("@zeedhi/core").IDictionary<any>) => any;
863
- delete: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
864
- getData: () => import("@zeedhi/core").IDictionary<any>[];
865
- findRow: (key: string | number) => import("@zeedhi/core").IDictionary<any> | undefined;
866
- children: {
867
- [x: string]: any;
868
- children?: any[] | undefined;
869
- component: string;
870
- allowDuplicate?: boolean | undefined;
871
- autofocus?: boolean | undefined;
872
- componentId?: number | undefined;
873
- cssClass?: string | undefined;
874
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
875
- events?: {
876
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
877
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
884
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
885
- } | undefined;
886
- directives?: {
887
- [x: string]: {
888
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
889
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
896
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
897
- } | undefined;
898
- touch?: {
899
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
900
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
907
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
908
- } | undefined;
909
- } | undefined;
910
- isVisible?: string | boolean | undefined;
911
- dark?: boolean | undefined;
912
- light?: boolean | undefined;
913
- theme?: string | undefined;
914
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
915
- name: string;
916
- parent?: {
917
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
918
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
919
- allowDuplicate: boolean;
920
- autofocus: boolean;
921
- children: any[];
922
- componentId: number;
923
- cssClass: string;
924
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
925
- events: {
926
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
927
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
928
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
929
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
932
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
- };
936
- directives: {
937
- [x: string]: {
938
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
939
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
940
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
941
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
942
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
943
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
- } | undefined;
948
- touch?: {
949
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
950
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
952
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
- } | undefined;
959
- };
960
- isVisible: string | boolean;
961
- dark: boolean;
962
- light: boolean;
963
- theme?: string | undefined;
964
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
965
- name: string;
966
- parent?: any | undefined;
967
- tabStop: boolean;
968
- userProperties: import("@zeedhi/core").IDictionary<any>;
969
- fillHeight: boolean;
970
- } | undefined;
971
- tabStop?: boolean | undefined;
972
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
973
- fillHeight?: boolean | undefined;
974
- }[];
975
- component: string;
976
- allowDuplicate: boolean;
977
- autofocus: boolean;
978
- childrenInstances: any[];
979
- cssClass: string;
980
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
981
- directives: {
982
- [x: string]: {
983
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
984
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
989
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
990
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
991
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
992
- } | undefined;
993
- touch?: {
994
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
995
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
997
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
998
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
999
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1000
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1001
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
- } | undefined;
1004
- };
1005
- isVisible: boolean;
1006
- name: string;
1007
- dark: boolean;
1008
- light: boolean;
1009
- theme?: string | undefined;
1010
- fillHeight: boolean;
1011
- parent?: {
1012
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1013
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1014
- allowDuplicate: boolean;
1015
- autofocus: boolean;
1016
- children: any[];
1017
- componentId: number;
1018
- cssClass: string;
1019
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1020
- events: {
1021
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1022
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1023
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1024
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1025
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1026
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
- };
1031
- directives: {
1032
- [x: string]: {
1033
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1034
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
- } | undefined;
1043
- touch?: {
1044
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1045
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1046
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1047
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
- } | undefined;
1054
- };
1055
- isVisible: string | boolean;
1056
- dark: boolean;
1057
- light: boolean;
1058
- theme?: string | undefined;
1059
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1060
- name: string;
1061
- parent?: any | undefined;
1062
- tabStop: boolean;
1063
- userProperties: import("@zeedhi/core").IDictionary<any>;
1064
- fillHeight: boolean;
1065
- } | undefined;
1066
- componentId: number;
1067
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1068
- isFocused: boolean;
1069
- tabStop: boolean;
1070
- userProperties: import("@zeedhi/core").IDictionary<any>;
1071
- setViewFocus: (viewFocus: () => void) => void;
1072
- setFocus: () => void;
1073
- callEvent: (eventName: string, args: any) => boolean;
1074
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1075
- removeChild: (name: string) => void;
1076
- getChildInstance: <T_6>(name: string) => T_6;
1077
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1078
- onBeforeMount: () => void;
1079
- onMounted: (element: any) => void;
1080
- onDestroyed: () => void;
1081
- click: (event?: Event | undefined, element?: any) => void;
1082
- focus: (event: Event, element: any) => void;
1083
- blur: (event: Event, element: any) => void;
1084
- mouseenter: (event?: Event | undefined, element?: any) => void;
1085
- mouseleave: (event?: Event | undefined, element?: any) => void;
1086
- mouseout: (event?: Event | undefined, element?: any) => void;
1087
- mouseover: (event?: Event | undefined, element?: any) => void;
1088
- };
1089
- onMounted: (element: any) => void;
1090
- children: {
1091
- [x: string]: any;
1092
- children?: any[] | undefined;
1093
- component: string;
1094
- allowDuplicate?: boolean | undefined;
1095
- autofocus?: boolean | undefined;
1096
- componentId?: number | undefined;
1097
- cssClass?: string | undefined;
1098
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1099
- events?: {
1100
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1101
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1109
- } | undefined;
1110
- directives?: {
1111
- [x: string]: {
1112
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1113
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
- } | undefined;
1122
- touch?: {
1123
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1124
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1126
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1127
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1128
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1129
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
- } | undefined;
1133
- } | undefined;
1134
- isVisible?: string | boolean | undefined;
1135
- dark?: boolean | undefined;
1136
- light?: boolean | undefined;
1137
- theme?: string | undefined;
1138
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1139
- name: string;
1140
- parent?: {
1141
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1142
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1143
- allowDuplicate: boolean;
1144
- autofocus: boolean;
1145
- children: any[];
1146
- componentId: number;
1147
- cssClass: string;
1148
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1149
- events: {
1150
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1151
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1152
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1153
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1154
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1158
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1159
- };
1160
- directives: {
1161
- [x: string]: {
1162
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1163
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1169
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1170
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1171
- } | undefined;
1172
- touch?: {
1173
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1174
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1176
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1177
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1178
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1179
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1180
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1181
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1182
- } | undefined;
1183
- };
1184
- isVisible: string | boolean;
1185
- dark: boolean;
1186
- light: boolean;
1187
- theme?: string | undefined;
1188
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1189
- name: string;
1190
- parent?: any | undefined;
1191
- tabStop: boolean;
1192
- userProperties: import("@zeedhi/core").IDictionary<any>;
1193
- fillHeight: boolean;
1194
- } | undefined;
1195
- tabStop?: boolean | undefined;
1196
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1197
- fillHeight?: boolean | undefined;
1198
- }[];
1199
- component: string;
1200
- allowDuplicate: boolean;
1201
- autofocus: boolean;
1202
- childrenInstances: any[];
1203
- cssClass: string;
1204
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1205
- directives: {
1206
- [x: string]: {
1207
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1208
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
- } | undefined;
1217
- touch?: {
1218
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1219
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1223
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1227
- } | undefined;
1228
- };
1229
- events: {
1230
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1231
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1232
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1233
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1234
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
- };
1240
- isVisible: boolean;
1241
- name: string;
1242
- dark: boolean;
1243
- light: boolean;
1244
- theme?: string | undefined;
1245
- fillHeight: boolean;
1246
- parent?: {
1247
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1248
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1249
- allowDuplicate: boolean;
1250
- autofocus: boolean;
1251
- children: any[];
1252
- componentId: number;
1253
- cssClass: string;
1254
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1255
- events: {
1256
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1257
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1258
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1259
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1260
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1261
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1263
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1264
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1265
- };
1266
- directives: {
1267
- [x: string]: {
1268
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1269
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1270
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1271
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1272
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1273
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
- } | undefined;
1278
- touch?: {
1279
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1280
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1281
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1282
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1283
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1284
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1285
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1286
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1287
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
- } | undefined;
1289
- };
1290
- isVisible: string | boolean;
1291
- dark: boolean;
1292
- light: boolean;
1293
- theme?: string | undefined;
1294
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1295
- name: string;
1296
- parent?: any | undefined;
1297
- tabStop: boolean;
1298
- userProperties: import("@zeedhi/core").IDictionary<any>;
1299
- fillHeight: boolean;
1300
- } | undefined;
1301
- componentId: number;
1302
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1303
- isFocused: boolean;
1304
- tabStop: boolean;
1305
- userProperties: import("@zeedhi/core").IDictionary<any>;
1306
- setViewFocus: (viewFocus: () => void) => void;
1307
- setFocus: () => void;
1308
- callEvent: (eventName: string, args: any) => boolean;
1309
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1310
- removeChild: (name: string) => void;
1311
- getChildInstance: <T_6>(name: string) => T_6;
1312
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1313
- onCreated: () => void;
1314
- onBeforeMount: () => void;
1315
- onBeforeDestroy: () => void;
1316
- onDestroyed: () => void;
1317
- click: (event?: Event | undefined, element?: any) => void;
1318
- focus: (event: Event, element: any) => void;
1319
- blur: (event: Event, element: any) => void;
1320
- mouseenter: (event?: Event | undefined, element?: any) => void;
1321
- mouseleave: (event?: Event | undefined, element?: any) => void;
1322
- mouseout: (event?: Event | undefined, element?: any) => void;
1323
- mouseover: (event?: Event | undefined, element?: any) => void;
1324
- };
1325
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1326
- iterableComponentName: {
1327
- type: StringConstructor;
1328
- };
1329
- circle: {
1330
- type: PropType<string | boolean>;
1331
- default: boolean;
1332
- };
1333
- maxButtons: {
1334
- type: PropType<string | number>;
1335
- };
1336
- nextIcon: {
1337
- type: StringConstructor;
1338
- default: string;
1339
- };
1340
- prevIcon: {
1341
- type: StringConstructor;
1342
- default: string;
1343
- };
1344
- appendIcon: {
1345
- type: StringConstructor;
1346
- default: string;
1347
- };
1348
- appendOuterIcon: {
1349
- type: StringConstructor;
1350
- default: string;
1351
- };
1352
- prefix: {
1353
- type: StringConstructor;
1354
- default: string;
1355
- };
1356
- prependIcon: {
1357
- type: StringConstructor;
1358
- default: string;
1359
- };
1360
- prependOuterIcon: {
1361
- type: StringConstructor;
1362
- default: string;
1363
- };
1364
- suffix: {
1365
- type: StringConstructor;
1366
- default: string;
1367
- };
1368
- valueWithPrefix: {
1369
- type: (StringConstructor | BooleanConstructor)[];
1370
- default: boolean;
1371
- };
1372
- valueWithSuffix: {
1373
- type: (StringConstructor | BooleanConstructor)[];
1374
- default: boolean;
1375
- };
1376
- type: {
1377
- type: StringConstructor;
1378
- default: string;
1379
- };
1380
- disableMaska: {
1381
- type: BooleanConstructor;
1382
- default: boolean;
1383
- };
1384
- width: {
1385
- type: (StringConstructor | NumberConstructor)[];
1386
- };
1387
- minWidth: {
1388
- type: (StringConstructor | NumberConstructor)[];
1389
- default: string;
1390
- };
1391
- maxWidth: {
1392
- type: (StringConstructor | NumberConstructor)[];
1393
- default: string;
1394
- };
1395
- fillHeight: {
1396
- type: (StringConstructor | BooleanConstructor)[];
1397
- default: boolean;
1398
- };
1399
- height: {
1400
- type: (StringConstructor | NumberConstructor)[];
1401
- };
1402
- minHeight: {
1403
- type: (StringConstructor | NumberConstructor)[];
1404
- default: string;
1405
- };
1406
- maxHeight: {
1407
- type: (StringConstructor | NumberConstructor)[];
1408
- default: string;
1409
- };
1410
- align: {
1411
- type: StringConstructor;
1412
- default: string;
1413
- };
1414
- alwaysShowError: {
1415
- type: (StringConstructor | BooleanConstructor)[];
1416
- default: boolean;
1417
- };
1418
- autofill: {
1419
- type: (StringConstructor | BooleanConstructor)[];
1420
- default: boolean;
1421
- };
1422
- clearable: {
1423
- type: (StringConstructor | BooleanConstructor)[];
1424
- default: boolean;
1425
- };
1426
- color: {
1427
- type: StringConstructor;
1428
- default: string;
1429
- };
1430
- dense: {
1431
- type: (StringConstructor | BooleanConstructor)[];
1432
- default: boolean;
1433
- };
1434
- disabled: {
1435
- type: (StringConstructor | BooleanConstructor)[];
1436
- default: boolean;
1437
- };
1438
- hint: {
1439
- type: StringConstructor;
1440
- default: string;
1441
- };
1442
- label: {
1443
- type: StringConstructor;
1444
- default: string;
1445
- };
1446
- mask: {
1447
- default: string;
1448
- };
1449
- maxLength: {
1450
- type: (StringConstructor | NumberConstructor)[];
1451
- default: undefined;
1452
- };
1453
- persistentHint: {
1454
- type: (StringConstructor | BooleanConstructor)[];
1455
- default: boolean;
1456
- };
1457
- placeholder: {
1458
- type: StringConstructor;
1459
- default: string;
1460
- };
1461
- readonly: {
1462
- type: (StringConstructor | BooleanConstructor)[];
1463
- default: boolean;
1464
- };
1465
- autoHintDetails: {
1466
- type: (StringConstructor | BooleanConstructor)[];
1467
- default: boolean;
1468
- };
1469
- reverse: {
1470
- type: (StringConstructor | BooleanConstructor)[];
1471
- default: boolean;
1472
- };
1473
- showBorder: {
1474
- type: (StringConstructor | BooleanConstructor)[];
1475
- default: boolean;
1476
- };
1477
- showHelper: {
1478
- type: (StringConstructor | BooleanConstructor)[];
1479
- default: boolean;
1480
- };
1481
- showLabel: {
1482
- type: (StringConstructor | BooleanConstructor)[];
1483
- default: boolean;
1484
- };
1485
- storePath: {
1486
- type: StringConstructor;
1487
- default: string;
1488
- };
1489
- validations: {
1490
- type: (StringConstructor | ObjectConstructor)[];
1491
- default: {};
1492
- };
1493
- value: {
1494
- default: null;
1495
- };
1496
- children: {
1497
- type: (StringConstructor | {
1498
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1499
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1500
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1501
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1502
- isArray(arg: any): arg is any[];
1503
- readonly prototype: any[];
1504
- from<T>(arrayLike: ArrayLike<T>): T[];
1505
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1506
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1507
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1508
- of<T_4>(...items: T_4[]): T_4[];
1509
- readonly [Symbol.species]: ArrayConstructor;
1510
- })[];
1511
- default(): never[];
1512
- };
1513
- component: {
1514
- type: StringConstructor;
1515
- };
1516
- allowDuplicate: {
1517
- type: (StringConstructor | BooleanConstructor)[];
1518
- default: boolean;
1519
- };
1520
- autofocus: {
1521
- type: (StringConstructor | BooleanConstructor)[];
1522
- default: boolean;
1523
- };
1524
- cssClass: {
1525
- type: StringConstructor;
1526
- default: string;
1527
- };
1528
- cssStyle: {
1529
- type: (StringConstructor | (() => import("vue").StyleValue))[];
1530
- default: string;
1531
- };
1532
- dark: {
1533
- type: (StringConstructor | BooleanConstructor)[];
1534
- default: boolean;
1535
- };
1536
- directives: {
1537
- type: ObjectConstructor;
1538
- default(): {};
1539
- };
1540
- events: {
1541
- type: ObjectConstructor;
1542
- default(): {};
1543
- };
1544
- instanceObject: {
1545
- type: ObjectConstructor;
1546
- };
1547
- isVisible: {
1548
- type: (StringConstructor | BooleanConstructor)[];
1549
- default: boolean;
1550
- };
1551
- keyMap: {
1552
- type: ObjectConstructor;
1553
- default(): {};
1554
- };
1555
- light: {
1556
- type: (StringConstructor | BooleanConstructor)[];
1557
- default: boolean;
1558
- };
1559
- name: {
1560
- type: StringConstructor;
1561
- required: true;
1562
- };
1563
- parent: {
1564
- type: ObjectConstructor;
1565
- };
1566
- tabStop: {
1567
- type: (StringConstructor | BooleanConstructor)[];
1568
- default: boolean;
1569
- };
1570
- theme: {
1571
- type: StringConstructor;
1572
- };
1573
- }>> & Readonly<{}>, {
1574
- reverse: string | boolean;
1575
- allowDuplicate: string | boolean;
1576
- type: string;
1577
- autofocus: string | boolean;
1578
- children: string | import("@zeedhi/common").IComponentRender[];
1579
- cssClass: string;
1580
- cssStyle: import("vue").StyleValue;
1581
- dark: string | boolean;
1582
- directives: Record<string, any>;
1583
- events: Record<string, any>;
1584
- isVisible: string | boolean;
1585
- keyMap: Record<string, any>;
1586
- light: string | boolean;
1587
- tabStop: string | boolean;
1588
- minHeight: string | number;
1589
- maxHeight: string | number;
1590
- minWidth: string | number;
1591
- maxWidth: string | number;
1592
- fillHeight: string | boolean;
1593
- value: null;
1594
- label: string;
1595
- circle: string | boolean;
1596
- mask: string;
1597
- align: string;
1598
- disabled: string | boolean;
1599
- color: string;
1600
- dense: string | boolean;
1601
- alwaysShowError: string | boolean;
1602
- autofill: string | boolean;
1603
- clearable: string | boolean;
1604
- hint: string;
1605
- maxLength: string | number;
1606
- persistentHint: string | boolean;
1607
- placeholder: string;
1608
- readonly: string | boolean;
1609
- autoHintDetails: string | boolean;
1610
- showBorder: string | boolean;
1611
- showHelper: string | boolean;
1612
- showLabel: string | boolean;
1613
- storePath: string;
1614
- validations: string | Record<string, any>;
1615
- appendIcon: string;
1616
- appendOuterIcon: string;
1617
- prefix: string;
1618
- prependIcon: string;
1619
- prependOuterIcon: string;
1620
- suffix: string;
1621
- valueWithPrefix: string | boolean;
1622
- valueWithSuffix: string | boolean;
1623
- disableMaska: boolean;
1624
- nextIcon: string;
1625
- prevIcon: string;
1626
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1627
- export default _default;
1
+ import { PropType } from 'vue';
2
+ export declare const ZdSearchProps: {
3
+ iterableComponentName: {
4
+ type: StringConstructor;
5
+ };
6
+ circle: {
7
+ type: PropType<string | boolean>;
8
+ default: boolean;
9
+ };
10
+ maxButtons: {
11
+ type: PropType<string | number>;
12
+ };
13
+ nextIcon: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ prevIcon: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ appendIcon: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ appendOuterIcon: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ prefix: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ prependIcon: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ prependOuterIcon: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ suffix: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ };
45
+ valueWithPrefix: {
46
+ type: (BooleanConstructor | StringConstructor)[];
47
+ default: boolean;
48
+ };
49
+ valueWithSuffix: {
50
+ type: (BooleanConstructor | StringConstructor)[];
51
+ default: boolean;
52
+ };
53
+ type: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ disableMaska: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ inputMode: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ width: {
66
+ type: (NumberConstructor | StringConstructor)[];
67
+ };
68
+ minWidth: {
69
+ type: (NumberConstructor | StringConstructor)[];
70
+ default: string;
71
+ };
72
+ maxWidth: {
73
+ type: (NumberConstructor | StringConstructor)[];
74
+ default: string;
75
+ };
76
+ fillHeight: {
77
+ type: (BooleanConstructor | StringConstructor)[];
78
+ default: boolean;
79
+ };
80
+ height: {
81
+ type: (NumberConstructor | StringConstructor)[];
82
+ };
83
+ minHeight: {
84
+ type: (NumberConstructor | StringConstructor)[];
85
+ default: string;
86
+ };
87
+ maxHeight: {
88
+ type: (NumberConstructor | StringConstructor)[];
89
+ default: string;
90
+ };
91
+ align: {
92
+ type: StringConstructor;
93
+ default: string;
94
+ };
95
+ alwaysShowError: {
96
+ type: (BooleanConstructor | StringConstructor)[];
97
+ default: boolean;
98
+ };
99
+ autofill: {
100
+ type: (BooleanConstructor | StringConstructor)[];
101
+ default: boolean;
102
+ };
103
+ clearable: {
104
+ type: (BooleanConstructor | StringConstructor)[];
105
+ default: boolean;
106
+ };
107
+ color: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ dense: {
112
+ type: (BooleanConstructor | StringConstructor)[];
113
+ default: boolean;
114
+ };
115
+ disabled: {
116
+ type: (BooleanConstructor | StringConstructor)[];
117
+ default: boolean;
118
+ };
119
+ hint: {
120
+ type: StringConstructor;
121
+ default: string;
122
+ };
123
+ label: {
124
+ type: StringConstructor;
125
+ default: string;
126
+ };
127
+ mask: {
128
+ default: string;
129
+ };
130
+ maxLength: {
131
+ type: (NumberConstructor | StringConstructor)[];
132
+ default: undefined;
133
+ };
134
+ persistentHint: {
135
+ type: (BooleanConstructor | StringConstructor)[];
136
+ default: boolean;
137
+ };
138
+ placeholder: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ readonly: {
143
+ type: (BooleanConstructor | StringConstructor)[];
144
+ default: boolean;
145
+ };
146
+ autoHintDetails: {
147
+ type: (BooleanConstructor | StringConstructor)[];
148
+ default: boolean;
149
+ };
150
+ reverse: {
151
+ type: (BooleanConstructor | StringConstructor)[];
152
+ default: boolean;
153
+ };
154
+ showBorder: {
155
+ type: (BooleanConstructor | StringConstructor)[];
156
+ default: boolean;
157
+ };
158
+ showHelper: {
159
+ type: (BooleanConstructor | StringConstructor)[];
160
+ default: boolean;
161
+ };
162
+ showLabel: {
163
+ type: (BooleanConstructor | StringConstructor)[];
164
+ default: boolean;
165
+ };
166
+ storePath: {
167
+ type: StringConstructor;
168
+ default: string;
169
+ };
170
+ validations: {
171
+ type: (ObjectConstructor | StringConstructor)[];
172
+ default: {};
173
+ };
174
+ value: {
175
+ default: null;
176
+ };
177
+ grid: {
178
+ default: {};
179
+ type: ObjectConstructor;
180
+ };
181
+ children: {
182
+ type: (StringConstructor | {
183
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
184
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
185
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
186
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
187
+ isArray(arg: any): arg is any[];
188
+ readonly prototype: any[];
189
+ from<T>(arrayLike: ArrayLike<T>): T[];
190
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
191
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
192
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
193
+ of<T_4>(...items: T_4[]): T_4[];
194
+ readonly [Symbol.species]: ArrayConstructor;
195
+ })[];
196
+ default(): never[];
197
+ };
198
+ component: {
199
+ type: StringConstructor;
200
+ };
201
+ allowDuplicate: {
202
+ type: (BooleanConstructor | StringConstructor)[];
203
+ default: boolean;
204
+ };
205
+ autofocus: {
206
+ type: (BooleanConstructor | StringConstructor)[];
207
+ default: boolean;
208
+ };
209
+ cssClass: {
210
+ type: StringConstructor;
211
+ default: string;
212
+ };
213
+ cssStyle: {
214
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
215
+ default: string;
216
+ };
217
+ dark: {
218
+ type: (BooleanConstructor | StringConstructor)[];
219
+ default: boolean;
220
+ };
221
+ directives: {
222
+ type: ObjectConstructor;
223
+ default(): {};
224
+ };
225
+ events: {
226
+ type: ObjectConstructor;
227
+ default(): {};
228
+ };
229
+ instanceObject: {
230
+ type: ObjectConstructor;
231
+ };
232
+ isVisible: {
233
+ type: (BooleanConstructor | StringConstructor)[];
234
+ default: boolean;
235
+ };
236
+ keyMap: {
237
+ type: ObjectConstructor;
238
+ default(): {};
239
+ };
240
+ light: {
241
+ type: (BooleanConstructor | StringConstructor)[];
242
+ default: boolean;
243
+ };
244
+ name: {
245
+ type: StringConstructor;
246
+ required: true;
247
+ };
248
+ parent: {
249
+ type: ObjectConstructor;
250
+ };
251
+ tabStop: {
252
+ type: (BooleanConstructor | StringConstructor)[];
253
+ default: boolean;
254
+ };
255
+ theme: {
256
+ type: StringConstructor;
257
+ };
258
+ };
259
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
260
+ iterableComponentName: {
261
+ type: StringConstructor;
262
+ };
263
+ circle: {
264
+ type: PropType<string | boolean>;
265
+ default: boolean;
266
+ };
267
+ maxButtons: {
268
+ type: PropType<string | number>;
269
+ };
270
+ nextIcon: {
271
+ type: StringConstructor;
272
+ default: string;
273
+ };
274
+ prevIcon: {
275
+ type: StringConstructor;
276
+ default: string;
277
+ };
278
+ appendIcon: {
279
+ type: StringConstructor;
280
+ default: string;
281
+ };
282
+ appendOuterIcon: {
283
+ type: StringConstructor;
284
+ default: string;
285
+ };
286
+ prefix: {
287
+ type: StringConstructor;
288
+ default: string;
289
+ };
290
+ prependIcon: {
291
+ type: StringConstructor;
292
+ default: string;
293
+ };
294
+ prependOuterIcon: {
295
+ type: StringConstructor;
296
+ default: string;
297
+ };
298
+ suffix: {
299
+ type: StringConstructor;
300
+ default: string;
301
+ };
302
+ valueWithPrefix: {
303
+ type: (BooleanConstructor | StringConstructor)[];
304
+ default: boolean;
305
+ };
306
+ valueWithSuffix: {
307
+ type: (BooleanConstructor | StringConstructor)[];
308
+ default: boolean;
309
+ };
310
+ type: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ disableMaska: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ inputMode: {
319
+ type: StringConstructor;
320
+ default: string;
321
+ };
322
+ width: {
323
+ type: (NumberConstructor | StringConstructor)[];
324
+ };
325
+ minWidth: {
326
+ type: (NumberConstructor | StringConstructor)[];
327
+ default: string;
328
+ };
329
+ maxWidth: {
330
+ type: (NumberConstructor | StringConstructor)[];
331
+ default: string;
332
+ };
333
+ fillHeight: {
334
+ type: (BooleanConstructor | StringConstructor)[];
335
+ default: boolean;
336
+ };
337
+ height: {
338
+ type: (NumberConstructor | StringConstructor)[];
339
+ };
340
+ minHeight: {
341
+ type: (NumberConstructor | StringConstructor)[];
342
+ default: string;
343
+ };
344
+ maxHeight: {
345
+ type: (NumberConstructor | StringConstructor)[];
346
+ default: string;
347
+ };
348
+ align: {
349
+ type: StringConstructor;
350
+ default: string;
351
+ };
352
+ alwaysShowError: {
353
+ type: (BooleanConstructor | StringConstructor)[];
354
+ default: boolean;
355
+ };
356
+ autofill: {
357
+ type: (BooleanConstructor | StringConstructor)[];
358
+ default: boolean;
359
+ };
360
+ clearable: {
361
+ type: (BooleanConstructor | StringConstructor)[];
362
+ default: boolean;
363
+ };
364
+ color: {
365
+ type: StringConstructor;
366
+ default: string;
367
+ };
368
+ dense: {
369
+ type: (BooleanConstructor | StringConstructor)[];
370
+ default: boolean;
371
+ };
372
+ disabled: {
373
+ type: (BooleanConstructor | StringConstructor)[];
374
+ default: boolean;
375
+ };
376
+ hint: {
377
+ type: StringConstructor;
378
+ default: string;
379
+ };
380
+ label: {
381
+ type: StringConstructor;
382
+ default: string;
383
+ };
384
+ mask: {
385
+ default: string;
386
+ };
387
+ maxLength: {
388
+ type: (NumberConstructor | StringConstructor)[];
389
+ default: undefined;
390
+ };
391
+ persistentHint: {
392
+ type: (BooleanConstructor | StringConstructor)[];
393
+ default: boolean;
394
+ };
395
+ placeholder: {
396
+ type: StringConstructor;
397
+ default: string;
398
+ };
399
+ readonly: {
400
+ type: (BooleanConstructor | StringConstructor)[];
401
+ default: boolean;
402
+ };
403
+ autoHintDetails: {
404
+ type: (BooleanConstructor | StringConstructor)[];
405
+ default: boolean;
406
+ };
407
+ reverse: {
408
+ type: (BooleanConstructor | StringConstructor)[];
409
+ default: boolean;
410
+ };
411
+ showBorder: {
412
+ type: (BooleanConstructor | StringConstructor)[];
413
+ default: boolean;
414
+ };
415
+ showHelper: {
416
+ type: (BooleanConstructor | StringConstructor)[];
417
+ default: boolean;
418
+ };
419
+ showLabel: {
420
+ type: (BooleanConstructor | StringConstructor)[];
421
+ default: boolean;
422
+ };
423
+ storePath: {
424
+ type: StringConstructor;
425
+ default: string;
426
+ };
427
+ validations: {
428
+ type: (ObjectConstructor | StringConstructor)[];
429
+ default: {};
430
+ };
431
+ value: {
432
+ default: null;
433
+ };
434
+ grid: {
435
+ default: {};
436
+ type: ObjectConstructor;
437
+ };
438
+ children: {
439
+ type: (StringConstructor | {
440
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
441
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
442
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
443
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
444
+ isArray(arg: any): arg is any[];
445
+ readonly prototype: any[];
446
+ from<T>(arrayLike: ArrayLike<T>): T[];
447
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
448
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
449
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
450
+ of<T_4>(...items: T_4[]): T_4[];
451
+ readonly [Symbol.species]: ArrayConstructor;
452
+ })[];
453
+ default(): never[];
454
+ };
455
+ component: {
456
+ type: StringConstructor;
457
+ };
458
+ allowDuplicate: {
459
+ type: (BooleanConstructor | StringConstructor)[];
460
+ default: boolean;
461
+ };
462
+ autofocus: {
463
+ type: (BooleanConstructor | StringConstructor)[];
464
+ default: boolean;
465
+ };
466
+ cssClass: {
467
+ type: StringConstructor;
468
+ default: string;
469
+ };
470
+ cssStyle: {
471
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
472
+ default: string;
473
+ };
474
+ dark: {
475
+ type: (BooleanConstructor | StringConstructor)[];
476
+ default: boolean;
477
+ };
478
+ directives: {
479
+ type: ObjectConstructor;
480
+ default(): {};
481
+ };
482
+ events: {
483
+ type: ObjectConstructor;
484
+ default(): {};
485
+ };
486
+ instanceObject: {
487
+ type: ObjectConstructor;
488
+ };
489
+ isVisible: {
490
+ type: (BooleanConstructor | StringConstructor)[];
491
+ default: boolean;
492
+ };
493
+ keyMap: {
494
+ type: ObjectConstructor;
495
+ default(): {};
496
+ };
497
+ light: {
498
+ type: (BooleanConstructor | StringConstructor)[];
499
+ default: boolean;
500
+ };
501
+ name: {
502
+ type: StringConstructor;
503
+ required: true;
504
+ };
505
+ parent: {
506
+ type: ObjectConstructor;
507
+ };
508
+ tabStop: {
509
+ type: (BooleanConstructor | StringConstructor)[];
510
+ default: boolean;
511
+ };
512
+ theme: {
513
+ type: StringConstructor;
514
+ };
515
+ }>, {
516
+ instance: {
517
+ prevIcon: string;
518
+ nextIcon: string;
519
+ circle: boolean;
520
+ maxButtons?: number | undefined;
521
+ iterableComponentName: string;
522
+ iterableComponent: {
523
+ datasource: {
524
+ data: import("@zeedhi/core").IDictionary<any>[];
525
+ defaultLimit: number;
526
+ filter: import("@zeedhi/core").IDictionary<any>;
527
+ loadAll: boolean;
528
+ loading: boolean;
529
+ order: string[];
530
+ page: number;
531
+ search: string;
532
+ searchIn: string[];
533
+ selectedRows: import("@zeedhi/core").IDictionary<any>[];
534
+ uniqueKey: string;
535
+ visibleSelectedRows: import("@zeedhi/core").IDictionary<any>[];
536
+ watchUrl: boolean;
537
+ error: any;
538
+ events: {
539
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
540
+ onChangeCurrentRow?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
541
+ onChangePagination?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
542
+ };
543
+ initialize: () => void | Promise<void>;
544
+ destroy: () => void;
545
+ currentRow: import("@zeedhi/core").IDictionary<any>;
546
+ limit: number;
547
+ total: number;
548
+ urlHasChanged: () => boolean;
549
+ get: () => Promise<any>;
550
+ post: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
551
+ put: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
552
+ delete: (row?: import("@zeedhi/core").IDictionary<any> | undefined) => Promise<any>;
553
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
554
+ getLoadedData: () => import("@zeedhi/core").IDictionary<any>[];
555
+ setSearch: (search: string) => Promise<any>;
556
+ addFilter: (column: string, value: any) => Promise<any>;
557
+ removeFilter: (column: string) => Promise<any>;
558
+ setFilter: (filter: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
559
+ clearFilter: () => Promise<any>;
560
+ setLimit: (limit: number, replaceUrl?: boolean | undefined) => Promise<any>;
561
+ setPage: (page: number, replaceUrl?: boolean | undefined) => Promise<any>;
562
+ addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
563
+ removeOrder: (column: string) => Promise<any>;
564
+ setOrder: (order: string[]) => Promise<any>;
565
+ clearOrder: () => Promise<any>;
566
+ getOrderByColumn: (column: string) => import("@zeedhi/core").Order | null;
567
+ selectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
568
+ deselectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
569
+ updateSelectedPage: () => Promise<any> | import("@zeedhi/core").IDictionary<any>[];
570
+ clone: () => import("@zeedhi/core").IDatasource;
571
+ registerGetCallback: (callback: import("@zeedhi/core").Callback) => void;
572
+ hasFilter: (columnName: string) => boolean;
573
+ };
574
+ columns: {
575
+ align: import("@zeedhi/common").ColumnAlign;
576
+ label: string;
577
+ width?: string | undefined;
578
+ maxWidth?: string | undefined;
579
+ minWidth?: string | undefined;
580
+ mask: string;
581
+ type?: "action" | undefined;
582
+ actionFixed: boolean;
583
+ fixed: boolean;
584
+ sortable: boolean;
585
+ loading: boolean;
586
+ componentProps: any;
587
+ style: import("@zeedhi/core").IDictionary<any>;
588
+ xlsType: string;
589
+ lookupData: any;
590
+ lookupDataCount: number;
591
+ overflow: string | number;
592
+ conditions: import("@zeedhi/core").IDictionary<any>;
593
+ helperText: string;
594
+ storeData: boolean;
595
+ setViewGetWidth: (viewGetWidth: () => number) => void;
596
+ setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary<any>) => void;
597
+ getWidth: () => number;
598
+ formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
599
+ formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
600
+ getLookupData: (lookupColumn: string, value: any) => any;
601
+ initialize: () => void;
602
+ clearLookupData: () => void;
603
+ onBeforeDestroy: () => void;
604
+ allowDuplicate: boolean;
605
+ autofocus: boolean;
606
+ children: {
607
+ [x: string]: any;
608
+ allowDuplicate?: boolean | undefined;
609
+ autofocus?: boolean | undefined;
610
+ children?: any[] | undefined;
611
+ componentId?: number | undefined;
612
+ cssClass?: string | undefined;
613
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
614
+ events?: {
615
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
616
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
623
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
624
+ } | undefined;
625
+ directives?: {
626
+ [x: string]: {
627
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
628
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
634
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
+ } | undefined;
637
+ touch?: {
638
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
639
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
645
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
647
+ } | undefined;
648
+ } | undefined;
649
+ isVisible?: string | boolean | undefined;
650
+ dark?: boolean | undefined;
651
+ light?: boolean | undefined;
652
+ theme?: string | undefined;
653
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
654
+ name: string;
655
+ parent?: {
656
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
657
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
658
+ allowDuplicate: boolean;
659
+ autofocus: boolean;
660
+ children: any[];
661
+ componentId: number;
662
+ cssClass: string;
663
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
664
+ events: {
665
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
666
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
668
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ };
675
+ directives: {
676
+ [x: string]: {
677
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
678
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
679
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
+ } | undefined;
687
+ touch?: {
688
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
689
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
695
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
696
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
697
+ } | undefined;
698
+ };
699
+ isVisible: string | boolean;
700
+ dark: boolean;
701
+ light: boolean;
702
+ theme?: string | undefined;
703
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
704
+ name: string;
705
+ parent?: any | undefined;
706
+ tabStop: boolean;
707
+ userProperties: import("@zeedhi/core").IDictionary<any>;
708
+ fillHeight: boolean;
709
+ } | undefined;
710
+ tabStop?: boolean | undefined;
711
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
712
+ fillHeight?: boolean | undefined;
713
+ }[];
714
+ childrenInstances: any[];
715
+ cssClass: string;
716
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
717
+ directives: {
718
+ [x: string]: {
719
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
720
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
726
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
727
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
728
+ } | undefined;
729
+ touch?: {
730
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
731
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
733
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
737
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
738
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
739
+ } | undefined;
740
+ };
741
+ events: {
742
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
743
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
750
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
751
+ };
752
+ isVisible: boolean;
753
+ name: string;
754
+ dark: boolean;
755
+ light: boolean;
756
+ theme?: string | undefined;
757
+ fillHeight: boolean;
758
+ parent?: {
759
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
760
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
761
+ allowDuplicate: boolean;
762
+ autofocus: boolean;
763
+ children: any[];
764
+ componentId: number;
765
+ cssClass: string;
766
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
767
+ events: {
768
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
769
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
773
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
+ };
778
+ directives: {
779
+ [x: string]: {
780
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
781
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
782
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
783
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
784
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
785
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
786
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
+ } | undefined;
790
+ touch?: {
791
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
792
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
+ } | undefined;
801
+ };
802
+ isVisible: string | boolean;
803
+ dark: boolean;
804
+ light: boolean;
805
+ theme?: string | undefined;
806
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
807
+ name: string;
808
+ parent?: any | undefined;
809
+ tabStop: boolean;
810
+ userProperties: import("@zeedhi/core").IDictionary<any>;
811
+ fillHeight: boolean;
812
+ } | undefined;
813
+ componentId: number;
814
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
815
+ isFocused: boolean;
816
+ tabStop: boolean;
817
+ userProperties: import("@zeedhi/core").IDictionary<any>;
818
+ setViewFocus: (viewFocus: () => void) => void;
819
+ setFocus: () => void;
820
+ callEvent: (eventName: string, args: any) => boolean;
821
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
822
+ removeChild: (name: string) => void;
823
+ getChildInstance: <T_6>(name: string) => T_6;
824
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
825
+ onCreated: () => void;
826
+ onBeforeMount: () => void;
827
+ onMounted: (element: any) => void;
828
+ onDestroyed: () => void;
829
+ click: (event?: Event | undefined, element?: any) => void;
830
+ focus: (event: Event, element: any) => void;
831
+ blur: (event: Event, element: any) => void;
832
+ mouseenter: (event?: Event | undefined, element?: any) => void;
833
+ mouseleave: (event?: Event | undefined, element?: any) => void;
834
+ mouseout: (event?: Event | undefined, element?: any) => void;
835
+ mouseover: (event?: Event | undefined, element?: any) => void;
836
+ }[];
837
+ pageSizes: string[];
838
+ events: {
839
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
840
+ changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
841
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
842
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
843
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
844
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
845
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
846
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
847
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
848
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
849
+ };
850
+ virtualScroll: boolean;
851
+ virtualScrollCache: number;
852
+ searchVisibleOnly: boolean;
853
+ defaultSearchVisibleOnly: boolean;
854
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
855
+ getAppliedConditions: (args: {
856
+ row: import("@zeedhi/core").IDictionary<any>;
857
+ column: import("@zeedhi/common").Column;
858
+ path?: string | undefined;
859
+ }) => Partial<import("@zeedhi/common").IComponentRender>;
860
+ getCurrentRowIndex: () => number;
861
+ getPage: () => number;
862
+ setPage: (page: number) => Promise<any>;
863
+ getLastPage: () => number;
864
+ onCreated: () => void;
865
+ createColumn: (columnProps: import("@zeedhi/common").IColumn) => import("@zeedhi/common").Column;
866
+ getColumn: (name: string) => import("@zeedhi/common").Column;
867
+ readonly pageText: string;
868
+ readonly paginationLength: number;
869
+ getCellWithAppliedConditions: (columns: import("@zeedhi/common").Column[], row: import("@zeedhi/core").IDictionary<any>) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
870
+ reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[] | undefined) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
871
+ reload: () => Promise<any>;
872
+ changeData: (data: import("@zeedhi/core").IDictionary<any>[]) => void;
873
+ onBeforeDestroy: () => void;
874
+ changeLayout: (event?: Event | undefined, element?: any) => void;
875
+ setSearch: (search: string) => Promise<any>;
876
+ setCurrentRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
877
+ setOrder: (order: string[]) => Promise<any>;
878
+ getRowKey: (row: import("@zeedhi/core").IDictionary<any>) => any;
879
+ delete: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
880
+ getData: () => import("@zeedhi/core").IDictionary<any>[];
881
+ findRow: (key: string | number) => import("@zeedhi/core").IDictionary<any> | undefined;
882
+ children: {
883
+ [x: string]: any;
884
+ children?: any[] | undefined;
885
+ component: string;
886
+ allowDuplicate?: boolean | undefined;
887
+ autofocus?: boolean | undefined;
888
+ componentId?: number | undefined;
889
+ cssClass?: string | undefined;
890
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
891
+ events?: {
892
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
893
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
896
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
897
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
898
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
899
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
900
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
+ } | undefined;
902
+ directives?: {
903
+ [x: string]: {
904
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
905
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
907
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
908
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
909
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
910
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
911
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
912
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
913
+ } | undefined;
914
+ touch?: {
915
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
916
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
917
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
918
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
919
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
920
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
921
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
922
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
923
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
924
+ } | undefined;
925
+ } | undefined;
926
+ isVisible?: string | boolean | undefined;
927
+ dark?: boolean | undefined;
928
+ light?: boolean | undefined;
929
+ theme?: string | undefined;
930
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
931
+ name: string;
932
+ parent?: {
933
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
934
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
935
+ allowDuplicate: boolean;
936
+ autofocus: boolean;
937
+ children: any[];
938
+ componentId: number;
939
+ cssClass: string;
940
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
941
+ events: {
942
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
943
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
948
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
950
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
+ };
952
+ directives: {
953
+ [x: string]: {
954
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
955
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
961
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
+ } | undefined;
964
+ touch?: {
965
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
966
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
967
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
968
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
969
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
971
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
972
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
+ } | undefined;
975
+ };
976
+ isVisible: string | boolean;
977
+ dark: boolean;
978
+ light: boolean;
979
+ theme?: string | undefined;
980
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
981
+ name: string;
982
+ parent?: any | undefined;
983
+ tabStop: boolean;
984
+ userProperties: import("@zeedhi/core").IDictionary<any>;
985
+ fillHeight: boolean;
986
+ } | undefined;
987
+ tabStop?: boolean | undefined;
988
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
989
+ fillHeight?: boolean | undefined;
990
+ }[];
991
+ component: string;
992
+ allowDuplicate: boolean;
993
+ autofocus: boolean;
994
+ childrenInstances: any[];
995
+ cssClass: string;
996
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
997
+ directives: {
998
+ [x: string]: {
999
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1000
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1001
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1006
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
+ } | undefined;
1009
+ touch?: {
1010
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1011
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1012
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1013
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1015
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
+ } | undefined;
1020
+ };
1021
+ isVisible: boolean;
1022
+ name: string;
1023
+ dark: boolean;
1024
+ light: boolean;
1025
+ theme?: string | undefined;
1026
+ fillHeight: boolean;
1027
+ parent?: {
1028
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1029
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1030
+ allowDuplicate: boolean;
1031
+ autofocus: boolean;
1032
+ children: any[];
1033
+ componentId: number;
1034
+ cssClass: string;
1035
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1036
+ events: {
1037
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1038
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1043
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1044
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1045
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1046
+ };
1047
+ directives: {
1048
+ [x: string]: {
1049
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1050
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1055
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1056
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1057
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1058
+ } | undefined;
1059
+ touch?: {
1060
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1061
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1066
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1067
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1068
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1069
+ } | undefined;
1070
+ };
1071
+ isVisible: string | boolean;
1072
+ dark: boolean;
1073
+ light: boolean;
1074
+ theme?: string | undefined;
1075
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1076
+ name: string;
1077
+ parent?: any | undefined;
1078
+ tabStop: boolean;
1079
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1080
+ fillHeight: boolean;
1081
+ } | undefined;
1082
+ componentId: number;
1083
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1084
+ isFocused: boolean;
1085
+ tabStop: boolean;
1086
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1087
+ setViewFocus: (viewFocus: () => void) => void;
1088
+ setFocus: () => void;
1089
+ callEvent: (eventName: string, args: any) => boolean;
1090
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1091
+ removeChild: (name: string) => void;
1092
+ getChildInstance: <T_6>(name: string) => T_6;
1093
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1094
+ onBeforeMount: () => void;
1095
+ onMounted: (element: any) => void;
1096
+ onDestroyed: () => void;
1097
+ click: (event?: Event | undefined, element?: any) => void;
1098
+ focus: (event: Event, element: any) => void;
1099
+ blur: (event: Event, element: any) => void;
1100
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1101
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1102
+ mouseout: (event?: Event | undefined, element?: any) => void;
1103
+ mouseover: (event?: Event | undefined, element?: any) => void;
1104
+ };
1105
+ onMounted: (element: any) => void;
1106
+ children: {
1107
+ [x: string]: any;
1108
+ children?: any[] | undefined;
1109
+ component: string;
1110
+ allowDuplicate?: boolean | undefined;
1111
+ autofocus?: boolean | undefined;
1112
+ componentId?: number | undefined;
1113
+ cssClass?: string | undefined;
1114
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1115
+ events?: {
1116
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1117
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1120
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1122
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1123
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
+ } | undefined;
1126
+ directives?: {
1127
+ [x: string]: {
1128
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1129
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1130
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1131
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1137
+ } | undefined;
1138
+ touch?: {
1139
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1140
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1147
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1148
+ } | undefined;
1149
+ } | undefined;
1150
+ isVisible?: string | boolean | undefined;
1151
+ dark?: boolean | undefined;
1152
+ light?: boolean | undefined;
1153
+ theme?: string | undefined;
1154
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1155
+ name: string;
1156
+ parent?: {
1157
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1158
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1159
+ allowDuplicate: boolean;
1160
+ autofocus: boolean;
1161
+ children: any[];
1162
+ componentId: number;
1163
+ cssClass: string;
1164
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1165
+ events: {
1166
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1167
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1169
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1170
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1171
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1172
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1173
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1174
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
+ };
1176
+ directives: {
1177
+ [x: string]: {
1178
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1179
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1180
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1181
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1182
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1183
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1184
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1185
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1186
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1187
+ } | undefined;
1188
+ touch?: {
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
+ };
1200
+ isVisible: string | boolean;
1201
+ dark: boolean;
1202
+ light: boolean;
1203
+ theme?: string | undefined;
1204
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1205
+ name: string;
1206
+ parent?: any | undefined;
1207
+ tabStop: boolean;
1208
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1209
+ fillHeight: boolean;
1210
+ } | undefined;
1211
+ tabStop?: boolean | undefined;
1212
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1213
+ fillHeight?: boolean | undefined;
1214
+ }[];
1215
+ component: string;
1216
+ allowDuplicate: boolean;
1217
+ autofocus: boolean;
1218
+ childrenInstances: any[];
1219
+ cssClass: string;
1220
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1221
+ directives: {
1222
+ [x: string]: {
1223
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1224
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1227
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1228
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1229
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1230
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1231
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1232
+ } | undefined;
1233
+ touch?: {
1234
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1235
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1240
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1241
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1242
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1243
+ } | undefined;
1244
+ };
1245
+ events: {
1246
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1247
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1253
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1254
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1255
+ };
1256
+ isVisible: boolean;
1257
+ name: string;
1258
+ dark: boolean;
1259
+ light: boolean;
1260
+ theme?: string | undefined;
1261
+ fillHeight: boolean;
1262
+ parent?: {
1263
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1264
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1265
+ allowDuplicate: boolean;
1266
+ autofocus: boolean;
1267
+ children: any[];
1268
+ componentId: number;
1269
+ cssClass: string;
1270
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1271
+ events: {
1272
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1273
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1279
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1280
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1281
+ };
1282
+ directives: {
1283
+ [x: string]: {
1284
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1285
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1286
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1287
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1289
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1290
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1291
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1292
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1293
+ } | undefined;
1294
+ touch?: {
1295
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1296
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1302
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1303
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1304
+ } | undefined;
1305
+ };
1306
+ isVisible: string | boolean;
1307
+ dark: boolean;
1308
+ light: boolean;
1309
+ theme?: string | undefined;
1310
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1311
+ name: string;
1312
+ parent?: any | undefined;
1313
+ tabStop: boolean;
1314
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1315
+ fillHeight: boolean;
1316
+ } | undefined;
1317
+ componentId: number;
1318
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1319
+ isFocused: boolean;
1320
+ tabStop: boolean;
1321
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1322
+ setViewFocus: (viewFocus: () => void) => void;
1323
+ setFocus: () => void;
1324
+ callEvent: (eventName: string, args: any) => boolean;
1325
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1326
+ removeChild: (name: string) => void;
1327
+ getChildInstance: <T_6>(name: string) => T_6;
1328
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1329
+ onCreated: () => void;
1330
+ onBeforeMount: () => void;
1331
+ onBeforeDestroy: () => void;
1332
+ onDestroyed: () => void;
1333
+ click: (event?: Event | undefined, element?: any) => void;
1334
+ focus: (event: Event, element: any) => void;
1335
+ blur: (event: Event, element: any) => void;
1336
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1337
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1338
+ mouseout: (event?: Event | undefined, element?: any) => void;
1339
+ mouseover: (event?: Event | undefined, element?: any) => void;
1340
+ };
1341
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1342
+ iterableComponentName: {
1343
+ type: StringConstructor;
1344
+ };
1345
+ circle: {
1346
+ type: PropType<string | boolean>;
1347
+ default: boolean;
1348
+ };
1349
+ maxButtons: {
1350
+ type: PropType<string | number>;
1351
+ };
1352
+ nextIcon: {
1353
+ type: StringConstructor;
1354
+ default: string;
1355
+ };
1356
+ prevIcon: {
1357
+ type: StringConstructor;
1358
+ default: string;
1359
+ };
1360
+ appendIcon: {
1361
+ type: StringConstructor;
1362
+ default: string;
1363
+ };
1364
+ appendOuterIcon: {
1365
+ type: StringConstructor;
1366
+ default: string;
1367
+ };
1368
+ prefix: {
1369
+ type: StringConstructor;
1370
+ default: string;
1371
+ };
1372
+ prependIcon: {
1373
+ type: StringConstructor;
1374
+ default: string;
1375
+ };
1376
+ prependOuterIcon: {
1377
+ type: StringConstructor;
1378
+ default: string;
1379
+ };
1380
+ suffix: {
1381
+ type: StringConstructor;
1382
+ default: string;
1383
+ };
1384
+ valueWithPrefix: {
1385
+ type: (BooleanConstructor | StringConstructor)[];
1386
+ default: boolean;
1387
+ };
1388
+ valueWithSuffix: {
1389
+ type: (BooleanConstructor | StringConstructor)[];
1390
+ default: boolean;
1391
+ };
1392
+ type: {
1393
+ type: StringConstructor;
1394
+ default: string;
1395
+ };
1396
+ disableMaska: {
1397
+ type: BooleanConstructor;
1398
+ default: boolean;
1399
+ };
1400
+ inputMode: {
1401
+ type: StringConstructor;
1402
+ default: string;
1403
+ };
1404
+ width: {
1405
+ type: (NumberConstructor | StringConstructor)[];
1406
+ };
1407
+ minWidth: {
1408
+ type: (NumberConstructor | StringConstructor)[];
1409
+ default: string;
1410
+ };
1411
+ maxWidth: {
1412
+ type: (NumberConstructor | StringConstructor)[];
1413
+ default: string;
1414
+ };
1415
+ fillHeight: {
1416
+ type: (BooleanConstructor | StringConstructor)[];
1417
+ default: boolean;
1418
+ };
1419
+ height: {
1420
+ type: (NumberConstructor | StringConstructor)[];
1421
+ };
1422
+ minHeight: {
1423
+ type: (NumberConstructor | StringConstructor)[];
1424
+ default: string;
1425
+ };
1426
+ maxHeight: {
1427
+ type: (NumberConstructor | StringConstructor)[];
1428
+ default: string;
1429
+ };
1430
+ align: {
1431
+ type: StringConstructor;
1432
+ default: string;
1433
+ };
1434
+ alwaysShowError: {
1435
+ type: (BooleanConstructor | StringConstructor)[];
1436
+ default: boolean;
1437
+ };
1438
+ autofill: {
1439
+ type: (BooleanConstructor | StringConstructor)[];
1440
+ default: boolean;
1441
+ };
1442
+ clearable: {
1443
+ type: (BooleanConstructor | StringConstructor)[];
1444
+ default: boolean;
1445
+ };
1446
+ color: {
1447
+ type: StringConstructor;
1448
+ default: string;
1449
+ };
1450
+ dense: {
1451
+ type: (BooleanConstructor | StringConstructor)[];
1452
+ default: boolean;
1453
+ };
1454
+ disabled: {
1455
+ type: (BooleanConstructor | StringConstructor)[];
1456
+ default: boolean;
1457
+ };
1458
+ hint: {
1459
+ type: StringConstructor;
1460
+ default: string;
1461
+ };
1462
+ label: {
1463
+ type: StringConstructor;
1464
+ default: string;
1465
+ };
1466
+ mask: {
1467
+ default: string;
1468
+ };
1469
+ maxLength: {
1470
+ type: (NumberConstructor | StringConstructor)[];
1471
+ default: undefined;
1472
+ };
1473
+ persistentHint: {
1474
+ type: (BooleanConstructor | StringConstructor)[];
1475
+ default: boolean;
1476
+ };
1477
+ placeholder: {
1478
+ type: StringConstructor;
1479
+ default: string;
1480
+ };
1481
+ readonly: {
1482
+ type: (BooleanConstructor | StringConstructor)[];
1483
+ default: boolean;
1484
+ };
1485
+ autoHintDetails: {
1486
+ type: (BooleanConstructor | StringConstructor)[];
1487
+ default: boolean;
1488
+ };
1489
+ reverse: {
1490
+ type: (BooleanConstructor | StringConstructor)[];
1491
+ default: boolean;
1492
+ };
1493
+ showBorder: {
1494
+ type: (BooleanConstructor | StringConstructor)[];
1495
+ default: boolean;
1496
+ };
1497
+ showHelper: {
1498
+ type: (BooleanConstructor | StringConstructor)[];
1499
+ default: boolean;
1500
+ };
1501
+ showLabel: {
1502
+ type: (BooleanConstructor | StringConstructor)[];
1503
+ default: boolean;
1504
+ };
1505
+ storePath: {
1506
+ type: StringConstructor;
1507
+ default: string;
1508
+ };
1509
+ validations: {
1510
+ type: (ObjectConstructor | StringConstructor)[];
1511
+ default: {};
1512
+ };
1513
+ value: {
1514
+ default: null;
1515
+ };
1516
+ grid: {
1517
+ default: {};
1518
+ type: ObjectConstructor;
1519
+ };
1520
+ children: {
1521
+ type: (StringConstructor | {
1522
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1523
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1524
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1525
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1526
+ isArray(arg: any): arg is any[];
1527
+ readonly prototype: any[];
1528
+ from<T>(arrayLike: ArrayLike<T>): T[];
1529
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1530
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1531
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1532
+ of<T_4>(...items: T_4[]): T_4[];
1533
+ readonly [Symbol.species]: ArrayConstructor;
1534
+ })[];
1535
+ default(): never[];
1536
+ };
1537
+ component: {
1538
+ type: StringConstructor;
1539
+ };
1540
+ allowDuplicate: {
1541
+ type: (BooleanConstructor | StringConstructor)[];
1542
+ default: boolean;
1543
+ };
1544
+ autofocus: {
1545
+ type: (BooleanConstructor | StringConstructor)[];
1546
+ default: boolean;
1547
+ };
1548
+ cssClass: {
1549
+ type: StringConstructor;
1550
+ default: string;
1551
+ };
1552
+ cssStyle: {
1553
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1554
+ default: string;
1555
+ };
1556
+ dark: {
1557
+ type: (BooleanConstructor | StringConstructor)[];
1558
+ default: boolean;
1559
+ };
1560
+ directives: {
1561
+ type: ObjectConstructor;
1562
+ default(): {};
1563
+ };
1564
+ events: {
1565
+ type: ObjectConstructor;
1566
+ default(): {};
1567
+ };
1568
+ instanceObject: {
1569
+ type: ObjectConstructor;
1570
+ };
1571
+ isVisible: {
1572
+ type: (BooleanConstructor | StringConstructor)[];
1573
+ default: boolean;
1574
+ };
1575
+ keyMap: {
1576
+ type: ObjectConstructor;
1577
+ default(): {};
1578
+ };
1579
+ light: {
1580
+ type: (BooleanConstructor | StringConstructor)[];
1581
+ default: boolean;
1582
+ };
1583
+ name: {
1584
+ type: StringConstructor;
1585
+ required: true;
1586
+ };
1587
+ parent: {
1588
+ type: ObjectConstructor;
1589
+ };
1590
+ tabStop: {
1591
+ type: (BooleanConstructor | StringConstructor)[];
1592
+ default: boolean;
1593
+ };
1594
+ theme: {
1595
+ type: StringConstructor;
1596
+ };
1597
+ }>> & Readonly<{}>, {
1598
+ reverse: string | boolean;
1599
+ allowDuplicate: string | boolean;
1600
+ type: string;
1601
+ autofocus: string | boolean;
1602
+ children: string | import("@zeedhi/common").IComponentRender[];
1603
+ cssClass: string;
1604
+ cssStyle: import("vue").StyleValue;
1605
+ dark: string | boolean;
1606
+ directives: Record<string, any>;
1607
+ events: Record<string, any>;
1608
+ isVisible: string | boolean;
1609
+ keyMap: Record<string, any>;
1610
+ light: string | boolean;
1611
+ tabStop: string | boolean;
1612
+ fillHeight: string | boolean;
1613
+ value: null;
1614
+ label: string;
1615
+ circle: string | boolean;
1616
+ mask: string;
1617
+ color: string;
1618
+ disabled: string | boolean;
1619
+ appendIcon: string;
1620
+ prependIcon: string;
1621
+ dense: string | boolean;
1622
+ minWidth: string | number;
1623
+ maxWidth: string | number;
1624
+ minHeight: string | number;
1625
+ maxHeight: string | number;
1626
+ align: string;
1627
+ alwaysShowError: string | boolean;
1628
+ autofill: string | boolean;
1629
+ clearable: string | boolean;
1630
+ hint: string;
1631
+ maxLength: string | number;
1632
+ persistentHint: string | boolean;
1633
+ placeholder: string;
1634
+ readonly: string | boolean;
1635
+ autoHintDetails: string | boolean;
1636
+ showBorder: string | boolean;
1637
+ showHelper: string | boolean;
1638
+ showLabel: string | boolean;
1639
+ storePath: string;
1640
+ validations: string | Record<string, any>;
1641
+ grid: Record<string, any>;
1642
+ appendOuterIcon: string;
1643
+ prefix: string;
1644
+ prependOuterIcon: string;
1645
+ suffix: string;
1646
+ valueWithPrefix: string | boolean;
1647
+ valueWithSuffix: string | boolean;
1648
+ inputMode: string;
1649
+ disableMaska: boolean;
1650
+ nextIcon: string;
1651
+ prevIcon: string;
1652
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1653
+ export default _default;