@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
@@ -158,6 +158,7 @@ export declare const ZdCurrencyProps: {
158
158
  validations: {
159
159
  type: (ObjectConstructor | StringConstructor)[];
160
160
  default: {};
161
+ watch: boolean;
161
162
  };
162
163
  grid: {
163
164
  default: {};
@@ -172,16 +173,20 @@ export declare const ZdCurrencyProps: {
172
173
  isArray(arg: any): arg is any[];
173
174
  readonly prototype: any[];
174
175
  from<T>(arrayLike: ArrayLike<T>): T[];
175
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
176
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
177
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
178
- of<T_4>(...items: T_4[]): T_4[];
176
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
177
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
178
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
179
+ of<T>(...items: T[]): T[];
180
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
181
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
179
182
  readonly [Symbol.species]: ArrayConstructor;
180
183
  })[];
181
184
  default(): never[];
185
+ watch: boolean;
182
186
  };
183
187
  component: {
184
188
  type: StringConstructor;
189
+ watch: boolean;
185
190
  };
186
191
  allowDuplicate: {
187
192
  type: (BooleanConstructor | StringConstructor)[];
@@ -206,10 +211,12 @@ export declare const ZdCurrencyProps: {
206
211
  directives: {
207
212
  type: ObjectConstructor;
208
213
  default(): {};
214
+ watch: boolean;
209
215
  };
210
216
  events: {
211
217
  type: ObjectConstructor;
212
218
  default(): {};
219
+ watch: boolean;
213
220
  };
214
221
  instanceObject: {
215
222
  type: ObjectConstructor;
@@ -221,6 +228,7 @@ export declare const ZdCurrencyProps: {
221
228
  keyMap: {
222
229
  type: ObjectConstructor;
223
230
  default(): {};
231
+ watch: boolean;
224
232
  };
225
233
  light: {
226
234
  type: (BooleanConstructor | StringConstructor)[];
@@ -232,6 +240,7 @@ export declare const ZdCurrencyProps: {
232
240
  };
233
241
  parent: {
234
242
  type: ObjectConstructor;
243
+ watch: boolean;
235
244
  };
236
245
  tabStop: {
237
246
  type: (BooleanConstructor | StringConstructor)[];
@@ -401,6 +410,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
401
410
  validations: {
402
411
  type: (ObjectConstructor | StringConstructor)[];
403
412
  default: {};
413
+ watch: boolean;
404
414
  };
405
415
  grid: {
406
416
  default: {};
@@ -415,16 +425,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
415
425
  isArray(arg: any): arg is any[];
416
426
  readonly prototype: any[];
417
427
  from<T>(arrayLike: ArrayLike<T>): T[];
418
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
419
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
420
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
421
- of<T_4>(...items: T_4[]): T_4[];
428
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
429
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
430
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
431
+ of<T>(...items: T[]): T[];
432
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
433
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
422
434
  readonly [Symbol.species]: ArrayConstructor;
423
435
  })[];
424
436
  default(): never[];
437
+ watch: boolean;
425
438
  };
426
439
  component: {
427
440
  type: StringConstructor;
441
+ watch: boolean;
428
442
  };
429
443
  allowDuplicate: {
430
444
  type: (BooleanConstructor | StringConstructor)[];
@@ -449,10 +463,12 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
449
463
  directives: {
450
464
  type: ObjectConstructor;
451
465
  default(): {};
466
+ watch: boolean;
452
467
  };
453
468
  events: {
454
469
  type: ObjectConstructor;
455
470
  default(): {};
471
+ watch: boolean;
456
472
  };
457
473
  instanceObject: {
458
474
  type: ObjectConstructor;
@@ -464,6 +480,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
464
480
  keyMap: {
465
481
  type: ObjectConstructor;
466
482
  default(): {};
483
+ watch: boolean;
467
484
  };
468
485
  light: {
469
486
  type: (BooleanConstructor | StringConstructor)[];
@@ -475,6 +492,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
475
492
  };
476
493
  parent: {
477
494
  type: ObjectConstructor;
495
+ watch: boolean;
478
496
  };
479
497
  tabStop: {
480
498
  type: (BooleanConstructor | StringConstructor)[];
@@ -502,7 +520,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
502
520
  type: string;
503
521
  valueWithPrefix: boolean;
504
522
  valueWithSuffix: boolean;
505
- inputMode?: string | undefined;
523
+ inputMode?: string | undefined | undefined;
506
524
  onCreated: () => void;
507
525
  appendIconClick: (event: Event, element: any) => void;
508
526
  appendOuterIconClick: (event: Event, element: any) => void;
@@ -517,10 +535,10 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
517
535
  disabled: boolean;
518
536
  events: {
519
537
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
520
- change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
521
- input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
522
- keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
523
- keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
+ change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
539
+ input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
540
+ keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
541
+ keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>> | undefined;
524
542
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
525
543
  click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
526
544
  focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -537,7 +555,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
537
555
  placeholder: string;
538
556
  readonly: boolean;
539
557
  reverse: boolean;
540
- rules: ((value?: any) => string | boolean)[];
558
+ rules: ((value?: any) => boolean | string)[];
541
559
  showBorder: boolean;
542
560
  showHelper: boolean;
543
561
  showLabel: boolean;
@@ -563,13 +581,13 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
563
581
  } | undefined;
564
582
  children?: {
565
583
  [x: string]: any;
566
- children?: any[] | undefined;
584
+ children?: /*elided*/ any[] | undefined;
567
585
  component: string;
568
586
  allowDuplicate?: boolean | undefined;
569
587
  autofocus?: boolean | undefined;
570
588
  componentId?: number | undefined;
571
589
  cssClass?: string | undefined;
572
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
590
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
573
591
  events?: {
574
592
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
575
593
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -605,25 +623,25 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
605
623
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
624
  } | undefined;
607
625
  } | undefined;
608
- isVisible?: string | boolean | undefined;
626
+ isVisible?: boolean | string | undefined;
609
627
  dark?: boolean | undefined;
610
628
  light?: boolean | undefined;
611
629
  theme?: string | undefined;
612
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
630
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
613
631
  name: string;
614
632
  parent?: {
615
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
616
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
633
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
634
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
617
635
  allowDuplicate: boolean;
618
636
  autofocus: boolean;
619
637
  children: {
620
638
  [x: string]: any;
621
639
  allowDuplicate?: boolean | undefined;
622
640
  autofocus?: boolean | undefined;
623
- children?: any[] | undefined;
641
+ children?: /*elided*/ any[] | undefined;
624
642
  componentId?: number | undefined;
625
643
  cssClass?: string | undefined;
626
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
644
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
627
645
  events?: {
628
646
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
629
647
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -659,20 +677,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
659
677
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
678
  } | undefined;
661
679
  } | undefined;
662
- isVisible?: string | boolean | undefined;
680
+ isVisible?: boolean | string | undefined;
663
681
  dark?: boolean | undefined;
664
682
  light?: boolean | undefined;
665
683
  theme?: string | undefined;
666
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
684
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
667
685
  name: string;
668
- parent?: any | undefined;
686
+ parent?: /*elided*/ any | undefined;
669
687
  tabStop?: boolean | undefined;
670
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
688
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
671
689
  fillHeight?: boolean | undefined;
672
690
  }[];
673
691
  componentId: number;
674
692
  cssClass: string;
675
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
693
+ cssStyle: string | import("@zeedhi/core").IDictionary;
676
694
  events: {
677
695
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
678
696
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -708,19 +726,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
708
726
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
727
  } | undefined;
710
728
  };
711
- isVisible: string | boolean;
729
+ isVisible: boolean | string;
712
730
  dark: boolean;
713
731
  light: boolean;
714
732
  theme?: string | undefined;
715
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
733
+ keyMap: import("@zeedhi/core").IKeyMap;
716
734
  name: string;
717
- parent?: any | undefined;
735
+ parent?: /*elided*/ any | undefined;
718
736
  tabStop: boolean;
719
- userProperties: import("@zeedhi/core").IDictionary<any>;
737
+ userProperties: import("@zeedhi/core").IDictionary;
720
738
  fillHeight: boolean;
721
739
  } | undefined;
722
740
  tabStop?: boolean | undefined;
723
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
741
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
724
742
  fillHeight?: boolean | undefined;
725
743
  }[] | undefined;
726
744
  component: string;
@@ -728,7 +746,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
728
746
  autofocus?: boolean | undefined;
729
747
  componentId?: number | undefined;
730
748
  cssClass?: string | undefined;
731
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
749
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
732
750
  events?: {
733
751
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
734
752
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -764,25 +782,25 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
764
782
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
783
  } | undefined;
766
784
  } | undefined;
767
- isVisible?: string | boolean | undefined;
785
+ isVisible?: boolean | string | undefined;
768
786
  dark?: boolean | undefined;
769
787
  light?: boolean | undefined;
770
788
  theme?: string | undefined;
771
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
789
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
772
790
  name: string;
773
791
  parent?: {
774
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
775
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
792
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
793
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
776
794
  allowDuplicate: boolean;
777
795
  autofocus: boolean;
778
796
  children: {
779
797
  [x: string]: any;
780
798
  allowDuplicate?: boolean | undefined;
781
799
  autofocus?: boolean | undefined;
782
- children?: any[] | undefined;
800
+ children?: /*elided*/ any[] | undefined;
783
801
  componentId?: number | undefined;
784
802
  cssClass?: string | undefined;
785
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
803
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
786
804
  events?: {
787
805
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
788
806
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -818,20 +836,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
818
836
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
837
  } | undefined;
820
838
  } | undefined;
821
- isVisible?: string | boolean | undefined;
839
+ isVisible?: boolean | string | undefined;
822
840
  dark?: boolean | undefined;
823
841
  light?: boolean | undefined;
824
842
  theme?: string | undefined;
825
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
843
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
826
844
  name: string;
827
- parent?: any | undefined;
845
+ parent?: /*elided*/ any | undefined;
828
846
  tabStop?: boolean | undefined;
829
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
847
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
830
848
  fillHeight?: boolean | undefined;
831
849
  }[];
832
850
  componentId: number;
833
851
  cssClass: string;
834
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
852
+ cssStyle: string | import("@zeedhi/core").IDictionary;
835
853
  events: {
836
854
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
837
855
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -867,19 +885,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
867
885
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
886
  } | undefined;
869
887
  };
870
- isVisible: string | boolean;
888
+ isVisible: boolean | string;
871
889
  dark: boolean;
872
890
  light: boolean;
873
891
  theme?: string | undefined;
874
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
892
+ keyMap: import("@zeedhi/core").IKeyMap;
875
893
  name: string;
876
- parent?: any | undefined;
894
+ parent?: /*elided*/ any | undefined;
877
895
  tabStop: boolean;
878
- userProperties: import("@zeedhi/core").IDictionary<any>;
896
+ userProperties: import("@zeedhi/core").IDictionary;
879
897
  fillHeight: boolean;
880
898
  } | undefined;
881
899
  tabStop?: boolean | undefined;
882
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
900
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
883
901
  fillHeight?: boolean | undefined;
884
902
  }[];
885
903
  align?: string | undefined;
@@ -892,7 +910,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
892
910
  maxWidth: string | number;
893
911
  events: {
894
912
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
895
- submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
913
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent> | undefined;
896
914
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
897
915
  click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
898
916
  focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
@@ -903,20 +921,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
903
921
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
904
922
  };
905
923
  submitFunction?: (() => void) | undefined;
906
- value: import("@zeedhi/core").IDictionary<any>;
924
+ value: import("@zeedhi/core").IDictionary;
907
925
  clearForm: () => void;
908
926
  registerInput: (component: import("@zeedhi/common").Input) => void;
909
927
  readonly childrenProps: {
910
928
  [x: string]: any;
911
929
  children?: {
912
930
  [x: string]: any;
913
- children?: any[] | undefined;
931
+ children?: /*elided*/ any[] | undefined;
914
932
  component: string;
915
933
  allowDuplicate?: boolean | undefined;
916
934
  autofocus?: boolean | undefined;
917
935
  componentId?: number | undefined;
918
936
  cssClass?: string | undefined;
919
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
937
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
920
938
  events?: {
921
939
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
922
940
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -952,25 +970,25 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
952
970
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
971
  } | undefined;
954
972
  } | undefined;
955
- isVisible?: string | boolean | undefined;
973
+ isVisible?: boolean | string | undefined;
956
974
  dark?: boolean | undefined;
957
975
  light?: boolean | undefined;
958
976
  theme?: string | undefined;
959
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
977
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
960
978
  name: string;
961
979
  parent?: {
962
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
963
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
980
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
981
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
964
982
  allowDuplicate: boolean;
965
983
  autofocus: boolean;
966
984
  children: {
967
985
  [x: string]: any;
968
986
  allowDuplicate?: boolean | undefined;
969
987
  autofocus?: boolean | undefined;
970
- children?: any[] | undefined;
988
+ children?: /*elided*/ any[] | undefined;
971
989
  componentId?: number | undefined;
972
990
  cssClass?: string | undefined;
973
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
991
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
974
992
  events?: {
975
993
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
976
994
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1006,20 +1024,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1006
1024
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
1025
  } | undefined;
1008
1026
  } | undefined;
1009
- isVisible?: string | boolean | undefined;
1027
+ isVisible?: boolean | string | undefined;
1010
1028
  dark?: boolean | undefined;
1011
1029
  light?: boolean | undefined;
1012
1030
  theme?: string | undefined;
1013
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1031
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1014
1032
  name: string;
1015
- parent?: any | undefined;
1033
+ parent?: /*elided*/ any | undefined;
1016
1034
  tabStop?: boolean | undefined;
1017
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1035
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1018
1036
  fillHeight?: boolean | undefined;
1019
1037
  }[];
1020
1038
  componentId: number;
1021
1039
  cssClass: string;
1022
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1040
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1023
1041
  events: {
1024
1042
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1025
1043
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1055,26 +1073,26 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1055
1073
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1056
1074
  } | undefined;
1057
1075
  };
1058
- isVisible: string | boolean;
1076
+ isVisible: boolean | string;
1059
1077
  dark: boolean;
1060
1078
  light: boolean;
1061
1079
  theme?: string | undefined;
1062
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1080
+ keyMap: import("@zeedhi/core").IKeyMap;
1063
1081
  name: string;
1064
- parent?: any | undefined;
1082
+ parent?: /*elided*/ any | undefined;
1065
1083
  tabStop: boolean;
1066
- userProperties: import("@zeedhi/core").IDictionary<any>;
1084
+ userProperties: import("@zeedhi/core").IDictionary;
1067
1085
  fillHeight: boolean;
1068
1086
  } | undefined;
1069
1087
  tabStop?: boolean | undefined;
1070
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1088
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1071
1089
  fillHeight?: boolean | undefined;
1072
1090
  }[] | undefined;
1073
1091
  component: string;
1074
- allowDuplicate?: boolean | undefined;
1075
- autofocus?: boolean | undefined;
1076
- componentId?: number | undefined;
1077
- cssClass?: string | undefined;
1092
+ allowDuplicate?: boolean | undefined | undefined;
1093
+ autofocus?: boolean | undefined | undefined;
1094
+ componentId?: number | undefined | undefined;
1095
+ cssClass?: string | undefined | undefined;
1078
1096
  cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1079
1097
  events?: {
1080
1098
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
@@ -1111,25 +1129,25 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1111
1129
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
1130
  } | undefined;
1113
1131
  } | undefined;
1114
- isVisible?: string | boolean | undefined;
1115
- dark?: boolean | undefined;
1116
- light?: boolean | undefined;
1117
- theme?: string | undefined;
1132
+ isVisible?: string | boolean | undefined | undefined;
1133
+ dark?: boolean | undefined | undefined;
1134
+ light?: boolean | undefined | undefined;
1135
+ theme?: string | undefined | undefined;
1118
1136
  keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1119
1137
  name: string;
1120
1138
  parent?: {
1121
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1122
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1139
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1140
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1123
1141
  allowDuplicate: boolean;
1124
1142
  autofocus: boolean;
1125
1143
  children: {
1126
1144
  [x: string]: any;
1127
1145
  allowDuplicate?: boolean | undefined;
1128
1146
  autofocus?: boolean | undefined;
1129
- children?: any[] | undefined;
1147
+ children?: /*elided*/ any[] | undefined;
1130
1148
  componentId?: number | undefined;
1131
1149
  cssClass?: string | undefined;
1132
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1150
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1133
1151
  events?: {
1134
1152
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1135
1153
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1165,20 +1183,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1165
1183
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
1184
  } | undefined;
1167
1185
  } | undefined;
1168
- isVisible?: string | boolean | undefined;
1186
+ isVisible?: boolean | string | undefined;
1169
1187
  dark?: boolean | undefined;
1170
1188
  light?: boolean | undefined;
1171
1189
  theme?: string | undefined;
1172
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1190
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1173
1191
  name: string;
1174
- parent?: any | undefined;
1192
+ parent?: /*elided*/ any | undefined;
1175
1193
  tabStop?: boolean | undefined;
1176
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1194
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1177
1195
  fillHeight?: boolean | undefined;
1178
1196
  }[];
1179
1197
  componentId: number;
1180
1198
  cssClass: string;
1181
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1199
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1182
1200
  events: {
1183
1201
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1184
1202
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1214,20 +1232,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1214
1232
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
1233
  } | undefined;
1216
1234
  };
1217
- isVisible: string | boolean;
1235
+ isVisible: boolean | string;
1218
1236
  dark: boolean;
1219
1237
  light: boolean;
1220
1238
  theme?: string | undefined;
1221
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1239
+ keyMap: import("@zeedhi/core").IKeyMap;
1222
1240
  name: string;
1223
- parent?: any | undefined;
1241
+ parent?: /*elided*/ any | undefined;
1224
1242
  tabStop: boolean;
1225
- userProperties: import("@zeedhi/core").IDictionary<any>;
1243
+ userProperties: import("@zeedhi/core").IDictionary;
1226
1244
  fillHeight: boolean;
1227
1245
  } | undefined;
1228
- tabStop?: boolean | undefined;
1246
+ tabStop?: boolean | undefined | undefined;
1229
1247
  userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1230
- fillHeight?: boolean | undefined;
1248
+ fillHeight?: boolean | undefined | undefined;
1231
1249
  }[];
1232
1250
  readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1233
1251
  validate: () => Promise<{
@@ -1282,18 +1300,18 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1282
1300
  theme?: string | undefined;
1283
1301
  fillHeight: boolean;
1284
1302
  parent?: {
1285
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1286
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1303
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1304
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1287
1305
  allowDuplicate: boolean;
1288
1306
  autofocus: boolean;
1289
1307
  children: {
1290
1308
  [x: string]: any;
1291
1309
  allowDuplicate?: boolean | undefined;
1292
1310
  autofocus?: boolean | undefined;
1293
- children?: any[] | undefined;
1311
+ children?: /*elided*/ any[] | undefined;
1294
1312
  componentId?: number | undefined;
1295
1313
  cssClass?: string | undefined;
1296
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1314
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1297
1315
  events?: {
1298
1316
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1299
1317
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1329,20 +1347,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1329
1347
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1330
1348
  } | undefined;
1331
1349
  } | undefined;
1332
- isVisible?: string | boolean | undefined;
1350
+ isVisible?: boolean | string | undefined;
1333
1351
  dark?: boolean | undefined;
1334
1352
  light?: boolean | undefined;
1335
1353
  theme?: string | undefined;
1336
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1354
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1337
1355
  name: string;
1338
- parent?: any | undefined;
1356
+ parent?: /*elided*/ any | undefined;
1339
1357
  tabStop?: boolean | undefined;
1340
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1358
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1341
1359
  fillHeight?: boolean | undefined;
1342
1360
  }[];
1343
1361
  componentId: number;
1344
1362
  cssClass: string;
1345
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1363
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1346
1364
  events: {
1347
1365
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1348
1366
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1378,19 +1396,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1378
1396
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1379
1397
  } | undefined;
1380
1398
  };
1381
- isVisible: string | boolean;
1399
+ isVisible: boolean | string;
1382
1400
  dark: boolean;
1383
1401
  light: boolean;
1384
1402
  theme?: string | undefined;
1385
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1403
+ keyMap: import("@zeedhi/core").IKeyMap;
1386
1404
  name: string;
1387
- parent?: any | undefined;
1405
+ parent?: /*elided*/ any | undefined;
1388
1406
  tabStop: boolean;
1389
- userProperties: import("@zeedhi/core").IDictionary<any>;
1407
+ userProperties: import("@zeedhi/core").IDictionary;
1390
1408
  fillHeight: boolean;
1391
1409
  } | undefined;
1392
1410
  componentId: number;
1393
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1411
+ keyMap: import("@zeedhi/core").IKeyMap;
1394
1412
  isFocused: boolean;
1395
1413
  tabStop: boolean;
1396
1414
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -1399,19 +1417,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1399
1417
  callEvent: (eventName: string, args: any) => boolean;
1400
1418
  addChild: (child: import("@zeedhi/common").IComponent) => void;
1401
1419
  removeChild: (name: string) => void;
1402
- getChildInstance: <T_1>(name: string) => T_1;
1403
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1420
+ getChildInstance: <T>(name: string) => T;
1421
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1404
1422
  onCreated: () => void;
1405
1423
  onBeforeMount: () => void;
1406
1424
  onBeforeDestroy: () => void;
1407
1425
  onDestroyed: () => void;
1408
- click: (event?: Event | undefined, element?: any) => void;
1426
+ click: (event?: Event, element?: any) => void;
1409
1427
  focus: (event: Event, element: any) => void;
1410
1428
  blur: (event: Event, element: any) => void;
1411
- mouseenter: (event?: Event | undefined, element?: any) => void;
1412
- mouseleave: (event?: Event | undefined, element?: any) => void;
1413
- mouseout: (event?: Event | undefined, element?: any) => void;
1414
- mouseover: (event?: Event | undefined, element?: any) => void;
1429
+ mouseenter: (event?: Event, element?: any) => void;
1430
+ mouseleave: (event?: Event, element?: any) => void;
1431
+ mouseout: (event?: Event, element?: any) => void;
1432
+ mouseover: (event?: Event, element?: any) => void;
1415
1433
  } | undefined;
1416
1434
  grid: {
1417
1435
  cols?: string | undefined;
@@ -1428,26 +1446,26 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1428
1446
  'offset-xxl'?: string | undefined;
1429
1447
  };
1430
1448
  validate: () => Promise<string[]>;
1431
- setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1449
+ setViewValidate: (viewValidate: (silent?: boolean) => Promise<string[]>) => void;
1432
1450
  setViewResetValidation: (viewResetValidation: () => void) => void;
1433
1451
  resetValidation: () => void;
1434
- addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1452
+ addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any>) => void;
1435
1453
  removeValidation: (name: string) => void;
1436
1454
  clearValidations: () => void;
1437
1455
  isValid: (value?: any) => boolean;
1438
- change: (event?: Event | undefined, element?: any) => void;
1439
- input: (event?: Event | undefined, element?: any) => void;
1440
- keyup: (event?: Event | undefined, element?: any) => void;
1441
- keydown: (event?: Event | undefined, element?: any) => void;
1456
+ change: (event?: Event, element?: any) => void;
1457
+ input: (event?: Event, element?: any) => void;
1458
+ keyup: (event?: Event, element?: any) => void;
1459
+ keydown: (event?: Event, element?: any) => void;
1442
1460
  children: {
1443
1461
  [x: string]: any;
1444
- children?: any[] | undefined;
1462
+ children?: /*elided*/ any[] | undefined;
1445
1463
  component: string;
1446
1464
  allowDuplicate?: boolean | undefined;
1447
1465
  autofocus?: boolean | undefined;
1448
1466
  componentId?: number | undefined;
1449
1467
  cssClass?: string | undefined;
1450
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1468
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1451
1469
  events?: {
1452
1470
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1453
1471
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1483,25 +1501,25 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1483
1501
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
1502
  } | undefined;
1485
1503
  } | undefined;
1486
- isVisible?: string | boolean | undefined;
1504
+ isVisible?: boolean | string | undefined;
1487
1505
  dark?: boolean | undefined;
1488
1506
  light?: boolean | undefined;
1489
1507
  theme?: string | undefined;
1490
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1508
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1491
1509
  name: string;
1492
1510
  parent?: {
1493
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1494
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1511
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1512
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1495
1513
  allowDuplicate: boolean;
1496
1514
  autofocus: boolean;
1497
1515
  children: {
1498
1516
  [x: string]: any;
1499
1517
  allowDuplicate?: boolean | undefined;
1500
1518
  autofocus?: boolean | undefined;
1501
- children?: any[] | undefined;
1519
+ children?: /*elided*/ any[] | undefined;
1502
1520
  componentId?: number | undefined;
1503
1521
  cssClass?: string | undefined;
1504
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1522
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1505
1523
  events?: {
1506
1524
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1507
1525
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1537,20 +1555,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1537
1555
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1538
1556
  } | undefined;
1539
1557
  } | undefined;
1540
- isVisible?: string | boolean | undefined;
1558
+ isVisible?: boolean | string | undefined;
1541
1559
  dark?: boolean | undefined;
1542
1560
  light?: boolean | undefined;
1543
1561
  theme?: string | undefined;
1544
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1562
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1545
1563
  name: string;
1546
- parent?: any | undefined;
1564
+ parent?: /*elided*/ any | undefined;
1547
1565
  tabStop?: boolean | undefined;
1548
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1566
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1549
1567
  fillHeight?: boolean | undefined;
1550
1568
  }[];
1551
1569
  componentId: number;
1552
1570
  cssClass: string;
1553
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1571
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1554
1572
  events: {
1555
1573
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1556
1574
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1586,19 +1604,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1586
1604
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1587
1605
  } | undefined;
1588
1606
  };
1589
- isVisible: string | boolean;
1607
+ isVisible: boolean | string;
1590
1608
  dark: boolean;
1591
1609
  light: boolean;
1592
1610
  theme?: string | undefined;
1593
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1611
+ keyMap: import("@zeedhi/core").IKeyMap;
1594
1612
  name: string;
1595
- parent?: any | undefined;
1613
+ parent?: /*elided*/ any | undefined;
1596
1614
  tabStop: boolean;
1597
- userProperties: import("@zeedhi/core").IDictionary<any>;
1615
+ userProperties: import("@zeedhi/core").IDictionary;
1598
1616
  fillHeight: boolean;
1599
1617
  } | undefined;
1600
1618
  tabStop?: boolean | undefined;
1601
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1619
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1602
1620
  fillHeight?: boolean | undefined;
1603
1621
  }[];
1604
1622
  component: string;
@@ -1638,18 +1656,18 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1638
1656
  theme?: string | undefined;
1639
1657
  fillHeight: boolean;
1640
1658
  parent?: {
1641
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1642
- getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1659
+ addChildInstance: (component: import("@zeedhi/common").Component) => void;
1660
+ getChildInstance: <T extends import("@zeedhi/common").Component>(name: string) => T;
1643
1661
  allowDuplicate: boolean;
1644
1662
  autofocus: boolean;
1645
1663
  children: {
1646
1664
  [x: string]: any;
1647
1665
  allowDuplicate?: boolean | undefined;
1648
1666
  autofocus?: boolean | undefined;
1649
- children?: any[] | undefined;
1667
+ children?: /*elided*/ any[] | undefined;
1650
1668
  componentId?: number | undefined;
1651
1669
  cssClass?: string | undefined;
1652
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1670
+ cssStyle?: (string | import("@zeedhi/core").IDictionary) | undefined;
1653
1671
  events?: {
1654
1672
  [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
1673
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1685,20 +1703,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1685
1703
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1686
1704
  } | undefined;
1687
1705
  } | undefined;
1688
- isVisible?: string | boolean | undefined;
1706
+ isVisible?: boolean | string | undefined;
1689
1707
  dark?: boolean | undefined;
1690
1708
  light?: boolean | undefined;
1691
1709
  theme?: string | undefined;
1692
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1710
+ keyMap?: import("@zeedhi/core").IKeyMap | undefined;
1693
1711
  name: string;
1694
- parent?: any | undefined;
1712
+ parent?: /*elided*/ any | undefined;
1695
1713
  tabStop?: boolean | undefined;
1696
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1714
+ userProperties?: import("@zeedhi/core").IDictionary | undefined;
1697
1715
  fillHeight?: boolean | undefined;
1698
1716
  }[];
1699
1717
  componentId: number;
1700
1718
  cssClass: string;
1701
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1719
+ cssStyle: string | import("@zeedhi/core").IDictionary;
1702
1720
  events: {
1703
1721
  [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1704
1722
  blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
@@ -1734,19 +1752,19 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1734
1752
  onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1735
1753
  } | undefined;
1736
1754
  };
1737
- isVisible: string | boolean;
1755
+ isVisible: boolean | string;
1738
1756
  dark: boolean;
1739
1757
  light: boolean;
1740
1758
  theme?: string | undefined;
1741
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1759
+ keyMap: import("@zeedhi/core").IKeyMap;
1742
1760
  name: string;
1743
- parent?: any | undefined;
1761
+ parent?: /*elided*/ any | undefined;
1744
1762
  tabStop: boolean;
1745
- userProperties: import("@zeedhi/core").IDictionary<any>;
1763
+ userProperties: import("@zeedhi/core").IDictionary;
1746
1764
  fillHeight: boolean;
1747
1765
  } | undefined;
1748
1766
  componentId: number;
1749
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1767
+ keyMap: import("@zeedhi/core").IKeyMap;
1750
1768
  isFocused: boolean;
1751
1769
  tabStop: boolean;
1752
1770
  userProperties: import("@zeedhi/core").IDictionary<any>;
@@ -1755,21 +1773,21 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1755
1773
  callEvent: (eventName: string, args: any) => boolean;
1756
1774
  addChild: (child: import("@zeedhi/common").IComponent) => void;
1757
1775
  removeChild: (name: string) => void;
1758
- getChildInstance: <T_1>(name: string) => T_1;
1759
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1776
+ getChildInstance: <T>(name: string) => T;
1777
+ addChildInstance: (instance: import("@zeedhi/common").Component) => void;
1760
1778
  onBeforeMount: () => void;
1761
1779
  onMounted: (element: any) => void;
1762
1780
  onBeforeDestroy: () => void;
1763
1781
  onDestroyed: () => void;
1764
- click: (event?: Event | undefined, element?: any) => void;
1782
+ click: (event?: Event, element?: any) => void;
1765
1783
  focus: (event: Event, element: any) => void;
1766
1784
  blur: (event: Event, element: any) => void;
1767
- mouseenter: (event?: Event | undefined, element?: any) => void;
1768
- mouseleave: (event?: Event | undefined, element?: any) => void;
1769
- mouseout: (event?: Event | undefined, element?: any) => void;
1770
- mouseover: (event?: Event | undefined, element?: any) => void;
1785
+ mouseenter: (event?: Event, element?: any) => void;
1786
+ mouseleave: (event?: Event, element?: any) => void;
1787
+ mouseout: (event?: Event, element?: any) => void;
1788
+ mouseover: (event?: Event, element?: any) => void;
1771
1789
  };
1772
- root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
1790
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance | null>>;
1773
1791
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1774
1792
  mask: {
1775
1793
  type: (ObjectConstructor | FunctionConstructor)[];
@@ -1930,6 +1948,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1930
1948
  validations: {
1931
1949
  type: (ObjectConstructor | StringConstructor)[];
1932
1950
  default: {};
1951
+ watch: boolean;
1933
1952
  };
1934
1953
  grid: {
1935
1954
  default: {};
@@ -1944,16 +1963,20 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1944
1963
  isArray(arg: any): arg is any[];
1945
1964
  readonly prototype: any[];
1946
1965
  from<T>(arrayLike: ArrayLike<T>): T[];
1947
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1948
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1949
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1950
- of<T_4>(...items: T_4[]): T_4[];
1966
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1967
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
1968
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
1969
+ of<T>(...items: T[]): T[];
1970
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
1971
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
1951
1972
  readonly [Symbol.species]: ArrayConstructor;
1952
1973
  })[];
1953
1974
  default(): never[];
1975
+ watch: boolean;
1954
1976
  };
1955
1977
  component: {
1956
1978
  type: StringConstructor;
1979
+ watch: boolean;
1957
1980
  };
1958
1981
  allowDuplicate: {
1959
1982
  type: (BooleanConstructor | StringConstructor)[];
@@ -1978,10 +2001,12 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1978
2001
  directives: {
1979
2002
  type: ObjectConstructor;
1980
2003
  default(): {};
2004
+ watch: boolean;
1981
2005
  };
1982
2006
  events: {
1983
2007
  type: ObjectConstructor;
1984
2008
  default(): {};
2009
+ watch: boolean;
1985
2010
  };
1986
2011
  instanceObject: {
1987
2012
  type: ObjectConstructor;
@@ -1993,6 +2018,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
1993
2018
  keyMap: {
1994
2019
  type: ObjectConstructor;
1995
2020
  default(): {};
2021
+ watch: boolean;
1996
2022
  };
1997
2023
  light: {
1998
2024
  type: (BooleanConstructor | StringConstructor)[];
@@ -2004,6 +2030,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
2004
2030
  };
2005
2031
  parent: {
2006
2032
  type: ObjectConstructor;
2033
+ watch: boolean;
2007
2034
  };
2008
2035
  tabStop: {
2009
2036
  type: (BooleanConstructor | StringConstructor)[];
@@ -2014,6 +2041,7 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
2014
2041
  };
2015
2042
  }>> & Readonly<{}>, {
2016
2043
  reverse: string | boolean;
2044
+ label: string;
2017
2045
  allowDuplicate: string | boolean;
2018
2046
  type: string;
2019
2047
  autofocus: string | boolean;
@@ -2029,8 +2057,8 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
2029
2057
  tabStop: string | boolean;
2030
2058
  fillHeight: string | boolean;
2031
2059
  value: string | number;
2032
- label: string;
2033
2060
  mask: Function | Record<string, any>;
2061
+ placeholder: string;
2034
2062
  color: string;
2035
2063
  disabled: string | boolean;
2036
2064
  appendIcon: string;
@@ -2047,7 +2075,6 @@ declare const currencyComponent: import("vue").DefineComponent<import("vue").Ext
2047
2075
  hint: string;
2048
2076
  maxLength: string | number;
2049
2077
  persistentHint: string | boolean;
2050
- placeholder: string;
2051
2078
  readonly: string | boolean;
2052
2079
  autoHintDetails: string | boolean;
2053
2080
  showBorder: string | boolean;