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