@zeedhi/vuetify 3.0.11 → 3.2.0

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 (347) hide show
  1. package/dist/zd-vuetify.css +49 -59
  2. package/dist/zd-vuetify.min.css +1 -1
  3. package/dist/zd-vuetify.min.js +14 -16
  4. package/dist/zd-vuetify.mjs +1278 -922
  5. package/environments.json +16 -0
  6. package/package.json +3 -3
  7. package/src/components/index.ts +3 -1
  8. package/src/components/zd-alert/ZdAlert.ts +1 -1
  9. package/src/components/zd-badge/ZdBadge.ts +1 -1
  10. package/src/components/zd-breadcrumbs/ZdBreadcrumbs.ts +2 -1
  11. package/src/components/zd-button/ZdButton.ts +1 -1
  12. package/src/components/zd-button-group/ZdButtonGroup.ts +1 -1
  13. package/src/components/zd-card/ZdCard.ts +1 -1
  14. package/src/components/zd-card/ZdCard.vue +2 -2
  15. package/src/components/zd-carousel/ZdCarousel.ts +3 -1
  16. package/src/components/zd-checkbox/ZdCheckbox.ts +1 -1
  17. package/src/components/zd-checkbox/ZdCheckbox.vue +4 -0
  18. package/src/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts +3 -1
  19. package/src/components/zd-chip/ZdChip.ts +1 -1
  20. package/src/components/zd-code-viewer/ZdCodeViewer.ts +1 -1
  21. package/src/components/zd-col/ZdCol.ts +1 -1
  22. package/src/components/zd-collapse-card/ZdCollapseCard.ts +3 -1
  23. package/src/components/zd-component/ZdComponent.ts +23 -1
  24. package/src/components/zd-component/ZdComponentRender.ts +2 -0
  25. package/src/components/zd-container/ZdContainer.ts +1 -1
  26. package/src/components/zd-currency/ZdCurrency.ts +1 -1
  27. package/src/components/zd-date-input/ZdDateInput.ts +2 -1
  28. package/src/components/zd-date-range/ZdDateRange.ts +1 -1
  29. package/src/components/zd-divider/ZdDivider.ts +1 -1
  30. package/src/components/zd-dropdown/ZdDropdown.ts +2 -1
  31. package/src/components/zd-dropdown/ZdDropdown.vue +1 -1
  32. package/src/components/zd-footer/ZdFooter.ts +1 -1
  33. package/src/components/zd-form/ZdForm.ts +2 -1
  34. package/src/components/zd-frame/ZdFrame.ts +3 -1
  35. package/src/components/zd-frame-page/ZdFramePage.ts +1 -1
  36. package/src/components/zd-frame-page/ZdFramePage.vue +1 -1
  37. package/src/components/zd-grid/ZdGrid.ts +10 -2
  38. package/src/components/zd-grid/ZdGrid.vue +1 -1
  39. package/src/components/zd-grid/cell/ZdGridCellContent.vue +5 -7
  40. package/src/components/zd-grid/column-header/ZdGridColumnHeader.vue +4 -7
  41. package/src/components/zd-grid-editable/ZdGridEditable.ts +25 -15
  42. package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -0
  43. package/src/components/zd-header/ZdHeader.ts +4 -1
  44. package/src/components/zd-icon/ZdIcon.ts +1 -1
  45. package/src/components/zd-image/ZdImage.ts +1 -1
  46. package/src/components/zd-increment/ZdIncrement.ts +1 -1
  47. package/src/components/zd-input/ZdInput.ts +10 -3
  48. package/src/components/zd-iterable/ZdIterable.ts +2 -0
  49. package/src/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts +6 -1
  50. package/src/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts +1 -1
  51. package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts +2 -1
  52. package/src/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts +8 -3
  53. package/src/components/zd-iterable/zd-search/ZdSearch.ts +1 -1
  54. package/src/components/zd-iterable-component-render/ZdIterableComponentRender.ts +12 -1
  55. package/src/components/zd-layout/ZdLayout.ts +1 -1
  56. package/src/components/zd-list/ZdList.scss +3 -0
  57. package/src/components/zd-list/ZdList.ts +2 -1
  58. package/src/components/zd-list/ZdListGroup.ts +2 -1
  59. package/src/components/zd-list/ZdListGroup.vue +14 -16
  60. package/src/components/zd-list/ZdListItem.ts +1 -1
  61. package/src/components/zd-loading/ZdLoading.ts +1 -1
  62. package/src/components/zd-loading/ZdLoading.vue +30 -53
  63. package/src/components/zd-login/ZdLogin.ts +3 -1
  64. package/src/components/zd-login/ZdLoginButton.ts +1 -1
  65. package/src/components/zd-main/ZdMain.ts +1 -1
  66. package/src/components/zd-master-detail/ZdMasterDetail.ts +1 -1
  67. package/src/components/zd-menu/ZdMenu.ts +9 -4
  68. package/src/components/zd-menu/ZdMenu.vue +6 -5
  69. package/src/components/zd-menu/ZdMenuButton.ts +1 -1
  70. package/src/components/zd-menu/ZdMenuGroup.ts +2 -1
  71. package/src/components/zd-menu/ZdMenuLink.ts +1 -1
  72. package/src/components/zd-menu/ZdMenuSeparator.ts +1 -1
  73. package/src/components/zd-modal/ZdModal.ts +1 -21
  74. package/src/components/zd-modal/ZdModal.vue +18 -77
  75. package/src/components/zd-modal/ZdModalCard.ts +100 -0
  76. package/src/components/zd-modal/ZdModalCard.vue +47 -0
  77. package/src/components/zd-modal/ZdModalCloseButton.ts +1 -1
  78. package/src/components/zd-month/ZdMonth.ts +1 -1
  79. package/src/components/zd-number-input/ZdNumberInput.ts +1 -1
  80. package/src/components/zd-password/ZdPassword.ts +1 -1
  81. package/src/components/zd-progress/ZdProgress.ts +2 -1
  82. package/src/components/zd-radio/ZdRadio.ts +2 -1
  83. package/src/components/zd-row/ZdRow.ts +1 -1
  84. package/src/components/zd-select/ZdSelect.ts +28 -3
  85. package/src/components/zd-select/ZdSelect.vue +5 -8
  86. package/src/components/zd-select-multiple/ZdSelectMultiple.ts +27 -4
  87. package/src/components/zd-select-multiple/ZdSelectMultiple.vue +11 -2
  88. package/src/components/zd-svg-map/ZdSvgMap.ts +1 -1
  89. package/src/components/zd-switch/ZdSwitch.ts +1 -1
  90. package/src/components/zd-table/ZdTable.ts +1 -1
  91. package/src/components/zd-tabs/ZdTab.ts +1 -1
  92. package/src/components/zd-tabs/ZdTabItem.vue +3 -0
  93. package/src/components/zd-tabs/ZdTabs.ts +4 -3
  94. package/src/components/zd-tabs/ZdTabs.vue +14 -5
  95. package/src/components/zd-tag/ZdTag.ts +1 -1
  96. package/src/components/zd-text/ZdText.ts +1 -1
  97. package/src/components/zd-text-input/ZdTextInput.ts +7 -1
  98. package/src/components/zd-text-input/ZdTextInput.vue +3 -3
  99. package/src/components/zd-textarea/ZdTextarea.ts +5 -1
  100. package/src/components/zd-textarea/ZdTextarea.vue +6 -2
  101. package/src/components/zd-time/ZdTime.ts +1 -1
  102. package/src/components/zd-tooltip/ZdTooltip.ts +1 -1
  103. package/src/components/zd-tooltip/ZdTooltip.vue +2 -1
  104. package/src/components/zd-tooltip-overflow/ZdTooltipOverflow.vue +45 -0
  105. package/src/components/zd-tree/ZdTree.ts +5 -1
  106. package/src/components/zd-tree-grid/ZdTreeGrid.ts +2 -1
  107. package/src/composables/columnDrag.ts +9 -11
  108. package/src/composables/gridColumns.ts +11 -6
  109. package/src/composables/tableNavigation.ts +5 -1
  110. package/src/composables/useTooltipManager.ts +24 -0
  111. package/src/directives/index.ts +1 -0
  112. package/src/directives/v-tooltip-overflow.ts +97 -0
  113. package/src/index.ts +11 -0
  114. package/src/styles/_zd-input.scss +3 -2
  115. package/src/utils/fillHeight.ts +3 -2
  116. package/src/utils/index.ts +1 -0
  117. package/src/utils/plugins/getIconPlugin.ts +4 -3
  118. package/src/utils/tooltip-overflow/index.ts +2 -0
  119. package/src/utils/tooltip-overflow/install.ts +27 -0
  120. package/src/utils/tooltip-overflow/uninstall.ts +32 -0
  121. package/types/components/zd-alert/ZdAlert.d.ts +158 -80
  122. package/types/components/zd-badge/ZdBadge.d.ts +76 -52
  123. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +81 -54
  124. package/types/components/zd-button/ZdButton.d.ts +92 -68
  125. package/types/components/zd-button-group/ZdButtonGroup.d.ts +59 -44
  126. package/types/components/zd-card/ZdCard.d.ts +87 -63
  127. package/types/components/zd-carousel/ZdCarousel.d.ts +229 -225
  128. package/types/components/zd-checkbox/ZdCheckbox.d.ts +41 -14
  129. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +202 -169
  130. package/types/components/zd-chip/ZdChip.d.ts +87 -63
  131. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +96 -66
  132. package/types/components/zd-col/ZdCol.d.ts +76 -52
  133. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +195 -111
  134. package/types/components/zd-component/ZdComponent.d.ts +12 -5
  135. package/types/components/zd-component/ZdComponentRender.d.ts +12 -4
  136. package/types/components/zd-container/ZdContainer.d.ts +79 -55
  137. package/types/components/zd-currency/ZdCurrency.d.ts +192 -165
  138. package/types/components/zd-date-input/ZdDateInput.d.ts +62 -29
  139. package/types/components/zd-date-range/ZdDateRange.d.ts +206 -176
  140. package/types/components/zd-dialog/ZdDialog.d.ts +36 -12
  141. package/types/components/zd-divider/ZdDivider.d.ts +76 -52
  142. package/types/components/zd-dropdown/ZdDropdown.d.ts +90 -72
  143. package/types/components/zd-footer/ZdFooter.d.ts +204 -142
  144. package/types/components/zd-form/ZdForm.d.ts +12 -4
  145. package/types/components/zd-frame/ZdFrame.d.ts +13 -4
  146. package/types/components/zd-frame-page/ZdFramePage.d.ts +84 -57
  147. package/types/components/zd-grid/ZdGrid.d.ts +2646 -2673
  148. package/types/components/zd-grid/cell/ZdGridAction.d.ts +2 -2
  149. package/types/components/zd-grid/cell/ZdGridCell.d.ts +4 -4
  150. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +4 -4
  151. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +2 -2
  152. package/types/components/zd-grid/composables/grid-instance.d.ts +983 -294
  153. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +983 -294
  154. package/types/components/zd-grid/row/ZdGridRow.d.ts +6 -6
  155. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +983 -294
  156. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +3684 -4887
  157. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +71 -71
  158. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +6 -6
  159. package/types/components/zd-header/ZdHeader.d.ts +230 -172
  160. package/types/components/zd-icon/ZdIcon.d.ts +39 -15
  161. package/types/components/zd-image/ZdImage.d.ts +73 -52
  162. package/types/components/zd-increment/ZdIncrement.d.ts +192 -165
  163. package/types/components/zd-input/ZdInput.d.ts +15 -6
  164. package/types/components/zd-iterable/ZdIterable.d.ts +26 -12
  165. package/types/components/zd-iterable/ZdIterableNoData.d.ts +983 -294
  166. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +422 -139
  167. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +410 -121
  168. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +938 -266
  169. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +422 -130
  170. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +50 -23
  171. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +437 -293
  172. package/types/components/zd-layout/ZdLayout.d.ts +75 -54
  173. package/types/components/zd-list/ZdList.d.ts +336 -97
  174. package/types/components/zd-list/ZdListGroup.d.ts +361 -122
  175. package/types/components/zd-list/ZdListItem.d.ts +200 -70
  176. package/types/components/zd-loading/ZdLoading.d.ts +35 -14
  177. package/types/components/zd-login/ZdLogin.d.ts +119 -89
  178. package/types/components/zd-login/ZdLoginButton.d.ts +170 -146
  179. package/types/components/zd-main/ZdMain.d.ts +73 -52
  180. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +94 -70
  181. package/types/components/zd-menu/ZdMenu.d.ts +578 -535
  182. package/types/components/zd-menu/ZdMenuButton.d.ts +85 -61
  183. package/types/components/zd-menu/ZdMenuGroup.d.ts +811 -778
  184. package/types/components/zd-menu/ZdMenuLink.d.ts +1327 -1303
  185. package/types/components/zd-menu/ZdMenuSeparator.d.ts +76 -52
  186. package/types/components/zd-modal/ZdModal.d.ts +0 -2
  187. package/types/components/zd-modal/ZdModalCard.d.ts +125 -0
  188. package/types/components/zd-modal/ZdModalCloseButton.d.ts +85 -61
  189. package/types/components/zd-month/ZdMonth.d.ts +204 -176
  190. package/types/components/zd-number-input/ZdNumberInput.d.ts +192 -165
  191. package/types/components/zd-password/ZdPassword.d.ts +192 -165
  192. package/types/components/zd-progress/ZdProgress.d.ts +111 -84
  193. package/types/components/zd-radio/ZdRadio.d.ts +44 -14
  194. package/types/components/zd-row/ZdRow.d.ts +76 -52
  195. package/types/components/zd-select/ZdSelect.d.ts +17 -5
  196. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +17 -5
  197. package/types/components/zd-svg-map/ZdSvgMap.d.ts +37 -13
  198. package/types/components/zd-switch/ZdSwitch.d.ts +191 -164
  199. package/types/components/zd-table/ZdTable.d.ts +319 -118
  200. package/types/components/zd-tabs/ZdTab.d.ts +121 -44
  201. package/types/components/zd-tabs/ZdTabItem.d.ts +36 -12
  202. package/types/components/zd-tabs/ZdTabs.d.ts +268 -82
  203. package/types/components/zd-tag/ZdTag.d.ts +76 -52
  204. package/types/components/zd-text/ZdText.d.ts +96 -66
  205. package/types/components/zd-text-input/ZdTextInput.d.ts +41 -14
  206. package/types/components/zd-textarea/ZdTextarea.d.ts +55 -15
  207. package/types/components/zd-time/ZdTime.d.ts +201 -174
  208. package/types/components/zd-toggleable/ZdToggleable.d.ts +13 -4
  209. package/types/components/zd-tooltip/ZdTooltip.d.ts +82 -58
  210. package/types/components/zd-tree/ZdTree.d.ts +208 -172
  211. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +3 -3
  212. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +5 -5
  213. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +1215 -1199
  214. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +4 -4
  215. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +6 -6
  216. package/types/composables/cellSelection.d.ts +2 -264
  217. package/types/composables/gridColumns.d.ts +88 -35
  218. package/types/composables/gridSorting.d.ts +1 -1
  219. package/types/composables/tableNavigation.d.ts +3 -2
  220. package/types/composables/useTooltipManager.d.ts +13 -0
  221. package/types/directives/index.d.ts +1 -0
  222. package/types/directives/v-tooltip-overflow.d.ts +12 -0
  223. package/types/index.d.ts +1 -0
  224. package/types/utils/fillHeight.d.ts +1 -1
  225. package/types/utils/index.d.ts +1 -0
  226. package/types/utils/tooltip-overflow/index.d.ts +2 -0
  227. package/types/utils/tooltip-overflow/install.d.ts +13 -0
  228. package/types/utils/tooltip-overflow/uninstall.d.ts +14 -0
  229. package/src/components/tooltip-overflow/ZdTooltipOverflow.ts +0 -63
  230. package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +0 -63
  231. package/types/components/tek-grid/TekGrid.d.ts +0 -7258
  232. package/types/components/tek-grid/TekGrid.ts.d.ts +0 -7258
  233. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +0 -129
  234. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +0 -129
  235. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +0 -225
  236. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +0 -225
  237. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +0 -2432
  238. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +0 -2432
  239. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +0 -65
  240. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +0 -9
  241. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +0 -2920
  242. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +0 -2920
  243. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +0 -32
  244. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +0 -32
  245. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +0 -1892
  246. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +0 -1892
  247. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +0 -90
  248. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +0 -90
  249. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +0 -87
  250. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +0 -87
  251. package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +0 -50
  252. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +0 -25
  253. package/types/components/zd-alert/ZdAlert.ts.d.ts +0 -884
  254. package/types/components/zd-badge/ZdBadge.ts.d.ts +0 -624
  255. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +0 -697
  256. package/types/components/zd-button/ZdButton.ts.d.ts +0 -1158
  257. package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +0 -785
  258. package/types/components/zd-card/ZdCard.ts.d.ts +0 -1028
  259. package/types/components/zd-carousel/ZdCarousel.ts.d.ts +0 -2007
  260. package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +0 -642
  261. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +0 -2010
  262. package/types/components/zd-chip/ZdChip.ts.d.ts +0 -1256
  263. package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +0 -791
  264. package/types/components/zd-col/ZdCol.ts.d.ts +0 -741
  265. package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +0 -1583
  266. package/types/components/zd-container/ZdContainer.ts.d.ts +0 -722
  267. package/types/components/zd-currency/ZdCurrency.ts.d.ts +0 -2024
  268. package/types/components/zd-date-input/ZdDateInput.ts.d.ts +0 -960
  269. package/types/components/zd-dialog/ZdDialog.ts.d.ts +0 -262
  270. package/types/components/zd-divider/ZdDivider.ts.d.ts +0 -623
  271. package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +0 -836
  272. package/types/components/zd-footer/ZdFooter.ts.d.ts +0 -1262
  273. package/types/components/zd-form/ZdForm.ts.d.ts +0 -118
  274. package/types/components/zd-frame/ZdFrame.ts.d.ts +0 -138
  275. package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +0 -805
  276. package/types/components/zd-grid/ZdGrid.ts.d.ts +0 -7304
  277. package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +0 -14
  278. package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +0 -68
  279. package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +0 -58
  280. package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +0 -53
  281. package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +0 -112
  282. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +0 -46
  283. package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +0 -165
  284. package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +0 -47
  285. package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +0 -2087
  286. package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +0 -16
  287. package/types/components/zd-grid/row/TableRow.ts.d.ts +0 -34
  288. package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +0 -105
  289. package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +0 -2086
  290. package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +0 -8663
  291. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +0 -637
  292. package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +0 -126
  293. package/types/components/zd-header/ZdHeader.ts.d.ts +0 -1320
  294. package/types/components/zd-icon/ZdIcon.ts.d.ts +0 -383
  295. package/types/components/zd-image/ZdImage.ts.d.ts +0 -753
  296. package/types/components/zd-increment/ZdIncrement.ts.d.ts +0 -2069
  297. package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +0 -2089
  298. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +0 -1645
  299. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +0 -1081
  300. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +0 -2763
  301. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +0 -1627
  302. package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +0 -766
  303. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +0 -2484
  304. package/types/components/zd-layout/ZdLayout.ts.d.ts +0 -647
  305. package/types/components/zd-list/ZdList.ts.d.ts +0 -1140
  306. package/types/components/zd-list/ZdListGroup.ts.d.ts +0 -1332
  307. package/types/components/zd-list/ZdListItem.ts.d.ts +0 -848
  308. package/types/components/zd-loading/ZdLoading.ts.d.ts +0 -350
  309. package/types/components/zd-login/ZdLogin.ts.d.ts +0 -1072
  310. package/types/components/zd-login/ZdLoginButton.ts.d.ts +0 -1910
  311. package/types/components/zd-main/ZdMain.ts.d.ts +0 -619
  312. package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +0 -684
  313. package/types/components/zd-menu/ZdMenu.ts.d.ts +0 -4484
  314. package/types/components/zd-menu/ZdMenuButton.ts.d.ts +0 -1142
  315. package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +0 -6286
  316. package/types/components/zd-menu/ZdMenuLink.ts.d.ts +0 -10437
  317. package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +0 -600
  318. package/types/components/zd-modal/ZdModal.ts.d.ts +0 -10
  319. package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +0 -1137
  320. package/types/components/zd-month/ZdMonth.ts.d.ts +0 -2217
  321. package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +0 -2021
  322. package/types/components/zd-password/ZdPassword.ts.d.ts +0 -2014
  323. package/types/components/zd-progress/ZdProgress.ts.d.ts +0 -859
  324. package/types/components/zd-radio/ZdRadio.ts.d.ts +0 -682
  325. package/types/components/zd-row/ZdRow.ts.d.ts +0 -734
  326. package/types/components/zd-select/ZdSelect.ts.d.ts +0 -313
  327. package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +0 -333
  328. package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +0 -414
  329. package/types/components/zd-switch/ZdSwitch.ts.d.ts +0 -1918
  330. package/types/components/zd-table/ZdTable.ts.d.ts +0 -1092
  331. package/types/components/zd-tabs/ZdTab.ts.d.ts +0 -674
  332. package/types/components/zd-tabs/ZdTabItem.ts.d.ts +0 -268
  333. package/types/components/zd-tabs/ZdTabs.ts.d.ts +0 -929
  334. package/types/components/zd-tag/ZdTag.ts.d.ts +0 -613
  335. package/types/components/zd-text/ZdText.ts.d.ts +0 -670
  336. package/types/components/zd-text-input/ZdTextInput.ts.d.ts +0 -746
  337. package/types/components/zd-textarea/ZdTextarea.ts.d.ts +0 -877
  338. package/types/components/zd-time/ZdTime.ts.d.ts +0 -2224
  339. package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +0 -781
  340. package/types/components/zd-tree/ZdTree.ts.d.ts +0 -1878
  341. package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +0 -26
  342. package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +0 -74
  343. package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +0 -4178
  344. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +0 -92
  345. package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +0 -124
  346. package/types/composables/useTableLayout.d.ts +0 -25
  347. package/types/utils/isArrayOperation.d.ts +0 -2
@@ -38,6 +38,7 @@ export declare const ZdTreeGridProps: {
38
38
  footerSlot: {
39
39
  type: ArrayConstructor;
40
40
  default: () => never[];
41
+ watch: boolean;
41
42
  };
42
43
  cellSelection: {
43
44
  type: (BooleanConstructor | StringConstructor)[];
@@ -50,6 +51,7 @@ export declare const ZdTreeGridProps: {
50
51
  disableSelection: {
51
52
  type: (StringConstructor | FunctionConstructor)[];
52
53
  default: undefined;
54
+ watch: boolean;
53
55
  };
54
56
  dragColumns: {
55
57
  type: (BooleanConstructor | StringConstructor)[];
@@ -58,6 +60,7 @@ export declare const ZdTreeGridProps: {
58
60
  errorSlot: {
59
61
  type: ArrayConstructor;
60
62
  default: () => never[];
63
+ watch: boolean;
61
64
  };
62
65
  fillHeight: {
63
66
  type: (BooleanConstructor | StringConstructor)[];
@@ -102,6 +105,7 @@ export declare const ZdTreeGridProps: {
102
105
  cssClass: string;
103
106
  text: string;
104
107
  }[];
108
+ watch: boolean;
105
109
  };
106
110
  noDataText: {
107
111
  type: StringConstructor;
@@ -115,6 +119,7 @@ export declare const ZdTreeGridProps: {
115
119
  cssClass: string;
116
120
  text: string;
117
121
  }[];
122
+ watch: boolean;
118
123
  };
119
124
  noResultsText: {
120
125
  type: StringConstructor;
@@ -155,6 +160,7 @@ export declare const ZdTreeGridProps: {
155
160
  component: string;
156
161
  cssClass: string;
157
162
  }[];
163
+ watch: boolean;
158
164
  };
159
165
  width: {
160
166
  type: (NumberConstructor | StringConstructor)[];
@@ -173,17 +179,21 @@ export declare const ZdTreeGridProps: {
173
179
  isArray(arg: any): arg is any[];
174
180
  readonly prototype: any[];
175
181
  from<T>(arrayLike: ArrayLike<T>): T[];
176
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
177
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
178
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
179
- of<T_4>(...items: T_4[]): T_4[];
182
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
183
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
184
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
185
+ of<T>(...items: T[]): T[];
186
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
187
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
180
188
  readonly [Symbol.species]: ArrayConstructor;
181
189
  };
182
190
  default(): never[];
191
+ watch: boolean;
183
192
  };
184
193
  datasource: {
185
194
  type: ObjectConstructor;
186
195
  defaut(): {};
196
+ watch: boolean;
187
197
  };
188
198
  pageSizes: {
189
199
  type: (StringConstructor | {
@@ -194,10 +204,12 @@ export declare const ZdTreeGridProps: {
194
204
  isArray(arg: any): arg is any[];
195
205
  readonly prototype: any[];
196
206
  from<T>(arrayLike: ArrayLike<T>): T[];
197
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
198
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
199
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
200
- of<T_4>(...items: T_4[]): T_4[];
207
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
208
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
209
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
210
+ of<T>(...items: T[]): T[];
211
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
212
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
201
213
  readonly [Symbol.species]: ArrayConstructor;
202
214
  })[];
203
215
  default(): string[];
@@ -223,16 +235,20 @@ export declare const ZdTreeGridProps: {
223
235
  isArray(arg: any): arg is any[];
224
236
  readonly prototype: any[];
225
237
  from<T>(arrayLike: ArrayLike<T>): T[];
226
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
227
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
228
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
229
- of<T_4>(...items: T_4[]): T_4[];
238
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
239
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
240
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
241
+ of<T>(...items: T[]): T[];
242
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
243
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
230
244
  readonly [Symbol.species]: ArrayConstructor;
231
245
  })[];
232
246
  default(): never[];
247
+ watch: boolean;
233
248
  };
234
249
  component: {
235
250
  type: StringConstructor;
251
+ watch: boolean;
236
252
  };
237
253
  allowDuplicate: {
238
254
  type: (BooleanConstructor | StringConstructor)[];
@@ -257,10 +273,12 @@ export declare const ZdTreeGridProps: {
257
273
  directives: {
258
274
  type: ObjectConstructor;
259
275
  default(): {};
276
+ watch: boolean;
260
277
  };
261
278
  events: {
262
279
  type: ObjectConstructor;
263
280
  default(): {};
281
+ watch: boolean;
264
282
  };
265
283
  instanceObject: {
266
284
  type: ObjectConstructor;
@@ -272,6 +290,7 @@ export declare const ZdTreeGridProps: {
272
290
  keyMap: {
273
291
  type: ObjectConstructor;
274
292
  default(): {};
293
+ watch: boolean;
275
294
  };
276
295
  light: {
277
296
  type: (BooleanConstructor | StringConstructor)[];
@@ -283,6 +302,7 @@ export declare const ZdTreeGridProps: {
283
302
  };
284
303
  parent: {
285
304
  type: ObjectConstructor;
305
+ watch: boolean;
286
306
  };
287
307
  tabStop: {
288
308
  type: (BooleanConstructor | StringConstructor)[];
@@ -320,6 +340,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
320
340
  footerSlot: {
321
341
  type: ArrayConstructor;
322
342
  default: () => never[];
343
+ watch: boolean;
323
344
  };
324
345
  cellSelection: {
325
346
  type: (BooleanConstructor | StringConstructor)[];
@@ -332,6 +353,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
332
353
  disableSelection: {
333
354
  type: (StringConstructor | FunctionConstructor)[];
334
355
  default: undefined;
356
+ watch: boolean;
335
357
  };
336
358
  dragColumns: {
337
359
  type: (BooleanConstructor | StringConstructor)[];
@@ -340,6 +362,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
340
362
  errorSlot: {
341
363
  type: ArrayConstructor;
342
364
  default: () => never[];
365
+ watch: boolean;
343
366
  };
344
367
  fillHeight: {
345
368
  type: (BooleanConstructor | StringConstructor)[];
@@ -384,6 +407,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
384
407
  cssClass: string;
385
408
  text: string;
386
409
  }[];
410
+ watch: boolean;
387
411
  };
388
412
  noDataText: {
389
413
  type: StringConstructor;
@@ -397,6 +421,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
397
421
  cssClass: string;
398
422
  text: string;
399
423
  }[];
424
+ watch: boolean;
400
425
  };
401
426
  noResultsText: {
402
427
  type: StringConstructor;
@@ -437,6 +462,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
437
462
  component: string;
438
463
  cssClass: string;
439
464
  }[];
465
+ watch: boolean;
440
466
  };
441
467
  width: {
442
468
  type: (NumberConstructor | StringConstructor)[];
@@ -455,17 +481,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
455
481
  isArray(arg: any): arg is any[];
456
482
  readonly prototype: any[];
457
483
  from<T>(arrayLike: ArrayLike<T>): T[];
458
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
459
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
460
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
461
- of<T_4>(...items: T_4[]): T_4[];
484
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
485
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
486
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
487
+ of<T>(...items: T[]): T[];
488
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
489
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
462
490
  readonly [Symbol.species]: ArrayConstructor;
463
491
  };
464
492
  default(): never[];
493
+ watch: boolean;
465
494
  };
466
495
  datasource: {
467
496
  type: ObjectConstructor;
468
497
  defaut(): {};
498
+ watch: boolean;
469
499
  };
470
500
  pageSizes: {
471
501
  type: (StringConstructor | {
@@ -476,10 +506,12 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
476
506
  isArray(arg: any): arg is any[];
477
507
  readonly prototype: any[];
478
508
  from<T>(arrayLike: ArrayLike<T>): T[];
479
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
480
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
481
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
482
- of<T_4>(...items: T_4[]): T_4[];
509
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
510
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
511
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
512
+ of<T>(...items: T[]): T[];
513
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
514
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
483
515
  readonly [Symbol.species]: ArrayConstructor;
484
516
  })[];
485
517
  default(): string[];
@@ -505,16 +537,20 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
505
537
  isArray(arg: any): arg is any[];
506
538
  readonly prototype: any[];
507
539
  from<T>(arrayLike: ArrayLike<T>): T[];
508
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
509
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
510
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
511
- of<T_4>(...items: T_4[]): T_4[];
540
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
541
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
542
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
543
+ of<T>(...items: T[]): T[];
544
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
545
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
512
546
  readonly [Symbol.species]: ArrayConstructor;
513
547
  })[];
514
548
  default(): never[];
549
+ watch: boolean;
515
550
  };
516
551
  component: {
517
552
  type: StringConstructor;
553
+ watch: boolean;
518
554
  };
519
555
  allowDuplicate: {
520
556
  type: (BooleanConstructor | StringConstructor)[];
@@ -539,10 +575,12 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
539
575
  directives: {
540
576
  type: ObjectConstructor;
541
577
  default(): {};
578
+ watch: boolean;
542
579
  };
543
580
  events: {
544
581
  type: ObjectConstructor;
545
582
  default(): {};
583
+ watch: boolean;
546
584
  };
547
585
  instanceObject: {
548
586
  type: ObjectConstructor;
@@ -554,6 +592,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
554
592
  keyMap: {
555
593
  type: ObjectConstructor;
556
594
  default(): {};
595
+ watch: boolean;
557
596
  };
558
597
  light: {
559
598
  type: (BooleanConstructor | StringConstructor)[];
@@ -565,6 +604,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
565
604
  };
566
605
  parent: {
567
606
  type: ObjectConstructor;
607
+ watch: boolean;
568
608
  };
569
609
  tabStop: {
570
610
  type: (BooleanConstructor | StringConstructor)[];
@@ -591,13 +631,13 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
591
631
  getChildren: (row: IDictionary<any>) => IDictionary<any>[];
592
632
  buildTree: () => void;
593
633
  findDataIndex: (data: IDictionary<any>[], value: any) => number;
594
- getParentRow: (row: IDictionary<any>) => IDictionary<any>;
634
+ getParentRow: (row: IDictionary) => IDictionary;
595
635
  resetTree: () => void;
596
636
  navigateToggle: (collapse: boolean) => void;
597
- toggleExpand: (row: IDictionary<any>, rowIndex?: number | undefined) => Promise<IDictionary<any>[] | undefined>;
637
+ toggleExpand: (row: IDictionary<any>, rowIndex?: number) => Promise<IDictionary<any>[] | undefined>;
598
638
  isOpened: (row: IDictionary<any>) => boolean;
599
- clearRow: (row: IDictionary<any>) => IDictionary<any>;
600
- hasChildOnDemand: (row: IDictionary<any>) => boolean;
639
+ clearRow: (row: IDictionary) => IDictionary;
640
+ hasChildOnDemand: (row: IDictionary) => boolean;
601
641
  initialize: () => void;
602
642
  previousOpenedRow: (rowIdx: number) => number;
603
643
  nextOpenedRow: (rowIdx: number) => number;
@@ -605,17 +645,17 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
605
645
  currentColumn: {
606
646
  children: {
607
647
  [x: string]: any;
608
- conditions?: IDictionary<any> | undefined;
648
+ conditions?: IDictionary | undefined;
609
649
  allowDuplicate?: boolean | undefined;
610
650
  autofocus?: boolean | undefined;
611
651
  children?: {
612
652
  [x: string]: any;
613
653
  allowDuplicate?: boolean | undefined;
614
654
  autofocus?: boolean | undefined;
615
- children?: any[] | undefined;
655
+ children?: /*elided*/ any[] | undefined;
616
656
  componentId?: number | undefined;
617
657
  cssClass?: string | undefined;
618
- cssStyle?: string | IDictionary<any> | undefined;
658
+ cssStyle?: (string | IDictionary) | undefined;
619
659
  events?: {
620
660
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
621
661
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -651,21 +691,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
651
691
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
692
  } | undefined;
653
693
  } | undefined;
654
- isVisible?: string | boolean | undefined;
694
+ isVisible?: boolean | string | undefined;
655
695
  dark?: boolean | undefined;
656
696
  light?: boolean | undefined;
657
697
  theme?: string | undefined;
658
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
698
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
659
699
  name: string;
660
700
  parent?: {
661
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
662
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
701
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
702
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
663
703
  allowDuplicate: boolean;
664
704
  autofocus: boolean;
665
- children: any[];
705
+ children: /*elided*/ any[];
666
706
  componentId: number;
667
707
  cssClass: string;
668
- cssStyle: string | IDictionary<any>;
708
+ cssStyle: string | IDictionary;
669
709
  events: {
670
710
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
671
711
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -701,24 +741,24 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
701
741
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
742
  } | undefined;
703
743
  };
704
- isVisible: string | boolean;
744
+ isVisible: boolean | string;
705
745
  dark: boolean;
706
746
  light: boolean;
707
747
  theme?: string | undefined;
708
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
748
+ keyMap: import("@zeedhi/core").IKeyMap;
709
749
  name: string;
710
- parent?: any | undefined;
750
+ parent?: /*elided*/ any | undefined;
711
751
  tabStop: boolean;
712
- userProperties: IDictionary<any>;
752
+ userProperties: IDictionary;
713
753
  fillHeight: boolean;
714
754
  } | undefined;
715
755
  tabStop?: boolean | undefined;
716
- userProperties?: IDictionary<any> | undefined;
756
+ userProperties?: IDictionary | undefined;
717
757
  fillHeight?: boolean | undefined;
718
758
  }[] | undefined;
719
759
  componentId?: number | undefined;
720
760
  cssClass?: string | undefined;
721
- cssStyle?: string | IDictionary<any> | undefined;
761
+ cssStyle?: (string | IDictionary) | undefined;
722
762
  events?: {
723
763
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
724
764
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -754,21 +794,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
754
794
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
795
  } | undefined;
756
796
  } | undefined;
757
- isVisible?: string | boolean | undefined;
797
+ isVisible?: boolean | string | undefined;
758
798
  dark?: boolean | undefined;
759
799
  light?: boolean | undefined;
760
800
  theme?: string | undefined;
761
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
801
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
762
802
  name: string;
763
803
  parent?: {
764
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
765
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
804
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
805
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
766
806
  allowDuplicate: boolean;
767
807
  autofocus: boolean;
768
- children: any[];
808
+ children: {
809
+ [x: string]: any;
810
+ allowDuplicate?: boolean | undefined;
811
+ autofocus?: boolean | undefined;
812
+ children?: /*elided*/ any[] | undefined;
813
+ componentId?: number | undefined;
814
+ cssClass?: string | undefined;
815
+ cssStyle?: (string | IDictionary) | undefined;
816
+ events?: {
817
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
818
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
+ } | undefined;
827
+ directives?: {
828
+ [x: string]: {
829
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
830
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
834
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
835
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
836
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
837
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
838
+ } | undefined;
839
+ touch?: {
840
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | 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
+ } | undefined;
850
+ } | undefined;
851
+ isVisible?: boolean | string | undefined;
852
+ dark?: boolean | undefined;
853
+ light?: boolean | undefined;
854
+ theme?: string | undefined;
855
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
856
+ name: string;
857
+ parent?: /*elided*/ any | undefined;
858
+ tabStop?: boolean | undefined;
859
+ userProperties?: IDictionary | undefined;
860
+ fillHeight?: boolean | undefined;
861
+ }[];
769
862
  componentId: number;
770
863
  cssClass: string;
771
- cssStyle: string | IDictionary<any>;
864
+ cssStyle: string | IDictionary;
772
865
  events: {
773
866
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
774
867
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -804,33 +897,33 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
804
897
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
805
898
  } | undefined;
806
899
  };
807
- isVisible: string | boolean;
900
+ isVisible: boolean | string;
808
901
  dark: boolean;
809
902
  light: boolean;
810
903
  theme?: string | undefined;
811
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
904
+ keyMap: import("@zeedhi/core").IKeyMap;
812
905
  name: string;
813
- parent?: any | undefined;
906
+ parent?: /*elided*/ any | undefined;
814
907
  tabStop: boolean;
815
- userProperties: IDictionary<any>;
908
+ userProperties: IDictionary;
816
909
  fillHeight: boolean;
817
910
  } | undefined;
818
911
  tabStop?: boolean | undefined;
819
- userProperties?: IDictionary<any> | undefined;
912
+ userProperties?: IDictionary | undefined;
820
913
  fillHeight?: boolean | undefined;
821
914
  }[];
822
915
  readonly childrenProps: {
823
916
  [x: string]: any;
824
- allowDuplicate?: boolean | undefined;
825
- autofocus?: boolean | undefined;
917
+ allowDuplicate?: boolean | undefined | undefined;
918
+ autofocus?: boolean | undefined | undefined;
826
919
  children?: {
827
920
  [x: string]: any;
828
921
  allowDuplicate?: boolean | undefined;
829
922
  autofocus?: boolean | undefined;
830
- children?: any[] | undefined;
923
+ children?: /*elided*/ any[] | undefined;
831
924
  componentId?: number | undefined;
832
925
  cssClass?: string | undefined;
833
- cssStyle?: string | IDictionary<any> | undefined;
926
+ cssStyle?: (string | IDictionary) | undefined;
834
927
  events?: {
835
928
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
836
929
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -866,21 +959,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
866
959
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
867
960
  } | undefined;
868
961
  } | undefined;
869
- isVisible?: string | boolean | undefined;
962
+ isVisible?: boolean | string | undefined;
870
963
  dark?: boolean | undefined;
871
964
  light?: boolean | undefined;
872
965
  theme?: string | undefined;
873
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
966
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
874
967
  name: string;
875
968
  parent?: {
876
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
877
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
969
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
970
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
878
971
  allowDuplicate: boolean;
879
972
  autofocus: boolean;
880
- children: any[];
973
+ children: /*elided*/ any[];
881
974
  componentId: number;
882
975
  cssClass: string;
883
- cssStyle: string | IDictionary<any>;
976
+ cssStyle: string | IDictionary;
884
977
  events: {
885
978
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
886
979
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -916,23 +1009,23 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
916
1009
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
917
1010
  } | undefined;
918
1011
  };
919
- isVisible: string | boolean;
1012
+ isVisible: boolean | string;
920
1013
  dark: boolean;
921
1014
  light: boolean;
922
1015
  theme?: string | undefined;
923
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1016
+ keyMap: import("@zeedhi/core").IKeyMap;
924
1017
  name: string;
925
- parent?: any | undefined;
1018
+ parent?: /*elided*/ any | undefined;
926
1019
  tabStop: boolean;
927
- userProperties: IDictionary<any>;
1020
+ userProperties: IDictionary;
928
1021
  fillHeight: boolean;
929
1022
  } | undefined;
930
1023
  tabStop?: boolean | undefined;
931
- userProperties?: IDictionary<any> | undefined;
1024
+ userProperties?: IDictionary | undefined;
932
1025
  fillHeight?: boolean | undefined;
933
1026
  }[] | undefined;
934
- componentId?: number | undefined;
935
- cssClass?: string | undefined;
1027
+ componentId?: number | undefined | undefined;
1028
+ cssClass?: string | undefined | undefined;
936
1029
  cssStyle?: string | IDictionary<any> | undefined;
937
1030
  events?: {
938
1031
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
@@ -969,21 +1062,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
969
1062
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
970
1063
  } | undefined;
971
1064
  } | undefined;
972
- isVisible?: string | boolean | undefined;
973
- dark?: boolean | undefined;
974
- light?: boolean | undefined;
975
- theme?: string | undefined;
1065
+ isVisible?: string | boolean | undefined | undefined;
1066
+ dark?: boolean | undefined | undefined;
1067
+ light?: boolean | undefined | undefined;
1068
+ theme?: string | undefined | undefined;
976
1069
  keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
977
1070
  name: string;
978
1071
  parent?: {
979
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
980
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1072
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1073
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
981
1074
  allowDuplicate: boolean;
982
1075
  autofocus: boolean;
983
- children: any[];
1076
+ children: {
1077
+ [x: string]: any;
1078
+ allowDuplicate?: boolean | undefined;
1079
+ autofocus?: boolean | undefined;
1080
+ children?: /*elided*/ any[] | undefined;
1081
+ componentId?: number | undefined;
1082
+ cssClass?: string | undefined;
1083
+ cssStyle?: (string | IDictionary) | undefined;
1084
+ events?: {
1085
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1086
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1087
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1088
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
+ } | undefined;
1095
+ directives?: {
1096
+ [x: string]: {
1097
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1098
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1099
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1100
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
+ } | undefined;
1107
+ touch?: {
1108
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1109
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1110
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1111
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1113
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
+ } | undefined;
1118
+ } | undefined;
1119
+ isVisible?: boolean | string | undefined;
1120
+ dark?: boolean | undefined;
1121
+ light?: boolean | undefined;
1122
+ theme?: string | undefined;
1123
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1124
+ name: string;
1125
+ parent?: /*elided*/ any | undefined;
1126
+ tabStop?: boolean | undefined;
1127
+ userProperties?: IDictionary | undefined;
1128
+ fillHeight?: boolean | undefined;
1129
+ }[];
984
1130
  componentId: number;
985
1131
  cssClass: string;
986
- cssStyle: string | IDictionary<any>;
1132
+ cssStyle: string | IDictionary;
987
1133
  events: {
988
1134
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
989
1135
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1019,20 +1165,20 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1019
1165
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1020
1166
  } | undefined;
1021
1167
  };
1022
- isVisible: string | boolean;
1168
+ isVisible: boolean | string;
1023
1169
  dark: boolean;
1024
1170
  light: boolean;
1025
1171
  theme?: string | undefined;
1026
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1172
+ keyMap: import("@zeedhi/core").IKeyMap;
1027
1173
  name: string;
1028
- parent?: any | undefined;
1174
+ parent?: /*elided*/ any | undefined;
1029
1175
  tabStop: boolean;
1030
- userProperties: IDictionary<any>;
1176
+ userProperties: IDictionary;
1031
1177
  fillHeight: boolean;
1032
1178
  } | undefined;
1033
- tabStop?: boolean | undefined;
1179
+ tabStop?: boolean | undefined | undefined;
1034
1180
  userProperties?: IDictionary<any> | undefined;
1035
- fillHeight?: boolean | undefined;
1181
+ fillHeight?: boolean | undefined | undefined;
1036
1182
  }[];
1037
1183
  getColumnWithoutConditions: (component: any) => any;
1038
1184
  checkOutValues: (component: any, row: IDictionary<any>, newRow: IDictionary<any>) => void;
@@ -1042,25 +1188,25 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1042
1188
  maxWidth?: string | undefined;
1043
1189
  minWidth?: string | undefined;
1044
1190
  mask: string;
1045
- type?: "action" | undefined;
1191
+ type?: import("@zeedhi/common").ColumnType | undefined;
1046
1192
  actionFixed: boolean;
1047
1193
  fixed: boolean;
1048
1194
  sortable: boolean;
1049
1195
  loading: boolean;
1050
1196
  componentProps: any;
1051
- style: IDictionary<any>;
1197
+ style: IDictionary;
1052
1198
  xlsType: string;
1053
1199
  lookupData: any;
1054
1200
  lookupDataCount: number;
1055
1201
  overflow: string | number;
1056
- conditions: IDictionary<any>;
1202
+ conditions: IDictionary;
1057
1203
  helperText: string;
1058
1204
  storeData: boolean;
1059
1205
  setViewGetWidth: (viewGetWidth: () => number) => void;
1060
- setLookupDataFilter: (filter: IDictionary<any>) => void;
1206
+ setLookupDataFilter: (filter: IDictionary) => void;
1061
1207
  getWidth: () => number;
1062
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
1063
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
1208
+ formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary) => any;
1209
+ formatter: (value: any, cellProps?: IDictionary) => any;
1064
1210
  getLookupData: (lookupColumn: string, value: any) => any;
1065
1211
  initialize: () => void;
1066
1212
  clearLookupData: () => void;
@@ -1112,14 +1258,67 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1112
1258
  theme?: string | undefined;
1113
1259
  fillHeight: boolean;
1114
1260
  parent?: {
1115
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1116
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1261
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1262
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1117
1263
  allowDuplicate: boolean;
1118
1264
  autofocus: boolean;
1119
- children: any[];
1265
+ children: {
1266
+ [x: string]: any;
1267
+ allowDuplicate?: boolean | undefined;
1268
+ autofocus?: boolean | undefined;
1269
+ children?: /*elided*/ any[] | undefined;
1270
+ componentId?: number | undefined;
1271
+ cssClass?: string | undefined;
1272
+ cssStyle?: (string | IDictionary) | undefined;
1273
+ events?: {
1274
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1275
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1279
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1280
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1281
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1282
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1283
+ } | undefined;
1284
+ directives?: {
1285
+ [x: string]: {
1286
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1287
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1289
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1290
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1291
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1292
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1293
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1294
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1295
+ } | undefined;
1296
+ touch?: {
1297
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1298
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1302
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1303
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1304
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1305
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1306
+ } | undefined;
1307
+ } | undefined;
1308
+ isVisible?: boolean | string | undefined;
1309
+ dark?: boolean | undefined;
1310
+ light?: boolean | undefined;
1311
+ theme?: string | undefined;
1312
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1313
+ name: string;
1314
+ parent?: /*elided*/ any | undefined;
1315
+ tabStop?: boolean | undefined;
1316
+ userProperties?: IDictionary | undefined;
1317
+ fillHeight?: boolean | undefined;
1318
+ }[];
1120
1319
  componentId: number;
1121
1320
  cssClass: string;
1122
- cssStyle: string | IDictionary<any>;
1321
+ cssStyle: string | IDictionary;
1123
1322
  events: {
1124
1323
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1125
1324
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1155,19 +1354,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1155
1354
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
1355
  } | undefined;
1157
1356
  };
1158
- isVisible: string | boolean;
1357
+ isVisible: boolean | string;
1159
1358
  dark: boolean;
1160
1359
  light: boolean;
1161
1360
  theme?: string | undefined;
1162
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1361
+ keyMap: import("@zeedhi/core").IKeyMap;
1163
1362
  name: string;
1164
- parent?: any | undefined;
1363
+ parent?: /*elided*/ any | undefined;
1165
1364
  tabStop: boolean;
1166
- userProperties: IDictionary<any>;
1365
+ userProperties: IDictionary;
1167
1366
  fillHeight: boolean;
1168
1367
  } | undefined;
1169
1368
  componentId: number;
1170
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1369
+ keyMap: import("@zeedhi/core").IKeyMap;
1171
1370
  isFocused: boolean;
1172
1371
  tabStop: boolean;
1173
1372
  userProperties: IDictionary<any>;
@@ -1176,42 +1375,42 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1176
1375
  callEvent: (eventName: string, args: any) => boolean;
1177
1376
  addChild: (child: IComponent) => void;
1178
1377
  removeChild: (name: string) => void;
1179
- getChildInstance: <T_1>(name: string) => T_1;
1180
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
1378
+ getChildInstance: <T>(name: string) => T;
1379
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1181
1380
  onCreated: () => void;
1182
1381
  onBeforeMount: () => void;
1183
1382
  onMounted: (element: any) => void;
1184
1383
  onDestroyed: () => void;
1185
- click: (event?: Event | undefined, element?: any) => void;
1384
+ click: (event?: Event, element?: any) => void;
1186
1385
  focus: (event: Event, element: any) => void;
1187
1386
  blur: (event: Event, element: any) => void;
1188
- mouseenter: (event?: Event | undefined, element?: any) => void;
1189
- mouseleave: (event?: Event | undefined, element?: any) => void;
1190
- mouseout: (event?: Event | undefined, element?: any) => void;
1191
- mouseover: (event?: Event | undefined, element?: any) => void;
1387
+ mouseenter: (event?: Event, element?: any) => void;
1388
+ mouseleave: (event?: Event, element?: any) => void;
1389
+ mouseout: (event?: Event, element?: any) => void;
1390
+ mouseover: (event?: Event, element?: any) => void;
1192
1391
  } | null;
1193
1392
  selectedRows: IDictionary<any>[];
1194
1393
  selectionState: {
1195
1394
  allSelected: boolean;
1196
1395
  except: IDictionary<any>[];
1197
1396
  };
1198
- rowStyleConditions?: ((row: IDictionary<any>) => IDictionary<any>) | undefined;
1397
+ rowStyleConditions?: ((row: IDictionary) => IDictionary) | undefined;
1199
1398
  selectAllPages: boolean;
1200
1399
  selectable: boolean;
1201
1400
  disableSelection?: ((args: {
1202
1401
  row: IDictionary<any>;
1203
- component: import("@zeedhi/common").IGrid<GridColumn>;
1402
+ component: import("@zeedhi/common").IGrid;
1204
1403
  }) => boolean) | undefined;
1205
1404
  cellSelection: boolean;
1206
1405
  toolbarSlot: {
1207
1406
  [x: string]: any;
1208
- children?: any[] | undefined;
1407
+ children?: /*elided*/ any[] | undefined;
1209
1408
  component: string;
1210
1409
  allowDuplicate?: boolean | undefined;
1211
1410
  autofocus?: boolean | undefined;
1212
1411
  componentId?: number | undefined;
1213
1412
  cssClass?: string | undefined;
1214
- cssStyle?: string | IDictionary<any> | undefined;
1413
+ cssStyle?: (string | IDictionary) | undefined;
1215
1414
  events?: {
1216
1415
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1217
1416
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1247,21 +1446,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1247
1446
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
1447
  } | undefined;
1249
1448
  } | undefined;
1250
- isVisible?: string | boolean | undefined;
1449
+ isVisible?: boolean | string | undefined;
1251
1450
  dark?: boolean | undefined;
1252
1451
  light?: boolean | undefined;
1253
1452
  theme?: string | undefined;
1254
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1453
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1255
1454
  name: string;
1256
1455
  parent?: {
1257
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1258
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1456
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1457
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1259
1458
  allowDuplicate: boolean;
1260
1459
  autofocus: boolean;
1261
- children: any[];
1460
+ children: {
1461
+ [x: string]: any;
1462
+ allowDuplicate?: boolean | undefined;
1463
+ autofocus?: boolean | undefined;
1464
+ children?: /*elided*/ any[] | undefined;
1465
+ componentId?: number | undefined;
1466
+ cssClass?: string | undefined;
1467
+ cssStyle?: (string | IDictionary) | undefined;
1468
+ events?: {
1469
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1470
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1472
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1473
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1474
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1477
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1478
+ } | undefined;
1479
+ directives?: {
1480
+ [x: string]: {
1481
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1482
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1483
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1485
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1489
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1490
+ } | undefined;
1491
+ touch?: {
1492
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1493
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1494
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1495
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1496
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1497
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1498
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1499
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1500
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1501
+ } | undefined;
1502
+ } | undefined;
1503
+ isVisible?: boolean | string | undefined;
1504
+ dark?: boolean | undefined;
1505
+ light?: boolean | undefined;
1506
+ theme?: string | undefined;
1507
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1508
+ name: string;
1509
+ parent?: /*elided*/ any | undefined;
1510
+ tabStop?: boolean | undefined;
1511
+ userProperties?: IDictionary | undefined;
1512
+ fillHeight?: boolean | undefined;
1513
+ }[];
1262
1514
  componentId: number;
1263
1515
  cssClass: string;
1264
- cssStyle: string | IDictionary<any>;
1516
+ cssStyle: string | IDictionary;
1265
1517
  events: {
1266
1518
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1267
1519
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1297,30 +1549,30 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1297
1549
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
1550
  } | undefined;
1299
1551
  };
1300
- isVisible: string | boolean;
1552
+ isVisible: boolean | string;
1301
1553
  dark: boolean;
1302
1554
  light: boolean;
1303
1555
  theme?: string | undefined;
1304
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1556
+ keyMap: import("@zeedhi/core").IKeyMap;
1305
1557
  name: string;
1306
- parent?: any | undefined;
1558
+ parent?: /*elided*/ any | undefined;
1307
1559
  tabStop: boolean;
1308
- userProperties: IDictionary<any>;
1560
+ userProperties: IDictionary;
1309
1561
  fillHeight: boolean;
1310
1562
  } | undefined;
1311
1563
  tabStop?: boolean | undefined;
1312
- userProperties?: IDictionary<any> | undefined;
1564
+ userProperties?: IDictionary | undefined;
1313
1565
  fillHeight?: boolean | undefined;
1314
1566
  }[];
1315
1567
  footerSlot: {
1316
1568
  [x: string]: any;
1317
- children?: any[] | undefined;
1569
+ children?: /*elided*/ any[] | undefined;
1318
1570
  component: string;
1319
1571
  allowDuplicate?: boolean | undefined;
1320
1572
  autofocus?: boolean | undefined;
1321
1573
  componentId?: number | undefined;
1322
1574
  cssClass?: string | undefined;
1323
- cssStyle?: string | IDictionary<any> | undefined;
1575
+ cssStyle?: (string | IDictionary) | undefined;
1324
1576
  events?: {
1325
1577
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1326
1578
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1356,21 +1608,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1356
1608
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1357
1609
  } | undefined;
1358
1610
  } | undefined;
1359
- isVisible?: string | boolean | undefined;
1611
+ isVisible?: boolean | string | undefined;
1360
1612
  dark?: boolean | undefined;
1361
1613
  light?: boolean | undefined;
1362
1614
  theme?: string | undefined;
1363
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1615
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1364
1616
  name: string;
1365
1617
  parent?: {
1366
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1367
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1618
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1619
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1368
1620
  allowDuplicate: boolean;
1369
1621
  autofocus: boolean;
1370
- children: any[];
1622
+ children: {
1623
+ [x: string]: any;
1624
+ allowDuplicate?: boolean | undefined;
1625
+ autofocus?: boolean | undefined;
1626
+ children?: /*elided*/ any[] | undefined;
1627
+ componentId?: number | undefined;
1628
+ cssClass?: string | undefined;
1629
+ cssStyle?: (string | IDictionary) | undefined;
1630
+ events?: {
1631
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1632
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1633
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1634
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1635
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1636
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1637
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1638
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1639
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1640
+ } | undefined;
1641
+ directives?: {
1642
+ [x: string]: {
1643
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1644
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1645
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1646
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1647
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1648
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1649
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1650
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1651
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1652
+ } | undefined;
1653
+ touch?: {
1654
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1655
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1656
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1657
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1658
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1659
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1660
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1661
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1662
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1663
+ } | undefined;
1664
+ } | undefined;
1665
+ isVisible?: boolean | string | undefined;
1666
+ dark?: boolean | undefined;
1667
+ light?: boolean | undefined;
1668
+ theme?: string | undefined;
1669
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1670
+ name: string;
1671
+ parent?: /*elided*/ any | undefined;
1672
+ tabStop?: boolean | undefined;
1673
+ userProperties?: IDictionary | undefined;
1674
+ fillHeight?: boolean | undefined;
1675
+ }[];
1371
1676
  componentId: number;
1372
1677
  cssClass: string;
1373
- cssStyle: string | IDictionary<any>;
1678
+ cssStyle: string | IDictionary;
1374
1679
  events: {
1375
1680
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1376
1681
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1406,31 +1711,31 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1406
1711
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1407
1712
  } | undefined;
1408
1713
  };
1409
- isVisible: string | boolean;
1714
+ isVisible: boolean | string;
1410
1715
  dark: boolean;
1411
1716
  light: boolean;
1412
1717
  theme?: string | undefined;
1413
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1718
+ keyMap: import("@zeedhi/core").IKeyMap;
1414
1719
  name: string;
1415
- parent?: any | undefined;
1720
+ parent?: /*elided*/ any | undefined;
1416
1721
  tabStop: boolean;
1417
- userProperties: IDictionary<any>;
1722
+ userProperties: IDictionary;
1418
1723
  fillHeight: boolean;
1419
1724
  } | undefined;
1420
1725
  tabStop?: boolean | undefined;
1421
- userProperties?: IDictionary<any> | undefined;
1726
+ userProperties?: IDictionary | undefined;
1422
1727
  fillHeight?: boolean | undefined;
1423
1728
  }[];
1424
1729
  noResultsText: string;
1425
1730
  noResultSlot: {
1426
1731
  [x: string]: any;
1427
- children?: any[] | undefined;
1732
+ children?: /*elided*/ any[] | undefined;
1428
1733
  component: string;
1429
1734
  allowDuplicate?: boolean | undefined;
1430
1735
  autofocus?: boolean | undefined;
1431
1736
  componentId?: number | undefined;
1432
1737
  cssClass?: string | undefined;
1433
- cssStyle?: string | IDictionary<any> | undefined;
1738
+ cssStyle?: (string | IDictionary) | undefined;
1434
1739
  events?: {
1435
1740
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1436
1741
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1466,45 +1771,26 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1466
1771
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1467
1772
  } | undefined;
1468
1773
  } | undefined;
1469
- isVisible?: string | boolean | undefined;
1774
+ isVisible?: boolean | string | undefined;
1470
1775
  dark?: boolean | undefined;
1471
1776
  light?: boolean | undefined;
1472
1777
  theme?: string | undefined;
1473
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1778
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1474
1779
  name: string;
1475
1780
  parent?: {
1476
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1477
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1781
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1782
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1478
1783
  allowDuplicate: boolean;
1479
1784
  autofocus: boolean;
1480
- children: any[];
1481
- componentId: number;
1482
- cssClass: string;
1483
- cssStyle: string | IDictionary<any>;
1484
- events: {
1485
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1486
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1489
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1490
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1491
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1492
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1493
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1494
- };
1495
- directives: {
1496
- [x: string]: {
1497
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1498
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1499
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1500
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1501
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1502
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1503
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1504
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1505
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1506
- } | undefined;
1507
- touch?: {
1785
+ children: {
1786
+ [x: string]: any;
1787
+ allowDuplicate?: boolean | undefined;
1788
+ autofocus?: boolean | undefined;
1789
+ children?: /*elided*/ any[] | undefined;
1790
+ componentId?: number | undefined;
1791
+ cssClass?: string | undefined;
1792
+ cssStyle?: (string | IDictionary) | undefined;
1793
+ events?: {
1508
1794
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1509
1795
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1510
1796
  click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1515,31 +1801,103 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1515
1801
  onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1516
1802
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1517
1803
  } | undefined;
1518
- };
1519
- isVisible: string | boolean;
1520
- dark: boolean;
1521
- light: boolean;
1522
- theme?: string | undefined;
1523
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1804
+ directives?: {
1805
+ [x: string]: {
1806
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1807
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1808
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1809
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1810
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1811
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1812
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1813
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1814
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1815
+ } | undefined;
1816
+ touch?: {
1817
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1818
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1819
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1820
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1821
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1822
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1823
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1824
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1825
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1826
+ } | undefined;
1827
+ } | undefined;
1828
+ isVisible?: boolean | string | undefined;
1829
+ dark?: boolean | undefined;
1830
+ light?: boolean | undefined;
1831
+ theme?: string | undefined;
1832
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1833
+ name: string;
1834
+ parent?: /*elided*/ any | undefined;
1835
+ tabStop?: boolean | undefined;
1836
+ userProperties?: IDictionary | undefined;
1837
+ fillHeight?: boolean | undefined;
1838
+ }[];
1839
+ componentId: number;
1840
+ cssClass: string;
1841
+ cssStyle: string | IDictionary;
1842
+ events: {
1843
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1844
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1845
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1846
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1847
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1848
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1849
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1850
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1851
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1852
+ };
1853
+ directives: {
1854
+ [x: string]: {
1855
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1856
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1857
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1858
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1859
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1860
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1861
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1862
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1863
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1864
+ } | undefined;
1865
+ touch?: {
1866
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1867
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1868
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1869
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1870
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1871
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1872
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1873
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1874
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1875
+ } | undefined;
1876
+ };
1877
+ isVisible: boolean | string;
1878
+ dark: boolean;
1879
+ light: boolean;
1880
+ theme?: string | undefined;
1881
+ keyMap: import("@zeedhi/core").IKeyMap;
1524
1882
  name: string;
1525
- parent?: any | undefined;
1883
+ parent?: /*elided*/ any | undefined;
1526
1884
  tabStop: boolean;
1527
- userProperties: IDictionary<any>;
1885
+ userProperties: IDictionary;
1528
1886
  fillHeight: boolean;
1529
1887
  } | undefined;
1530
1888
  tabStop?: boolean | undefined;
1531
- userProperties?: IDictionary<any> | undefined;
1889
+ userProperties?: IDictionary | undefined;
1532
1890
  fillHeight?: boolean | undefined;
1533
1891
  }[];
1534
1892
  errorSlot: {
1535
1893
  [x: string]: any;
1536
- children?: any[] | undefined;
1894
+ children?: /*elided*/ any[] | undefined;
1537
1895
  component: string;
1538
1896
  allowDuplicate?: boolean | undefined;
1539
1897
  autofocus?: boolean | undefined;
1540
1898
  componentId?: number | undefined;
1541
1899
  cssClass?: string | undefined;
1542
- cssStyle?: string | IDictionary<any> | undefined;
1900
+ cssStyle?: (string | IDictionary) | undefined;
1543
1901
  events?: {
1544
1902
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1545
1903
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1575,21 +1933,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1575
1933
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1576
1934
  } | undefined;
1577
1935
  } | undefined;
1578
- isVisible?: string | boolean | undefined;
1936
+ isVisible?: boolean | string | undefined;
1579
1937
  dark?: boolean | undefined;
1580
1938
  light?: boolean | undefined;
1581
1939
  theme?: string | undefined;
1582
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1940
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1583
1941
  name: string;
1584
1942
  parent?: {
1585
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1586
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
1943
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1944
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1587
1945
  allowDuplicate: boolean;
1588
1946
  autofocus: boolean;
1589
- children: any[];
1947
+ children: {
1948
+ [x: string]: any;
1949
+ allowDuplicate?: boolean | undefined;
1950
+ autofocus?: boolean | undefined;
1951
+ children?: /*elided*/ any[] | undefined;
1952
+ componentId?: number | undefined;
1953
+ cssClass?: string | undefined;
1954
+ cssStyle?: (string | IDictionary) | undefined;
1955
+ events?: {
1956
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1957
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1958
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1959
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1960
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1961
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1962
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1963
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1964
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1965
+ } | undefined;
1966
+ directives?: {
1967
+ [x: string]: {
1968
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1969
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1970
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1971
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1972
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1973
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1974
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1975
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1976
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1977
+ } | undefined;
1978
+ touch?: {
1979
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1980
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1981
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1982
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1983
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1984
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1985
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1986
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1987
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1988
+ } | undefined;
1989
+ } | undefined;
1990
+ isVisible?: boolean | string | undefined;
1991
+ dark?: boolean | undefined;
1992
+ light?: boolean | undefined;
1993
+ theme?: string | undefined;
1994
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1995
+ name: string;
1996
+ parent?: /*elided*/ any | undefined;
1997
+ tabStop?: boolean | undefined;
1998
+ userProperties?: IDictionary | undefined;
1999
+ fillHeight?: boolean | undefined;
2000
+ }[];
1590
2001
  componentId: number;
1591
2002
  cssClass: string;
1592
- cssStyle: string | IDictionary<any>;
2003
+ cssStyle: string | IDictionary;
1593
2004
  events: {
1594
2005
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1595
2006
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1625,19 +2036,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1625
2036
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1626
2037
  } | undefined;
1627
2038
  };
1628
- isVisible: string | boolean;
2039
+ isVisible: boolean | string;
1629
2040
  dark: boolean;
1630
2041
  light: boolean;
1631
2042
  theme?: string | undefined;
1632
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2043
+ keyMap: import("@zeedhi/core").IKeyMap;
1633
2044
  name: string;
1634
- parent?: any | undefined;
2045
+ parent?: /*elided*/ any | undefined;
1635
2046
  tabStop: boolean;
1636
- userProperties: IDictionary<any>;
2047
+ userProperties: IDictionary;
1637
2048
  fillHeight: boolean;
1638
2049
  } | undefined;
1639
2050
  tabStop?: boolean | undefined;
1640
- userProperties?: IDictionary<any> | undefined;
2051
+ userProperties?: IDictionary | undefined;
1641
2052
  fillHeight?: boolean | undefined;
1642
2053
  }[];
1643
2054
  dense: boolean;
@@ -1653,13 +2064,13 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1653
2064
  noDataText: string;
1654
2065
  noDataSlot: {
1655
2066
  [x: string]: any;
1656
- children?: any[] | undefined;
2067
+ children?: /*elided*/ any[] | undefined;
1657
2068
  component: string;
1658
2069
  allowDuplicate?: boolean | undefined;
1659
2070
  autofocus?: boolean | undefined;
1660
2071
  componentId?: number | undefined;
1661
2072
  cssClass?: string | undefined;
1662
- cssStyle?: string | IDictionary<any> | undefined;
2073
+ cssStyle?: (string | IDictionary) | undefined;
1663
2074
  events?: {
1664
2075
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1665
2076
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1695,21 +2106,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1695
2106
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1696
2107
  } | undefined;
1697
2108
  } | undefined;
1698
- isVisible?: string | boolean | undefined;
2109
+ isVisible?: boolean | string | undefined;
1699
2110
  dark?: boolean | undefined;
1700
2111
  light?: boolean | undefined;
1701
2112
  theme?: string | undefined;
1702
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
2113
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1703
2114
  name: string;
1704
2115
  parent?: {
1705
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1706
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2116
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2117
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1707
2118
  allowDuplicate: boolean;
1708
2119
  autofocus: boolean;
1709
- children: any[];
2120
+ children: {
2121
+ [x: string]: any;
2122
+ allowDuplicate?: boolean | undefined;
2123
+ autofocus?: boolean | undefined;
2124
+ children?: /*elided*/ any[] | undefined;
2125
+ componentId?: number | undefined;
2126
+ cssClass?: string | undefined;
2127
+ cssStyle?: (string | IDictionary) | undefined;
2128
+ events?: {
2129
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2130
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2131
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2132
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2133
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2134
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2135
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2136
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2137
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2138
+ } | undefined;
2139
+ directives?: {
2140
+ [x: string]: {
2141
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2142
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2143
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2144
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2145
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2146
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2147
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2148
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2149
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2150
+ } | undefined;
2151
+ touch?: {
2152
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2153
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2154
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2155
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2156
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2157
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2158
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2159
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2160
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2161
+ } | undefined;
2162
+ } | undefined;
2163
+ isVisible?: boolean | string | undefined;
2164
+ dark?: boolean | undefined;
2165
+ light?: boolean | undefined;
2166
+ theme?: string | undefined;
2167
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2168
+ name: string;
2169
+ parent?: /*elided*/ any | undefined;
2170
+ tabStop?: boolean | undefined;
2171
+ userProperties?: IDictionary | undefined;
2172
+ fillHeight?: boolean | undefined;
2173
+ }[];
1710
2174
  componentId: number;
1711
2175
  cssClass: string;
1712
- cssStyle: string | IDictionary<any>;
2176
+ cssStyle: string | IDictionary;
1713
2177
  events: {
1714
2178
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1715
2179
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1745,19 +2209,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1745
2209
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1746
2210
  } | undefined;
1747
2211
  };
1748
- isVisible: string | boolean;
2212
+ isVisible: boolean | string;
1749
2213
  dark: boolean;
1750
2214
  light: boolean;
1751
2215
  theme?: string | undefined;
1752
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2216
+ keyMap: import("@zeedhi/core").IKeyMap;
1753
2217
  name: string;
1754
- parent?: any | undefined;
2218
+ parent?: /*elided*/ any | undefined;
1755
2219
  tabStop: boolean;
1756
- userProperties: IDictionary<any>;
2220
+ userProperties: IDictionary;
1757
2221
  fillHeight: boolean;
1758
2222
  } | undefined;
1759
2223
  tabStop?: boolean | undefined;
1760
- userProperties?: IDictionary<any> | undefined;
2224
+ userProperties?: IDictionary | undefined;
1761
2225
  fillHeight?: boolean | undefined;
1762
2226
  }[];
1763
2227
  resizeColumns: boolean;
@@ -1776,51 +2240,51 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1776
2240
  onCreated: () => void;
1777
2241
  onMounted: (element: HTMLElement) => void;
1778
2242
  onBeforeDestroy: () => void;
1779
- toggleExpand: (row: IDictionary<any>, rowIndex?: number | undefined) => Promise<IDictionary<any>[] | undefined>;
2243
+ toggleExpand: (row: IDictionary<any>, rowIndex?: number) => Promise<IDictionary<any>[] | undefined>;
1780
2244
  navigateToggle: (collapse: boolean) => void;
1781
- getChildren: (row: IDictionary<any>) => IDictionary<any>[];
2245
+ getChildren: (row: IDictionary) => IDictionary[];
1782
2246
  findDataIndex: (data: IDictionary<any>[], value: any) => number;
1783
- getParentRow: (row: IDictionary<any>) => IDictionary<any>;
2247
+ getParentRow: (row: IDictionary) => IDictionary;
1784
2248
  buildTreeStructure: () => void;
1785
2249
  resetTree: () => void;
1786
2250
  filterRootData: () => Promise<any>;
1787
2251
  getConditionalProps: ({ row, column }: {
1788
- row: IDictionary<any>;
2252
+ row: IDictionary;
1789
2253
  column: GridColumn;
1790
2254
  }) => Partial<IComponentRender>;
1791
2255
  navigatePageUp: () => void;
1792
2256
  navigatePageDown: () => void;
1793
- setViewNavigate: (viewNavigate: (direction: import("@zeedhi/common").Direction, event?: Event | undefined) => void) => void;
2257
+ setViewNavigate: (viewNavigate: (direction: import("@zeedhi/common").Direction, event?: Event) => void) => void;
1794
2258
  navigateLeft: (params: import("@zeedhi/core").IEventParam<any>) => void;
1795
2259
  navigateRight: (params: import("@zeedhi/core").IEventParam<any>) => void;
1796
2260
  navigateUp: () => void;
1797
2261
  navigateDown: () => void;
1798
2262
  navigateDatasource: (direction: import("@zeedhi/common").VerticalDirection) => void;
1799
2263
  createColumn: (column: import("@zeedhi/common").IGridColumn) => GridColumn;
1800
- rowClick: (row: IDictionary<any>, event: Event, element?: HTMLElement | undefined) => void;
1801
- cellClick: (row: IDictionary<any>, column: GridColumn, event: Event, element?: HTMLElement | undefined) => void;
1802
- selectClick: (row: IDictionary<any>, isSelected: boolean, event: Event, element?: HTMLElement | undefined) => void;
1803
- selectAllClick: (isSelected: boolean, event: Event, element?: HTMLElement | undefined) => void;
2264
+ rowClick: (row: IDictionary<any>, event: Event, element?: HTMLElement) => void;
2265
+ cellClick: (row: IDictionary<any>, column: GridColumn, event: Event, element?: HTMLElement) => void;
2266
+ selectClick: (row: IDictionary<any>, isSelected: boolean, event: Event, element?: HTMLElement) => void;
2267
+ selectAllClick: (isSelected: boolean, event: Event, element?: HTMLElement) => void;
1804
2268
  selectAll: (isSelected: boolean) => void;
1805
- toggleRow: (row: IDictionary<any>) => void;
1806
- selectRow: (row: IDictionary<any>, select: boolean) => void;
1807
- callDisableSelection: (row: IDictionary<any>) => boolean;
2269
+ toggleRow: (row: IDictionary) => void;
2270
+ selectRow: (row: IDictionary, select: boolean) => void;
2271
+ callDisableSelection: (row: IDictionary) => boolean;
1808
2272
  changeOrder: (sortBy: {
1809
2273
  key: string;
1810
- order: "desc" | "asc";
2274
+ order: "asc" | "desc";
1811
2275
  }[]) => Promise<void>;
1812
- selectCell: (row: IDictionary<any>, column: GridColumn) => void;
1813
- reapplyRowStyleConditions: (row: IDictionary<any>) => IDictionary<any>;
1814
- getRowStyleConditions: (row: IDictionary<any>) => IDictionary<any>;
2276
+ selectCell: (row: IDictionary, column: GridColumn) => void;
2277
+ reapplyRowStyleConditions: (row: IDictionary) => IDictionary;
2278
+ getRowStyleConditions: (row: IDictionary) => IDictionary;
1815
2279
  deleteRows: () => Promise<any[]>;
1816
- getActionComponent: (actionComponent: IComponent, column: GridColumn, row: IDictionary<any>, parentPath?: string | undefined) => IComponent;
1817
- changeData: (data?: IDictionary<any>[] | undefined) => void;
2280
+ getActionComponent: (actionComponent: IComponent, column: GridColumn, row: IDictionary, parentPath?: string) => IComponent;
2281
+ changeData: (data?: IDictionary<any>[]) => void;
1818
2282
  selectChildren: (row: IDictionary<any>) => void;
1819
2283
  unselectChildren: (row: IDictionary<any>) => void;
1820
- buildTree: (doGet?: boolean | undefined) => void;
2284
+ buildTree: (doGet?: boolean) => void;
1821
2285
  setViewUpdateScrollData: (fn: () => void) => void;
1822
2286
  updateScrollData: () => void;
1823
- updateData: (data: IDictionary<any>[]) => Promise<any>;
2287
+ updateData: (data: IDictionary[]) => Promise<any>;
1824
2288
  datasource: {
1825
2289
  data: IDictionary<any>[];
1826
2290
  defaultLimit: number;
@@ -1841,7 +2305,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1841
2305
  onChangeCurrentRow?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
1842
2306
  onChangePagination?: import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined;
1843
2307
  };
1844
- initialize: () => void | Promise<void>;
2308
+ initialize: () => Promise<void> | void;
1845
2309
  destroy: () => void;
1846
2310
  currentRow: IDictionary<any>;
1847
2311
  limit: number;
@@ -1850,16 +2314,16 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1850
2314
  get: () => Promise<any>;
1851
2315
  post: (row: IDictionary<any>) => Promise<any>;
1852
2316
  put: (row: IDictionary<any>) => Promise<any>;
1853
- delete: (row?: IDictionary<any> | undefined) => Promise<any>;
2317
+ delete: (row?: IDictionary<any>) => Promise<any>;
1854
2318
  updateData: (data: IDictionary<any>[]) => Promise<any>;
1855
- getLoadedData: () => IDictionary<any>[];
2319
+ getLoadedData: () => IDictionary[];
1856
2320
  setSearch: (search: string) => Promise<any>;
1857
2321
  addFilter: (column: string, value: any) => Promise<any>;
1858
2322
  removeFilter: (column: string) => Promise<any>;
1859
2323
  setFilter: (filter: IDictionary<any>) => Promise<any>;
1860
2324
  clearFilter: () => Promise<any>;
1861
- setLimit: (limit: number, replaceUrl?: boolean | undefined) => Promise<any>;
1862
- setPage: (page: number, replaceUrl?: boolean | undefined) => Promise<any>;
2325
+ setLimit: (limit: number, replaceUrl?: boolean) => Promise<any>;
2326
+ setPage: (page: number, replaceUrl?: boolean) => Promise<any>;
1863
2327
  addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
1864
2328
  removeOrder: (column: string) => Promise<any>;
1865
2329
  setOrder: (order: string[]) => Promise<any>;
@@ -1875,17 +2339,17 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1875
2339
  columns: {
1876
2340
  children: {
1877
2341
  [x: string]: any;
1878
- conditions?: IDictionary<any> | undefined;
2342
+ conditions?: IDictionary | undefined;
1879
2343
  allowDuplicate?: boolean | undefined;
1880
2344
  autofocus?: boolean | undefined;
1881
2345
  children?: {
1882
2346
  [x: string]: any;
1883
2347
  allowDuplicate?: boolean | undefined;
1884
2348
  autofocus?: boolean | undefined;
1885
- children?: any[] | undefined;
2349
+ children?: /*elided*/ any[] | undefined;
1886
2350
  componentId?: number | undefined;
1887
2351
  cssClass?: string | undefined;
1888
- cssStyle?: string | IDictionary<any> | undefined;
2352
+ cssStyle?: (string | IDictionary) | undefined;
1889
2353
  events?: {
1890
2354
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1891
2355
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1921,21 +2385,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1921
2385
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1922
2386
  } | undefined;
1923
2387
  } | undefined;
1924
- isVisible?: string | boolean | undefined;
2388
+ isVisible?: boolean | string | undefined;
1925
2389
  dark?: boolean | undefined;
1926
2390
  light?: boolean | undefined;
1927
2391
  theme?: string | undefined;
1928
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
2392
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1929
2393
  name: string;
1930
2394
  parent?: {
1931
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
1932
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2395
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2396
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1933
2397
  allowDuplicate: boolean;
1934
2398
  autofocus: boolean;
1935
- children: any[];
2399
+ children: /*elided*/ any[];
1936
2400
  componentId: number;
1937
2401
  cssClass: string;
1938
- cssStyle: string | IDictionary<any>;
2402
+ cssStyle: string | IDictionary;
1939
2403
  events: {
1940
2404
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1941
2405
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1971,24 +2435,24 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
1971
2435
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1972
2436
  } | undefined;
1973
2437
  };
1974
- isVisible: string | boolean;
2438
+ isVisible: boolean | string;
1975
2439
  dark: boolean;
1976
2440
  light: boolean;
1977
2441
  theme?: string | undefined;
1978
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2442
+ keyMap: import("@zeedhi/core").IKeyMap;
1979
2443
  name: string;
1980
- parent?: any | undefined;
2444
+ parent?: /*elided*/ any | undefined;
1981
2445
  tabStop: boolean;
1982
- userProperties: IDictionary<any>;
2446
+ userProperties: IDictionary;
1983
2447
  fillHeight: boolean;
1984
2448
  } | undefined;
1985
2449
  tabStop?: boolean | undefined;
1986
- userProperties?: IDictionary<any> | undefined;
2450
+ userProperties?: IDictionary | undefined;
1987
2451
  fillHeight?: boolean | undefined;
1988
2452
  }[] | undefined;
1989
2453
  componentId?: number | undefined;
1990
2454
  cssClass?: string | undefined;
1991
- cssStyle?: string | IDictionary<any> | undefined;
2455
+ cssStyle?: (string | IDictionary) | undefined;
1992
2456
  events?: {
1993
2457
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1994
2458
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2024,21 +2488,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2024
2488
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2025
2489
  } | undefined;
2026
2490
  } | undefined;
2027
- isVisible?: string | boolean | undefined;
2491
+ isVisible?: boolean | string | undefined;
2028
2492
  dark?: boolean | undefined;
2029
2493
  light?: boolean | undefined;
2030
2494
  theme?: string | undefined;
2031
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
2495
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2032
2496
  name: string;
2033
2497
  parent?: {
2034
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2035
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2498
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2499
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2036
2500
  allowDuplicate: boolean;
2037
2501
  autofocus: boolean;
2038
- children: any[];
2502
+ children: {
2503
+ [x: string]: any;
2504
+ allowDuplicate?: boolean | undefined;
2505
+ autofocus?: boolean | undefined;
2506
+ children?: /*elided*/ any[] | undefined;
2507
+ componentId?: number | undefined;
2508
+ cssClass?: string | undefined;
2509
+ cssStyle?: (string | IDictionary) | undefined;
2510
+ events?: {
2511
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2512
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2513
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2514
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2515
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2516
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2517
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2518
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2519
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2520
+ } | undefined;
2521
+ directives?: {
2522
+ [x: string]: {
2523
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2524
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2525
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2526
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2527
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2528
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2529
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2530
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2531
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2532
+ } | undefined;
2533
+ touch?: {
2534
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2535
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2536
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2537
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2538
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2539
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2540
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2541
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2542
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2543
+ } | undefined;
2544
+ } | undefined;
2545
+ isVisible?: boolean | string | undefined;
2546
+ dark?: boolean | undefined;
2547
+ light?: boolean | undefined;
2548
+ theme?: string | undefined;
2549
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2550
+ name: string;
2551
+ parent?: /*elided*/ any | undefined;
2552
+ tabStop?: boolean | undefined;
2553
+ userProperties?: IDictionary | undefined;
2554
+ fillHeight?: boolean | undefined;
2555
+ }[];
2039
2556
  componentId: number;
2040
2557
  cssClass: string;
2041
- cssStyle: string | IDictionary<any>;
2558
+ cssStyle: string | IDictionary;
2042
2559
  events: {
2043
2560
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2044
2561
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2074,33 +2591,33 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2074
2591
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2075
2592
  } | undefined;
2076
2593
  };
2077
- isVisible: string | boolean;
2594
+ isVisible: boolean | string;
2078
2595
  dark: boolean;
2079
2596
  light: boolean;
2080
2597
  theme?: string | undefined;
2081
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2598
+ keyMap: import("@zeedhi/core").IKeyMap;
2082
2599
  name: string;
2083
- parent?: any | undefined;
2600
+ parent?: /*elided*/ any | undefined;
2084
2601
  tabStop: boolean;
2085
- userProperties: IDictionary<any>;
2602
+ userProperties: IDictionary;
2086
2603
  fillHeight: boolean;
2087
2604
  } | undefined;
2088
2605
  tabStop?: boolean | undefined;
2089
- userProperties?: IDictionary<any> | undefined;
2606
+ userProperties?: IDictionary | undefined;
2090
2607
  fillHeight?: boolean | undefined;
2091
2608
  }[];
2092
2609
  readonly childrenProps: {
2093
2610
  [x: string]: any;
2094
- allowDuplicate?: boolean | undefined;
2095
- autofocus?: boolean | undefined;
2611
+ allowDuplicate?: boolean | undefined | undefined;
2612
+ autofocus?: boolean | undefined | undefined;
2096
2613
  children?: {
2097
2614
  [x: string]: any;
2098
2615
  allowDuplicate?: boolean | undefined;
2099
2616
  autofocus?: boolean | undefined;
2100
- children?: any[] | undefined;
2617
+ children?: /*elided*/ any[] | undefined;
2101
2618
  componentId?: number | undefined;
2102
2619
  cssClass?: string | undefined;
2103
- cssStyle?: string | IDictionary<any> | undefined;
2620
+ cssStyle?: (string | IDictionary) | undefined;
2104
2621
  events?: {
2105
2622
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2106
2623
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2136,21 +2653,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2136
2653
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2137
2654
  } | undefined;
2138
2655
  } | undefined;
2139
- isVisible?: string | boolean | undefined;
2656
+ isVisible?: boolean | string | undefined;
2140
2657
  dark?: boolean | undefined;
2141
2658
  light?: boolean | undefined;
2142
2659
  theme?: string | undefined;
2143
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
2660
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2144
2661
  name: string;
2145
2662
  parent?: {
2146
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2147
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2663
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2664
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2148
2665
  allowDuplicate: boolean;
2149
2666
  autofocus: boolean;
2150
- children: any[];
2667
+ children: /*elided*/ any[];
2151
2668
  componentId: number;
2152
2669
  cssClass: string;
2153
- cssStyle: string | IDictionary<any>;
2670
+ cssStyle: string | IDictionary;
2154
2671
  events: {
2155
2672
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2156
2673
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2186,23 +2703,23 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2186
2703
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2187
2704
  } | undefined;
2188
2705
  };
2189
- isVisible: string | boolean;
2706
+ isVisible: boolean | string;
2190
2707
  dark: boolean;
2191
2708
  light: boolean;
2192
2709
  theme?: string | undefined;
2193
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2710
+ keyMap: import("@zeedhi/core").IKeyMap;
2194
2711
  name: string;
2195
- parent?: any | undefined;
2712
+ parent?: /*elided*/ any | undefined;
2196
2713
  tabStop: boolean;
2197
- userProperties: IDictionary<any>;
2714
+ userProperties: IDictionary;
2198
2715
  fillHeight: boolean;
2199
2716
  } | undefined;
2200
2717
  tabStop?: boolean | undefined;
2201
- userProperties?: IDictionary<any> | undefined;
2718
+ userProperties?: IDictionary | undefined;
2202
2719
  fillHeight?: boolean | undefined;
2203
2720
  }[] | undefined;
2204
- componentId?: number | undefined;
2205
- cssClass?: string | undefined;
2721
+ componentId?: number | undefined | undefined;
2722
+ cssClass?: string | undefined | undefined;
2206
2723
  cssStyle?: string | IDictionary<any> | undefined;
2207
2724
  events?: {
2208
2725
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
@@ -2239,21 +2756,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2239
2756
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2240
2757
  } | undefined;
2241
2758
  } | undefined;
2242
- isVisible?: string | boolean | undefined;
2243
- dark?: boolean | undefined;
2244
- light?: boolean | undefined;
2245
- theme?: string | undefined;
2759
+ isVisible?: string | boolean | undefined | undefined;
2760
+ dark?: boolean | undefined | undefined;
2761
+ light?: boolean | undefined | undefined;
2762
+ theme?: string | undefined | undefined;
2246
2763
  keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
2247
2764
  name: string;
2248
2765
  parent?: {
2249
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2250
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2766
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2767
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2251
2768
  allowDuplicate: boolean;
2252
2769
  autofocus: boolean;
2253
- children: any[];
2770
+ children: {
2771
+ [x: string]: any;
2772
+ allowDuplicate?: boolean | undefined;
2773
+ autofocus?: boolean | undefined;
2774
+ children?: /*elided*/ any[] | undefined;
2775
+ componentId?: number | undefined;
2776
+ cssClass?: string | undefined;
2777
+ cssStyle?: (string | IDictionary) | undefined;
2778
+ events?: {
2779
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2780
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2781
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2782
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2783
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2784
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2785
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2786
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2787
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2788
+ } | undefined;
2789
+ directives?: {
2790
+ [x: string]: {
2791
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2792
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2793
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2794
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2795
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2796
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2797
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2798
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2799
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2800
+ } | undefined;
2801
+ touch?: {
2802
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2803
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2804
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2805
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2806
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2807
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2808
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2809
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2810
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2811
+ } | undefined;
2812
+ } | undefined;
2813
+ isVisible?: boolean | string | undefined;
2814
+ dark?: boolean | undefined;
2815
+ light?: boolean | undefined;
2816
+ theme?: string | undefined;
2817
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2818
+ name: string;
2819
+ parent?: /*elided*/ any | undefined;
2820
+ tabStop?: boolean | undefined;
2821
+ userProperties?: IDictionary | undefined;
2822
+ fillHeight?: boolean | undefined;
2823
+ }[];
2254
2824
  componentId: number;
2255
2825
  cssClass: string;
2256
- cssStyle: string | IDictionary<any>;
2826
+ cssStyle: string | IDictionary;
2257
2827
  events: {
2258
2828
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2259
2829
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2289,20 +2859,20 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2289
2859
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2290
2860
  } | undefined;
2291
2861
  };
2292
- isVisible: string | boolean;
2862
+ isVisible: boolean | string;
2293
2863
  dark: boolean;
2294
2864
  light: boolean;
2295
2865
  theme?: string | undefined;
2296
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
2866
+ keyMap: import("@zeedhi/core").IKeyMap;
2297
2867
  name: string;
2298
- parent?: any | undefined;
2868
+ parent?: /*elided*/ any | undefined;
2299
2869
  tabStop: boolean;
2300
- userProperties: IDictionary<any>;
2870
+ userProperties: IDictionary;
2301
2871
  fillHeight: boolean;
2302
2872
  } | undefined;
2303
- tabStop?: boolean | undefined;
2873
+ tabStop?: boolean | undefined | undefined;
2304
2874
  userProperties?: IDictionary<any> | undefined;
2305
- fillHeight?: boolean | undefined;
2875
+ fillHeight?: boolean | undefined | undefined;
2306
2876
  }[];
2307
2877
  getColumnWithoutConditions: (component: any) => any;
2308
2878
  checkOutValues: (component: any, row: IDictionary<any>, newRow: IDictionary<any>) => void;
@@ -2312,25 +2882,25 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2312
2882
  maxWidth?: string | undefined;
2313
2883
  minWidth?: string | undefined;
2314
2884
  mask: string;
2315
- type?: "action" | undefined;
2885
+ type?: import("@zeedhi/common").ColumnType | undefined;
2316
2886
  actionFixed: boolean;
2317
2887
  fixed: boolean;
2318
2888
  sortable: boolean;
2319
2889
  loading: boolean;
2320
2890
  componentProps: any;
2321
- style: IDictionary<any>;
2891
+ style: IDictionary;
2322
2892
  xlsType: string;
2323
2893
  lookupData: any;
2324
2894
  lookupDataCount: number;
2325
2895
  overflow: string | number;
2326
- conditions: IDictionary<any>;
2896
+ conditions: IDictionary;
2327
2897
  helperText: string;
2328
2898
  storeData: boolean;
2329
2899
  setViewGetWidth: (viewGetWidth: () => number) => void;
2330
- setLookupDataFilter: (filter: IDictionary<any>) => void;
2900
+ setLookupDataFilter: (filter: IDictionary) => void;
2331
2901
  getWidth: () => number;
2332
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
2333
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
2902
+ formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary) => any;
2903
+ formatter: (value: any, cellProps?: IDictionary) => any;
2334
2904
  getLookupData: (lookupColumn: string, value: any) => any;
2335
2905
  initialize: () => void;
2336
2906
  clearLookupData: () => void;
@@ -2382,23 +2952,76 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2382
2952
  theme?: string | undefined;
2383
2953
  fillHeight: boolean;
2384
2954
  parent?: {
2385
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2386
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
2955
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
2956
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2387
2957
  allowDuplicate: boolean;
2388
2958
  autofocus: boolean;
2389
- children: any[];
2390
- componentId: number;
2391
- cssClass: string;
2392
- cssStyle: string | IDictionary<any>;
2393
- events: {
2394
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2395
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2396
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2397
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2398
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2399
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2400
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2401
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2959
+ children: {
2960
+ [x: string]: any;
2961
+ allowDuplicate?: boolean | undefined;
2962
+ autofocus?: boolean | undefined;
2963
+ children?: /*elided*/ any[] | undefined;
2964
+ componentId?: number | undefined;
2965
+ cssClass?: string | undefined;
2966
+ cssStyle?: (string | IDictionary) | undefined;
2967
+ events?: {
2968
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2969
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2970
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2971
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2972
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2973
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2974
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2975
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2976
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2977
+ } | undefined;
2978
+ directives?: {
2979
+ [x: string]: {
2980
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2981
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2982
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2983
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2984
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2985
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2986
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2987
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2988
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2989
+ } | undefined;
2990
+ touch?: {
2991
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2992
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2993
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2994
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2995
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2996
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2997
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2998
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2999
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3000
+ } | undefined;
3001
+ } | undefined;
3002
+ isVisible?: boolean | string | undefined;
3003
+ dark?: boolean | undefined;
3004
+ light?: boolean | undefined;
3005
+ theme?: string | undefined;
3006
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
3007
+ name: string;
3008
+ parent?: /*elided*/ any | undefined;
3009
+ tabStop?: boolean | undefined;
3010
+ userProperties?: IDictionary | undefined;
3011
+ fillHeight?: boolean | undefined;
3012
+ }[];
3013
+ componentId: number;
3014
+ cssClass: string;
3015
+ cssStyle: string | IDictionary;
3016
+ events: {
3017
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3018
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3019
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3020
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3021
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3022
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3023
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3024
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2402
3025
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2403
3026
  };
2404
3027
  directives: {
@@ -2425,19 +3048,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2425
3048
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2426
3049
  } | undefined;
2427
3050
  };
2428
- isVisible: string | boolean;
3051
+ isVisible: boolean | string;
2429
3052
  dark: boolean;
2430
3053
  light: boolean;
2431
3054
  theme?: string | undefined;
2432
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3055
+ keyMap: import("@zeedhi/core").IKeyMap;
2433
3056
  name: string;
2434
- parent?: any | undefined;
3057
+ parent?: /*elided*/ any | undefined;
2435
3058
  tabStop: boolean;
2436
- userProperties: IDictionary<any>;
3059
+ userProperties: IDictionary;
2437
3060
  fillHeight: boolean;
2438
3061
  } | undefined;
2439
3062
  componentId: number;
2440
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3063
+ keyMap: import("@zeedhi/core").IKeyMap;
2441
3064
  isFocused: boolean;
2442
3065
  tabStop: boolean;
2443
3066
  userProperties: IDictionary<any>;
@@ -2446,24 +3069,24 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2446
3069
  callEvent: (eventName: string, args: any) => boolean;
2447
3070
  addChild: (child: IComponent) => void;
2448
3071
  removeChild: (name: string) => void;
2449
- getChildInstance: <T_1>(name: string) => T_1;
2450
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3072
+ getChildInstance: <T>(name: string) => T;
3073
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
2451
3074
  onCreated: () => void;
2452
3075
  onBeforeMount: () => void;
2453
3076
  onMounted: (element: any) => void;
2454
3077
  onDestroyed: () => void;
2455
- click: (event?: Event | undefined, element?: any) => void;
3078
+ click: (event?: Event, element?: any) => void;
2456
3079
  focus: (event: Event, element: any) => void;
2457
3080
  blur: (event: Event, element: any) => void;
2458
- mouseenter: (event?: Event | undefined, element?: any) => void;
2459
- mouseleave: (event?: Event | undefined, element?: any) => void;
2460
- mouseout: (event?: Event | undefined, element?: any) => void;
2461
- mouseover: (event?: Event | undefined, element?: any) => void;
3081
+ mouseenter: (event?: Event, element?: any) => void;
3082
+ mouseleave: (event?: Event, element?: any) => void;
3083
+ mouseout: (event?: Event, element?: any) => void;
3084
+ mouseover: (event?: Event, element?: any) => void;
2462
3085
  }[];
2463
3086
  pageSizes: string[];
2464
3087
  events: {
2465
3088
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2466
- changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3089
+ changeLayout?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
2467
3090
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2468
3091
  click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2469
3092
  focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2478,9 +3101,9 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2478
3101
  searchVisibleOnly: boolean;
2479
3102
  defaultSearchVisibleOnly: boolean;
2480
3103
  getAppliedConditions: (args: {
2481
- row: IDictionary<any>;
3104
+ row: IDictionary;
2482
3105
  column: Column;
2483
- path?: string | undefined;
3106
+ path?: string;
2484
3107
  }) => Partial<IComponentRender>;
2485
3108
  getCurrentRowIndex: () => number;
2486
3109
  getPage: () => number;
@@ -2490,25 +3113,25 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2490
3113
  readonly pageText: string;
2491
3114
  readonly paginationLength: number;
2492
3115
  getCellWithAppliedConditions: (columns: Column[], row: IDictionary<any>) => IDictionary<IDictionary<any>>;
2493
- reapplyConditions: (row: IDictionary<any>, columns?: Column[] | undefined) => IDictionary<IDictionary<any>>;
3116
+ reapplyConditions: (row: IDictionary<any>, columns?: Column[]) => IDictionary<IDictionary<any>>;
2494
3117
  reload: () => Promise<any>;
2495
- changeLayout: (event?: Event | undefined, element?: any) => void;
3118
+ changeLayout: (event?: Event, element?: any) => void;
2496
3119
  setSearch: (search: string) => Promise<any>;
2497
- setCurrentRow: (row: IDictionary<any>) => void;
3120
+ setCurrentRow: (row: IDictionary) => void;
2498
3121
  setOrder: (order: string[]) => Promise<any>;
2499
- getRowKey: (row: IDictionary<any>) => any;
2500
- delete: (row: IDictionary<any>) => Promise<any>;
2501
- getData: () => IDictionary<any>[];
3122
+ getRowKey: (row: IDictionary) => any;
3123
+ delete: (row: IDictionary) => Promise<any>;
3124
+ getData: () => IDictionary[];
2502
3125
  findRow: (key: string | number) => IDictionary<any> | undefined;
2503
3126
  children: {
2504
3127
  [x: string]: any;
2505
- children?: any[] | undefined;
3128
+ children?: /*elided*/ any[] | undefined;
2506
3129
  component: string;
2507
3130
  allowDuplicate?: boolean | undefined;
2508
3131
  autofocus?: boolean | undefined;
2509
3132
  componentId?: number | undefined;
2510
3133
  cssClass?: string | undefined;
2511
- cssStyle?: string | IDictionary<any> | undefined;
3134
+ cssStyle?: (string | IDictionary) | undefined;
2512
3135
  events?: {
2513
3136
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2514
3137
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2544,21 +3167,74 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2544
3167
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2545
3168
  } | undefined;
2546
3169
  } | undefined;
2547
- isVisible?: string | boolean | undefined;
3170
+ isVisible?: boolean | string | undefined;
2548
3171
  dark?: boolean | undefined;
2549
3172
  light?: boolean | undefined;
2550
3173
  theme?: string | undefined;
2551
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
3174
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2552
3175
  name: string;
2553
3176
  parent?: {
2554
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2555
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3177
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
3178
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2556
3179
  allowDuplicate: boolean;
2557
3180
  autofocus: boolean;
2558
- children: any[];
3181
+ children: {
3182
+ [x: string]: any;
3183
+ allowDuplicate?: boolean | undefined;
3184
+ autofocus?: boolean | undefined;
3185
+ children?: /*elided*/ any[] | undefined;
3186
+ componentId?: number | undefined;
3187
+ cssClass?: string | undefined;
3188
+ cssStyle?: (string | IDictionary) | undefined;
3189
+ events?: {
3190
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3191
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3192
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3193
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3194
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3195
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3196
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3197
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3198
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3199
+ } | undefined;
3200
+ directives?: {
3201
+ [x: string]: {
3202
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3203
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3204
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3205
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3206
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3207
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3208
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3209
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3210
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3211
+ } | undefined;
3212
+ touch?: {
3213
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3214
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3215
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3216
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3217
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3218
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3219
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3220
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3221
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3222
+ } | undefined;
3223
+ } | undefined;
3224
+ isVisible?: boolean | string | undefined;
3225
+ dark?: boolean | undefined;
3226
+ light?: boolean | undefined;
3227
+ theme?: string | undefined;
3228
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
3229
+ name: string;
3230
+ parent?: /*elided*/ any | undefined;
3231
+ tabStop?: boolean | undefined;
3232
+ userProperties?: IDictionary | undefined;
3233
+ fillHeight?: boolean | undefined;
3234
+ }[];
2559
3235
  componentId: number;
2560
3236
  cssClass: string;
2561
- cssStyle: string | IDictionary<any>;
3237
+ cssStyle: string | IDictionary;
2562
3238
  events: {
2563
3239
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2564
3240
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2594,19 +3270,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2594
3270
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2595
3271
  } | undefined;
2596
3272
  };
2597
- isVisible: string | boolean;
3273
+ isVisible: boolean | string;
2598
3274
  dark: boolean;
2599
3275
  light: boolean;
2600
3276
  theme?: string | undefined;
2601
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3277
+ keyMap: import("@zeedhi/core").IKeyMap;
2602
3278
  name: string;
2603
- parent?: any | undefined;
3279
+ parent?: /*elided*/ any | undefined;
2604
3280
  tabStop: boolean;
2605
- userProperties: IDictionary<any>;
3281
+ userProperties: IDictionary;
2606
3282
  fillHeight: boolean;
2607
3283
  } | undefined;
2608
3284
  tabStop?: boolean | undefined;
2609
- userProperties?: IDictionary<any> | undefined;
3285
+ userProperties?: IDictionary | undefined;
2610
3286
  fillHeight?: boolean | undefined;
2611
3287
  }[];
2612
3288
  component: string;
@@ -2646,14 +3322,67 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2646
3322
  theme?: string | undefined;
2647
3323
  fillHeight: boolean;
2648
3324
  parent?: {
2649
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2650
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3325
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
3326
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2651
3327
  allowDuplicate: boolean;
2652
3328
  autofocus: boolean;
2653
- children: any[];
3329
+ children: {
3330
+ [x: string]: any;
3331
+ allowDuplicate?: boolean | undefined;
3332
+ autofocus?: boolean | undefined;
3333
+ children?: /*elided*/ any[] | undefined;
3334
+ componentId?: number | undefined;
3335
+ cssClass?: string | undefined;
3336
+ cssStyle?: (string | IDictionary) | undefined;
3337
+ events?: {
3338
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3339
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3340
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3341
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3342
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3343
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3344
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3345
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3346
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3347
+ } | undefined;
3348
+ directives?: {
3349
+ [x: string]: {
3350
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3351
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3352
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3353
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3354
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3355
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3356
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3357
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3358
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3359
+ } | undefined;
3360
+ touch?: {
3361
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3362
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3363
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3364
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3365
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3366
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3367
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3368
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3369
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3370
+ } | undefined;
3371
+ } | undefined;
3372
+ isVisible?: boolean | string | undefined;
3373
+ dark?: boolean | undefined;
3374
+ light?: boolean | undefined;
3375
+ theme?: string | undefined;
3376
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
3377
+ name: string;
3378
+ parent?: /*elided*/ any | undefined;
3379
+ tabStop?: boolean | undefined;
3380
+ userProperties?: IDictionary | undefined;
3381
+ fillHeight?: boolean | undefined;
3382
+ }[];
2654
3383
  componentId: number;
2655
3384
  cssClass: string;
2656
- cssStyle: string | IDictionary<any>;
3385
+ cssStyle: string | IDictionary;
2657
3386
  events: {
2658
3387
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2659
3388
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2689,19 +3418,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2689
3418
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2690
3419
  } | undefined;
2691
3420
  };
2692
- isVisible: string | boolean;
3421
+ isVisible: boolean | string;
2693
3422
  dark: boolean;
2694
3423
  light: boolean;
2695
3424
  theme?: string | undefined;
2696
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3425
+ keyMap: import("@zeedhi/core").IKeyMap;
2697
3426
  name: string;
2698
- parent?: any | undefined;
3427
+ parent?: /*elided*/ any | undefined;
2699
3428
  tabStop: boolean;
2700
- userProperties: IDictionary<any>;
3429
+ userProperties: IDictionary;
2701
3430
  fillHeight: boolean;
2702
3431
  } | undefined;
2703
3432
  componentId: number;
2704
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3433
+ keyMap: import("@zeedhi/core").IKeyMap;
2705
3434
  isFocused: boolean;
2706
3435
  tabStop: boolean;
2707
3436
  userProperties: IDictionary<any>;
@@ -2710,19 +3439,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2710
3439
  callEvent: (eventName: string, args: any) => boolean;
2711
3440
  addChild: (child: IComponent) => void;
2712
3441
  removeChild: (name: string) => void;
2713
- getChildInstance: <T_1>(name: string) => T_1;
2714
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3442
+ getChildInstance: <T>(name: string) => T;
3443
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
2715
3444
  onBeforeMount: () => void;
2716
3445
  onDestroyed: () => void;
2717
- click: (event?: Event | undefined, element?: any) => void;
3446
+ click: (event?: Event, element?: any) => void;
2718
3447
  focus: (event: Event, element: any) => void;
2719
3448
  blur: (event: Event, element: any) => void;
2720
- mouseenter: (event?: Event | undefined, element?: any) => void;
2721
- mouseleave: (event?: Event | undefined, element?: any) => void;
2722
- mouseout: (event?: Event | undefined, element?: any) => void;
2723
- mouseover: (event?: Event | undefined, element?: any) => void;
3449
+ mouseenter: (event?: Event, element?: any) => void;
3450
+ mouseleave: (event?: Event, element?: any) => void;
3451
+ mouseout: (event?: Event, element?: any) => void;
3452
+ mouseover: (event?: Event, element?: any) => void;
2724
3453
  };
2725
- root: Readonly<import("vue").ShallowRef<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
3454
+ root: Readonly<import("vue").ShallowRef<ComponentPublicInstance | null>>;
2726
3455
  computedData: import("vue").ComputedRef<IDictionary<any>[]>;
2727
3456
  isOpened: (row: IDictionary) => boolean;
2728
3457
  isIndeterminate: (row: IDictionary<any>) => boolean;
@@ -2747,25 +3476,25 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2747
3476
  maxWidth?: string | undefined;
2748
3477
  minWidth?: string | undefined;
2749
3478
  mask: string;
2750
- type?: "action" | undefined;
3479
+ type?: import("@zeedhi/common").ColumnType | undefined;
2751
3480
  actionFixed: boolean;
2752
3481
  fixed: boolean;
2753
3482
  sortable: boolean;
2754
3483
  loading: boolean;
2755
3484
  componentProps: any;
2756
- style: IDictionary<any>;
3485
+ style: IDictionary;
2757
3486
  xlsType: string;
2758
3487
  lookupData: any;
2759
3488
  lookupDataCount: number;
2760
3489
  overflow: string | number;
2761
- conditions: IDictionary<any>;
3490
+ conditions: IDictionary;
2762
3491
  helperText: string;
2763
3492
  storeData: boolean;
2764
3493
  setViewGetWidth: (viewGetWidth: () => number) => void;
2765
- setLookupDataFilter: (filter: IDictionary<any>) => void;
3494
+ setLookupDataFilter: (filter: IDictionary) => void;
2766
3495
  getWidth: () => number;
2767
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
2768
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
3496
+ formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary) => any;
3497
+ formatter: (value: any, cellProps?: IDictionary) => any;
2769
3498
  getLookupData: (lookupColumn: string, value: any) => any;
2770
3499
  initialize: () => void;
2771
3500
  clearLookupData: () => void;
@@ -2776,10 +3505,10 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2776
3505
  [x: string]: any;
2777
3506
  allowDuplicate?: boolean | undefined;
2778
3507
  autofocus?: boolean | undefined;
2779
- children?: any[] | undefined;
3508
+ children?: /*elided*/ any[] | undefined;
2780
3509
  componentId?: number | undefined;
2781
3510
  cssClass?: string | undefined;
2782
- cssStyle?: string | IDictionary<any> | undefined;
3511
+ cssStyle?: (string | IDictionary) | undefined;
2783
3512
  events?: {
2784
3513
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2785
3514
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2815,21 +3544,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2815
3544
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2816
3545
  } | undefined;
2817
3546
  } | undefined;
2818
- isVisible?: string | boolean | undefined;
3547
+ isVisible?: boolean | string | undefined;
2819
3548
  dark?: boolean | undefined;
2820
3549
  light?: boolean | undefined;
2821
3550
  theme?: string | undefined;
2822
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
3551
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
2823
3552
  name: string;
2824
3553
  parent?: {
2825
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2826
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3554
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
3555
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2827
3556
  allowDuplicate: boolean;
2828
3557
  autofocus: boolean;
2829
- children: any[];
3558
+ children: /*elided*/ any[];
2830
3559
  componentId: number;
2831
3560
  cssClass: string;
2832
- cssStyle: string | IDictionary<any>;
3561
+ cssStyle: string | IDictionary;
2833
3562
  events: {
2834
3563
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2835
3564
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2865,19 +3594,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2865
3594
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2866
3595
  } | undefined;
2867
3596
  };
2868
- isVisible: string | boolean;
3597
+ isVisible: boolean | string;
2869
3598
  dark: boolean;
2870
3599
  light: boolean;
2871
3600
  theme?: string | undefined;
2872
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3601
+ keyMap: import("@zeedhi/core").IKeyMap;
2873
3602
  name: string;
2874
- parent?: any | undefined;
3603
+ parent?: /*elided*/ any | undefined;
2875
3604
  tabStop: boolean;
2876
- userProperties: IDictionary<any>;
3605
+ userProperties: IDictionary;
2877
3606
  fillHeight: boolean;
2878
3607
  } | undefined;
2879
3608
  tabStop?: boolean | undefined;
2880
- userProperties?: IDictionary<any> | undefined;
3609
+ userProperties?: IDictionary | undefined;
2881
3610
  fillHeight?: boolean | undefined;
2882
3611
  }[];
2883
3612
  childrenInstances: any[];
@@ -2925,14 +3654,67 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2925
3654
  theme?: string | undefined;
2926
3655
  fillHeight: boolean;
2927
3656
  parent?: {
2928
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
2929
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3657
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
3658
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
2930
3659
  allowDuplicate: boolean;
2931
3660
  autofocus: boolean;
2932
- children: any[];
3661
+ children: {
3662
+ [x: string]: any;
3663
+ allowDuplicate?: boolean | undefined;
3664
+ autofocus?: boolean | undefined;
3665
+ children?: /*elided*/ any[] | undefined;
3666
+ componentId?: number | undefined;
3667
+ cssClass?: string | undefined;
3668
+ cssStyle?: (string | IDictionary) | undefined;
3669
+ events?: {
3670
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3671
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3672
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3673
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3674
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3675
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3676
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3677
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3678
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3679
+ } | undefined;
3680
+ directives?: {
3681
+ [x: string]: {
3682
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3683
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3684
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3685
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3686
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3687
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3688
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3689
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3690
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3691
+ } | undefined;
3692
+ touch?: {
3693
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3694
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3695
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3696
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3697
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3698
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3699
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3700
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3701
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3702
+ } | undefined;
3703
+ } | undefined;
3704
+ isVisible?: boolean | string | undefined;
3705
+ dark?: boolean | undefined;
3706
+ light?: boolean | undefined;
3707
+ theme?: string | undefined;
3708
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
3709
+ name: string;
3710
+ parent?: /*elided*/ any | undefined;
3711
+ tabStop?: boolean | undefined;
3712
+ userProperties?: IDictionary | undefined;
3713
+ fillHeight?: boolean | undefined;
3714
+ }[];
2933
3715
  componentId: number;
2934
3716
  cssClass: string;
2935
- cssStyle: string | IDictionary<any>;
3717
+ cssStyle: string | IDictionary;
2936
3718
  events: {
2937
3719
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
2938
3720
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -2968,19 +3750,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2968
3750
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
2969
3751
  } | undefined;
2970
3752
  };
2971
- isVisible: string | boolean;
3753
+ isVisible: boolean | string;
2972
3754
  dark: boolean;
2973
3755
  light: boolean;
2974
3756
  theme?: string | undefined;
2975
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3757
+ keyMap: import("@zeedhi/core").IKeyMap;
2976
3758
  name: string;
2977
- parent?: any | undefined;
3759
+ parent?: /*elided*/ any | undefined;
2978
3760
  tabStop: boolean;
2979
- userProperties: IDictionary<any>;
3761
+ userProperties: IDictionary;
2980
3762
  fillHeight: boolean;
2981
3763
  } | undefined;
2982
3764
  componentId: number;
2983
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3765
+ keyMap: import("@zeedhi/core").IKeyMap;
2984
3766
  isFocused: boolean;
2985
3767
  tabStop: boolean;
2986
3768
  userProperties: IDictionary<any>;
@@ -2989,19 +3771,19 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
2989
3771
  callEvent: (eventName: string, args: any) => boolean;
2990
3772
  addChild: (child: IComponent) => void;
2991
3773
  removeChild: (name: string) => void;
2992
- getChildInstance: <T_1>(name: string) => T_1;
2993
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3774
+ getChildInstance: <T>(name: string) => T;
3775
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
2994
3776
  onCreated: () => void;
2995
3777
  onBeforeMount: () => void;
2996
3778
  onMounted: (element: any) => void;
2997
3779
  onDestroyed: () => void;
2998
- click: (event?: Event | undefined, element?: any) => void;
3780
+ click: (event?: Event, element?: any) => void;
2999
3781
  focus: (event: Event, element: any) => void;
3000
3782
  blur: (event: Event, element: any) => void;
3001
- mouseenter: (event?: Event | undefined, element?: any) => void;
3002
- mouseleave: (event?: Event | undefined, element?: any) => void;
3003
- mouseout: (event?: Event | undefined, element?: any) => void;
3004
- mouseover: (event?: Event | undefined, element?: any) => void;
3783
+ mouseenter: (event?: Event, element?: any) => void;
3784
+ mouseleave: (event?: Event, element?: any) => void;
3785
+ mouseout: (event?: Event, element?: any) => void;
3786
+ mouseover: (event?: Event, element?: any) => void;
3005
3787
  }[]>;
3006
3788
  sortBy: import("vue").ComputedRef<{
3007
3789
  key: string;
@@ -3009,14 +3791,14 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3009
3791
  }[]>;
3010
3792
  updateSortBy: (sortBy: {
3011
3793
  key: string;
3012
- order: "desc" | "asc";
3794
+ order: "asc" | "desc";
3013
3795
  }[]) => void;
3014
3796
  selectRowClick: (row: IDictionary<any>, isSelected: boolean, event: Event) => void;
3015
3797
  selectAllClick: (event: Event) => void;
3016
3798
  allselectedState: import("vue").ComputedRef<0 | 1 | 2>;
3017
3799
  cellFocusIn: ({ row, column }: {
3018
- row: IDictionary<any>;
3019
- column?: GridColumn | undefined;
3800
+ row: IDictionary;
3801
+ column?: GridColumn;
3020
3802
  }) => void;
3021
3803
  isCurrentRow: (row: IDictionary<any>) => any;
3022
3804
  cssColorVars: import("vue").ComputedRef<{
@@ -3025,274 +3807,12 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3025
3807
  }>;
3026
3808
  getActions: import("../zd-grid/ZdGrid").GetActions;
3027
3809
  cellFocus: ({ row, column }: {
3028
- row: IDictionary<any>;
3810
+ row: IDictionary;
3029
3811
  column: GridColumn;
3030
3812
  }) => void;
3031
3813
  isCurrent: ({ row, column }: {
3032
- row: IDictionary<any>;
3033
- column?: {
3034
- align: import("@zeedhi/common").ColumnAlign;
3035
- label: string;
3036
- width?: string | undefined;
3037
- maxWidth?: string | undefined;
3038
- minWidth?: string | undefined;
3039
- mask: string;
3040
- type?: "action" | undefined;
3041
- actionFixed: boolean;
3042
- fixed: boolean;
3043
- sortable: boolean;
3044
- loading: boolean;
3045
- componentProps: any;
3046
- style: IDictionary<any>;
3047
- xlsType: string;
3048
- lookupData: any;
3049
- lookupDataCount: number;
3050
- overflow: string | number;
3051
- conditions: IDictionary<any>;
3052
- helperText: string;
3053
- storeData: boolean;
3054
- setViewGetWidth: (viewGetWidth: () => number) => void;
3055
- setLookupDataFilter: (filter: IDictionary<any>) => void;
3056
- getWidth: () => number;
3057
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
3058
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
3059
- getLookupData: (lookupColumn: string, value: any) => any;
3060
- initialize: () => void;
3061
- clearLookupData: () => void;
3062
- onBeforeDestroy: () => void;
3063
- allowDuplicate: boolean;
3064
- autofocus: boolean;
3065
- children: {
3066
- [x: string]: any;
3067
- allowDuplicate?: boolean | undefined;
3068
- autofocus?: boolean | undefined;
3069
- children?: any[] | undefined;
3070
- componentId?: number | undefined;
3071
- cssClass?: string | undefined;
3072
- cssStyle?: string | IDictionary<any> | undefined;
3073
- events?: {
3074
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3075
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3076
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3077
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3078
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3079
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3080
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3081
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3082
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3083
- } | undefined;
3084
- directives?: {
3085
- [x: string]: {
3086
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3087
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3088
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3089
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3090
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3091
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3092
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3093
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3094
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3095
- } | undefined;
3096
- touch?: {
3097
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3098
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3099
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3100
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3101
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3102
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3103
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3104
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3105
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3106
- } | undefined;
3107
- } | undefined;
3108
- isVisible?: string | boolean | undefined;
3109
- dark?: boolean | undefined;
3110
- light?: boolean | undefined;
3111
- theme?: string | undefined;
3112
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
3113
- name: string;
3114
- parent?: {
3115
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3116
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3117
- allowDuplicate: boolean;
3118
- autofocus: boolean;
3119
- children: any[];
3120
- componentId: number;
3121
- cssClass: string;
3122
- cssStyle: string | IDictionary<any>;
3123
- events: {
3124
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3125
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3126
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3127
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3128
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3129
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3130
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3131
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3132
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3133
- };
3134
- directives: {
3135
- [x: string]: {
3136
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3137
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3138
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3139
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3140
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3141
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3142
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3143
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3144
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3145
- } | undefined;
3146
- touch?: {
3147
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3148
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3149
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3150
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3151
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3152
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3153
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3154
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3155
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3156
- } | undefined;
3157
- };
3158
- isVisible: string | boolean;
3159
- dark: boolean;
3160
- light: boolean;
3161
- theme?: string | undefined;
3162
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3163
- name: string;
3164
- parent?: any | undefined;
3165
- tabStop: boolean;
3166
- userProperties: IDictionary<any>;
3167
- fillHeight: boolean;
3168
- } | undefined;
3169
- tabStop?: boolean | undefined;
3170
- userProperties?: IDictionary<any> | undefined;
3171
- fillHeight?: boolean | undefined;
3172
- }[];
3173
- childrenInstances: any[];
3174
- cssClass: string;
3175
- cssStyle: string | IDictionary<string>;
3176
- directives: {
3177
- [x: string]: {
3178
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3179
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3180
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3181
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3182
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3183
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3184
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3185
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3186
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3187
- } | undefined;
3188
- touch?: {
3189
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3190
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3191
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3192
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3193
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3194
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3195
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3196
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3197
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3198
- } | undefined;
3199
- };
3200
- events: {
3201
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3202
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3203
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3204
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3205
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3206
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3207
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3208
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3209
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3210
- };
3211
- isVisible: boolean;
3212
- name: string;
3213
- dark: boolean;
3214
- light: boolean;
3215
- theme?: string | undefined;
3216
- fillHeight: boolean;
3217
- parent?: {
3218
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3219
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3220
- allowDuplicate: boolean;
3221
- autofocus: boolean;
3222
- children: any[];
3223
- componentId: number;
3224
- cssClass: string;
3225
- cssStyle: string | IDictionary<any>;
3226
- events: {
3227
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3228
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3229
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3230
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3231
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3232
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3233
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3234
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3235
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3236
- };
3237
- directives: {
3238
- [x: string]: {
3239
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3240
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3241
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3242
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3243
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3244
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3245
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3246
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3247
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3248
- } | undefined;
3249
- touch?: {
3250
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3251
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3252
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3253
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3254
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3255
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3256
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3257
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3258
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3259
- } | undefined;
3260
- };
3261
- isVisible: string | boolean;
3262
- dark: boolean;
3263
- light: boolean;
3264
- theme?: string | undefined;
3265
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3266
- name: string;
3267
- parent?: any | undefined;
3268
- tabStop: boolean;
3269
- userProperties: IDictionary<any>;
3270
- fillHeight: boolean;
3271
- } | undefined;
3272
- componentId: number;
3273
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3274
- isFocused: boolean;
3275
- tabStop: boolean;
3276
- userProperties: IDictionary<any>;
3277
- setViewFocus: (viewFocus: () => void) => void;
3278
- setFocus: () => void;
3279
- callEvent: (eventName: string, args: any) => boolean;
3280
- addChild: (child: IComponent) => void;
3281
- removeChild: (name: string) => void;
3282
- getChildInstance: <T_1>(name: string) => T_1;
3283
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3284
- onCreated: () => void;
3285
- onBeforeMount: () => void;
3286
- onMounted: (element: any) => void;
3287
- onDestroyed: () => void;
3288
- click: (event?: Event | undefined, element?: any) => void;
3289
- focus: (event: Event, element: any) => void;
3290
- blur: (event: Event, element: any) => void;
3291
- mouseenter: (event?: Event | undefined, element?: any) => void;
3292
- mouseleave: (event?: Event | undefined, element?: any) => void;
3293
- mouseout: (event?: Event | undefined, element?: any) => void;
3294
- mouseover: (event?: Event | undefined, element?: any) => void;
3295
- } | undefined;
3814
+ row: IDictionary;
3815
+ column?: UnwrapRef<Column>;
3296
3816
  }) => boolean;
3297
3817
  hasFooterSlot: boolean;
3298
3818
  headers: import("vue").ComputedRef<{
@@ -3309,534 +3829,10 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3309
3829
  changeData: () => void;
3310
3830
  fixedLeft: IDictionary<any>;
3311
3831
  resizeClickHandler: ({ event }: import("../..").ResizeParams) => void;
3312
- resizeMouseDownHandler: (column: {
3313
- align: import("@zeedhi/common").ColumnAlign;
3314
- label: string;
3315
- width?: string | undefined;
3316
- maxWidth?: string | undefined;
3317
- minWidth?: string | undefined;
3318
- mask: string;
3319
- type?: "action" | undefined;
3320
- actionFixed: boolean;
3321
- fixed: boolean;
3322
- sortable: boolean;
3323
- loading: boolean;
3324
- componentProps: any;
3325
- style: IDictionary<any>;
3326
- xlsType: string;
3327
- lookupData: any;
3328
- lookupDataCount: number;
3329
- overflow: string | number;
3330
- conditions: IDictionary<any>;
3331
- helperText: string;
3332
- storeData: boolean;
3333
- setViewGetWidth: (viewGetWidth: () => number) => void;
3334
- setLookupDataFilter: (filter: IDictionary<any>) => void;
3335
- getWidth: () => number;
3336
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
3337
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
3338
- getLookupData: (lookupColumn: string, value: any) => any;
3339
- initialize: () => void;
3340
- clearLookupData: () => void;
3341
- onBeforeDestroy: () => void;
3342
- allowDuplicate: boolean;
3343
- autofocus: boolean;
3344
- children: {
3345
- [x: string]: any;
3346
- allowDuplicate?: boolean | undefined;
3347
- autofocus?: boolean | undefined;
3348
- children?: any[] | undefined;
3349
- componentId?: number | undefined;
3350
- cssClass?: string | undefined;
3351
- cssStyle?: string | IDictionary<any> | undefined;
3352
- events?: {
3353
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3354
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3355
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3356
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3357
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3358
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3359
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3360
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3361
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3362
- } | undefined;
3363
- directives?: {
3364
- [x: string]: {
3365
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3366
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3367
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3368
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3369
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3370
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3371
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3372
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3373
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3374
- } | undefined;
3375
- touch?: {
3376
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3377
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3378
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3379
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3380
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3381
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3382
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3383
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3384
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3385
- } | undefined;
3386
- } | undefined;
3387
- isVisible?: string | boolean | undefined;
3388
- dark?: boolean | undefined;
3389
- light?: boolean | undefined;
3390
- theme?: string | undefined;
3391
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
3392
- name: string;
3393
- parent?: {
3394
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3395
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3396
- allowDuplicate: boolean;
3397
- autofocus: boolean;
3398
- children: any[];
3399
- componentId: number;
3400
- cssClass: string;
3401
- cssStyle: string | IDictionary<any>;
3402
- events: {
3403
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3404
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3405
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3406
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3407
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3408
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3409
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3410
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3411
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3412
- };
3413
- directives: {
3414
- [x: string]: {
3415
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3416
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3417
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3418
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3419
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3420
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3421
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3422
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3423
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3424
- } | undefined;
3425
- touch?: {
3426
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3427
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3428
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3429
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3430
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3431
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3432
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3433
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3434
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3435
- } | undefined;
3436
- };
3437
- isVisible: string | boolean;
3438
- dark: boolean;
3439
- light: boolean;
3440
- theme?: string | undefined;
3441
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3442
- name: string;
3443
- parent?: any | undefined;
3444
- tabStop: boolean;
3445
- userProperties: IDictionary<any>;
3446
- fillHeight: boolean;
3447
- } | undefined;
3448
- tabStop?: boolean | undefined;
3449
- userProperties?: IDictionary<any> | undefined;
3450
- fillHeight?: boolean | undefined;
3451
- }[];
3452
- childrenInstances: any[];
3453
- cssClass: string;
3454
- cssStyle: string | IDictionary<string>;
3455
- directives: {
3456
- [x: string]: {
3457
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3458
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3459
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3460
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3461
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3462
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3463
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3464
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3465
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3466
- } | undefined;
3467
- touch?: {
3468
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3469
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3470
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3471
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3472
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3473
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3474
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3475
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3476
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3477
- } | undefined;
3478
- };
3479
- events: {
3480
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3481
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3482
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3483
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3484
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3485
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3486
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3487
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3488
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3489
- };
3490
- isVisible: boolean;
3491
- name: string;
3492
- dark: boolean;
3493
- light: boolean;
3494
- theme?: string | undefined;
3495
- fillHeight: boolean;
3496
- parent?: {
3497
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3498
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3499
- allowDuplicate: boolean;
3500
- autofocus: boolean;
3501
- children: any[];
3502
- componentId: number;
3503
- cssClass: string;
3504
- cssStyle: string | IDictionary<any>;
3505
- events: {
3506
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3507
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3508
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3509
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3510
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3511
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3512
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3513
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3514
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3515
- };
3516
- directives: {
3517
- [x: string]: {
3518
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3519
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3520
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3521
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3522
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3523
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3524
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3525
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3526
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3527
- } | undefined;
3528
- touch?: {
3529
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3530
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3531
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3532
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3533
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3534
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3535
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3536
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3537
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3538
- } | undefined;
3539
- };
3540
- isVisible: string | boolean;
3541
- dark: boolean;
3542
- light: boolean;
3543
- theme?: string | undefined;
3544
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3545
- name: string;
3546
- parent?: any | undefined;
3547
- tabStop: boolean;
3548
- userProperties: IDictionary<any>;
3549
- fillHeight: boolean;
3550
- } | undefined;
3551
- componentId: number;
3552
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3553
- isFocused: boolean;
3554
- tabStop: boolean;
3555
- userProperties: IDictionary<any>;
3556
- setViewFocus: (viewFocus: () => void) => void;
3557
- setFocus: () => void;
3558
- callEvent: (eventName: string, args: any) => boolean;
3559
- addChild: (child: IComponent) => void;
3560
- removeChild: (name: string) => void;
3561
- getChildInstance: <T_1>(name: string) => T_1;
3562
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3563
- onCreated: () => void;
3564
- onBeforeMount: () => void;
3565
- onMounted: (element: any) => void;
3566
- onDestroyed: () => void;
3567
- click: (event?: Event | undefined, element?: any) => void;
3568
- focus: (event: Event, element: any) => void;
3569
- blur: (event: Event, element: any) => void;
3570
- mouseenter: (event?: Event | undefined, element?: any) => void;
3571
- mouseleave: (event?: Event | undefined, element?: any) => void;
3572
- mouseout: (event?: Event | undefined, element?: any) => void;
3573
- mouseover: (event?: Event | undefined, element?: any) => void;
3574
- }, { event, el }: import("../..").ResizeParams) => void;
3832
+ resizeMouseDownHandler: (column: UnwrapRef<Column>, { event, el }: import("../..").ResizeParams) => void;
3575
3833
  hasToolbarSlot: boolean;
3576
3834
  fixedRight: IDictionary<any>;
3577
- calcWidth: (column: {
3578
- align: import("@zeedhi/common").ColumnAlign;
3579
- label: string;
3580
- width?: string | undefined;
3581
- maxWidth?: string | undefined;
3582
- minWidth?: string | undefined;
3583
- mask: string;
3584
- type?: "action" | undefined;
3585
- actionFixed: boolean;
3586
- fixed: boolean;
3587
- sortable: boolean;
3588
- loading: boolean;
3589
- componentProps: any;
3590
- style: IDictionary<any>;
3591
- xlsType: string;
3592
- lookupData: any;
3593
- lookupDataCount: number;
3594
- overflow: string | number;
3595
- conditions: IDictionary<any>;
3596
- helperText: string;
3597
- storeData: boolean;
3598
- setViewGetWidth: (viewGetWidth: () => number) => void;
3599
- setLookupDataFilter: (filter: IDictionary<any>) => void;
3600
- getWidth: () => number;
3601
- formatterByRow: (row: IDictionary<any>, cellProps?: IDictionary<any> | undefined) => any;
3602
- formatter: (value: any, cellProps?: IDictionary<any> | undefined) => any;
3603
- getLookupData: (lookupColumn: string, value: any) => any;
3604
- initialize: () => void;
3605
- clearLookupData: () => void;
3606
- onBeforeDestroy: () => void;
3607
- allowDuplicate: boolean;
3608
- autofocus: boolean;
3609
- children: {
3610
- [x: string]: any;
3611
- allowDuplicate?: boolean | undefined;
3612
- autofocus?: boolean | undefined;
3613
- children?: any[] | undefined;
3614
- componentId?: number | undefined;
3615
- cssClass?: string | undefined;
3616
- cssStyle?: string | IDictionary<any> | undefined;
3617
- events?: {
3618
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3619
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3620
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3621
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3622
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3623
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3624
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3625
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3626
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3627
- } | undefined;
3628
- directives?: {
3629
- [x: string]: {
3630
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3631
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3632
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3633
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3634
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3635
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3636
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3637
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3638
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3639
- } | undefined;
3640
- touch?: {
3641
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3642
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3643
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3644
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3645
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3646
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3647
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3648
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3649
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3650
- } | undefined;
3651
- } | undefined;
3652
- isVisible?: string | boolean | undefined;
3653
- dark?: boolean | undefined;
3654
- light?: boolean | undefined;
3655
- theme?: string | undefined;
3656
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
3657
- name: string;
3658
- parent?: {
3659
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3660
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3661
- allowDuplicate: boolean;
3662
- autofocus: boolean;
3663
- children: any[];
3664
- componentId: number;
3665
- cssClass: string;
3666
- cssStyle: string | IDictionary<any>;
3667
- events: {
3668
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3669
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3670
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3671
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3672
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3673
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3674
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3675
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3676
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3677
- };
3678
- directives: {
3679
- [x: string]: {
3680
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3681
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3682
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3683
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3684
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3685
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3686
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3687
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3688
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3689
- } | undefined;
3690
- touch?: {
3691
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3692
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3693
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3694
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3695
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3696
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3697
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3698
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3699
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3700
- } | undefined;
3701
- };
3702
- isVisible: string | boolean;
3703
- dark: boolean;
3704
- light: boolean;
3705
- theme?: string | undefined;
3706
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3707
- name: string;
3708
- parent?: any | undefined;
3709
- tabStop: boolean;
3710
- userProperties: IDictionary<any>;
3711
- fillHeight: boolean;
3712
- } | undefined;
3713
- tabStop?: boolean | undefined;
3714
- userProperties?: IDictionary<any> | undefined;
3715
- fillHeight?: boolean | undefined;
3716
- }[];
3717
- childrenInstances: any[];
3718
- cssClass: string;
3719
- cssStyle: string | IDictionary<string>;
3720
- directives: {
3721
- [x: string]: {
3722
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3723
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3724
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3725
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3726
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3727
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3728
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3729
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3730
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3731
- } | undefined;
3732
- touch?: {
3733
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3734
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3735
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3736
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3737
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3738
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3739
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3740
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3741
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3742
- } | undefined;
3743
- };
3744
- events: {
3745
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3746
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3747
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3748
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3749
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3750
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3751
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3752
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3753
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3754
- };
3755
- isVisible: boolean;
3756
- name: string;
3757
- dark: boolean;
3758
- light: boolean;
3759
- theme?: string | undefined;
3760
- fillHeight: boolean;
3761
- parent?: {
3762
- addChildInstance: (component: import("@zeedhi/common").Component<IComponent>) => void;
3763
- getChildInstance: <T extends import("@zeedhi/common").Component<IComponent>>(name: string) => T;
3764
- allowDuplicate: boolean;
3765
- autofocus: boolean;
3766
- children: any[];
3767
- componentId: number;
3768
- cssClass: string;
3769
- cssStyle: string | IDictionary<any>;
3770
- events: {
3771
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3772
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3773
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3774
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3775
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3776
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3777
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3778
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3779
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3780
- };
3781
- directives: {
3782
- [x: string]: {
3783
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3784
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3785
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3786
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3787
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3788
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3789
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3790
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3791
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3792
- } | undefined;
3793
- touch?: {
3794
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
3795
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3796
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3797
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3798
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3799
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3800
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3801
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3802
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
3803
- } | undefined;
3804
- };
3805
- isVisible: string | boolean;
3806
- dark: boolean;
3807
- light: boolean;
3808
- theme?: string | undefined;
3809
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3810
- name: string;
3811
- parent?: any | undefined;
3812
- tabStop: boolean;
3813
- userProperties: IDictionary<any>;
3814
- fillHeight: boolean;
3815
- } | undefined;
3816
- componentId: number;
3817
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
3818
- isFocused: boolean;
3819
- tabStop: boolean;
3820
- userProperties: IDictionary<any>;
3821
- setViewFocus: (viewFocus: () => void) => void;
3822
- setFocus: () => void;
3823
- callEvent: (eventName: string, args: any) => boolean;
3824
- addChild: (child: IComponent) => void;
3825
- removeChild: (name: string) => void;
3826
- getChildInstance: <T_1>(name: string) => T_1;
3827
- addChildInstance: (instance: import("@zeedhi/common").Component<IComponent>) => void;
3828
- onCreated: () => void;
3829
- onBeforeMount: () => void;
3830
- onMounted: (element: any) => void;
3831
- onDestroyed: () => void;
3832
- click: (event?: Event | undefined, element?: any) => void;
3833
- focus: (event: Event, element: any) => void;
3834
- blur: (event: Event, element: any) => void;
3835
- mouseenter: (event?: Event | undefined, element?: any) => void;
3836
- mouseleave: (event?: Event | undefined, element?: any) => void;
3837
- mouseout: (event?: Event | undefined, element?: any) => void;
3838
- mouseover: (event?: Event | undefined, element?: any) => void;
3839
- }) => string | undefined;
3835
+ calcWidth: (column: UnwrapRef<Column>) => string | undefined;
3840
3836
  selectedRows: import("vue").WritableComputedRef<IDictionary<any>[], IDictionary<any>[]>;
3841
3837
  addTopPadding: () => boolean;
3842
3838
  addBottomPadding: () => boolean;
@@ -3869,6 +3865,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3869
3865
  footerSlot: {
3870
3866
  type: ArrayConstructor;
3871
3867
  default: () => never[];
3868
+ watch: boolean;
3872
3869
  };
3873
3870
  cellSelection: {
3874
3871
  type: (BooleanConstructor | StringConstructor)[];
@@ -3881,6 +3878,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3881
3878
  disableSelection: {
3882
3879
  type: (StringConstructor | FunctionConstructor)[];
3883
3880
  default: undefined;
3881
+ watch: boolean;
3884
3882
  };
3885
3883
  dragColumns: {
3886
3884
  type: (BooleanConstructor | StringConstructor)[];
@@ -3889,6 +3887,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3889
3887
  errorSlot: {
3890
3888
  type: ArrayConstructor;
3891
3889
  default: () => never[];
3890
+ watch: boolean;
3892
3891
  };
3893
3892
  fillHeight: {
3894
3893
  type: (BooleanConstructor | StringConstructor)[];
@@ -3933,6 +3932,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3933
3932
  cssClass: string;
3934
3933
  text: string;
3935
3934
  }[];
3935
+ watch: boolean;
3936
3936
  };
3937
3937
  noDataText: {
3938
3938
  type: StringConstructor;
@@ -3946,6 +3946,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3946
3946
  cssClass: string;
3947
3947
  text: string;
3948
3948
  }[];
3949
+ watch: boolean;
3949
3950
  };
3950
3951
  noResultsText: {
3951
3952
  type: StringConstructor;
@@ -3986,6 +3987,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
3986
3987
  component: string;
3987
3988
  cssClass: string;
3988
3989
  }[];
3990
+ watch: boolean;
3989
3991
  };
3990
3992
  width: {
3991
3993
  type: (NumberConstructor | StringConstructor)[];
@@ -4004,17 +4006,21 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4004
4006
  isArray(arg: any): arg is any[];
4005
4007
  readonly prototype: any[];
4006
4008
  from<T>(arrayLike: ArrayLike<T>): T[];
4007
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
4008
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
4009
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
4010
- of<T_4>(...items: T_4[]): T_4[];
4009
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4010
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
4011
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4012
+ of<T>(...items: T[]): T[];
4013
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
4014
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
4011
4015
  readonly [Symbol.species]: ArrayConstructor;
4012
4016
  };
4013
4017
  default(): never[];
4018
+ watch: boolean;
4014
4019
  };
4015
4020
  datasource: {
4016
4021
  type: ObjectConstructor;
4017
4022
  defaut(): {};
4023
+ watch: boolean;
4018
4024
  };
4019
4025
  pageSizes: {
4020
4026
  type: (StringConstructor | {
@@ -4025,10 +4031,12 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4025
4031
  isArray(arg: any): arg is any[];
4026
4032
  readonly prototype: any[];
4027
4033
  from<T>(arrayLike: ArrayLike<T>): T[];
4028
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
4029
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
4030
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
4031
- of<T_4>(...items: T_4[]): T_4[];
4034
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4035
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
4036
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4037
+ of<T>(...items: T[]): T[];
4038
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
4039
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
4032
4040
  readonly [Symbol.species]: ArrayConstructor;
4033
4041
  })[];
4034
4042
  default(): string[];
@@ -4054,16 +4062,20 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4054
4062
  isArray(arg: any): arg is any[];
4055
4063
  readonly prototype: any[];
4056
4064
  from<T>(arrayLike: ArrayLike<T>): T[];
4057
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
4058
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
4059
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
4060
- of<T_4>(...items: T_4[]): T_4[];
4065
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4066
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
4067
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
4068
+ of<T>(...items: T[]): T[];
4069
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
4070
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
4061
4071
  readonly [Symbol.species]: ArrayConstructor;
4062
4072
  })[];
4063
4073
  default(): never[];
4074
+ watch: boolean;
4064
4075
  };
4065
4076
  component: {
4066
4077
  type: StringConstructor;
4078
+ watch: boolean;
4067
4079
  };
4068
4080
  allowDuplicate: {
4069
4081
  type: (BooleanConstructor | StringConstructor)[];
@@ -4088,10 +4100,12 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4088
4100
  directives: {
4089
4101
  type: ObjectConstructor;
4090
4102
  default(): {};
4103
+ watch: boolean;
4091
4104
  };
4092
4105
  events: {
4093
4106
  type: ObjectConstructor;
4094
4107
  default(): {};
4108
+ watch: boolean;
4095
4109
  };
4096
4110
  instanceObject: {
4097
4111
  type: ObjectConstructor;
@@ -4103,6 +4117,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4103
4117
  keyMap: {
4104
4118
  type: ObjectConstructor;
4105
4119
  default(): {};
4120
+ watch: boolean;
4106
4121
  };
4107
4122
  light: {
4108
4123
  type: (BooleanConstructor | StringConstructor)[];
@@ -4114,6 +4129,7 @@ declare const treeGridComponent: import("vue").DefineComponent<import("vue").Ext
4114
4129
  };
4115
4130
  parent: {
4116
4131
  type: ObjectConstructor;
4132
+ watch: boolean;
4117
4133
  };
4118
4134
  tabStop: {
4119
4135
  type: (BooleanConstructor | StringConstructor)[];