@zeedhi/vuetify 3.0.6 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. package/.package.json +11 -9
  2. package/dist/components/index.js +275 -0
  3. package/dist/components/tek-grid/TekGrid.js +287 -0
  4. package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +201 -0
  5. package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +134 -0
  6. package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +79 -0
  7. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +416 -0
  8. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +501 -0
  9. package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +36 -0
  10. package/dist/components/tek-grid/indentation/TekGridIndentation.js +20 -0
  11. package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +101 -0
  12. package/dist/components/tek-grid/row/TekGridFooterRow.js +57 -0
  13. package/dist/components/tek-grid/row/TekGridGroupRow.js +58 -0
  14. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +56 -0
  15. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +33 -0
  16. package/dist/components/zd-alert/ZdAlert.js +112 -0
  17. package/dist/components/zd-badge/ZdBadge.js +28 -0
  18. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +55 -0
  19. package/dist/components/zd-button/ZdButton.js +230 -0
  20. package/dist/components/zd-button-group/ZdButtonGroup.js +110 -0
  21. package/dist/components/zd-card/ZdCard.js +132 -0
  22. package/dist/components/zd-carousel/ZdCarousel.js +242 -0
  23. package/dist/components/zd-checkbox/ZdCheckbox.js +35 -0
  24. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +62 -0
  25. package/dist/components/zd-chip/ZdChip.js +94 -0
  26. package/dist/components/zd-code-viewer/ZdCodeViewer.js +55 -0
  27. package/dist/components/zd-code-viewer/prism.js +14 -0
  28. package/dist/components/zd-col/ZdCol.js +45 -0
  29. package/dist/components/zd-collapse-card/ZdCollapseCard.js +85 -0
  30. package/dist/components/zd-component/ZdComponent.js +259 -0
  31. package/dist/components/zd-component/ZdComponentRender.js +14 -0
  32. package/dist/components/zd-container/ZdContainer.js +42 -0
  33. package/dist/components/zd-currency/ZdCurrency.js +24 -0
  34. package/dist/components/zd-date-input/ZdDateInput.js +247 -0
  35. package/dist/components/zd-date-range/ZdDateRange.js +251 -0
  36. package/dist/components/zd-dialog/ZdDialog.js +34 -0
  37. package/dist/components/zd-divider/ZdDivider.js +28 -0
  38. package/dist/components/zd-dropdown/ZdDropdown.js +93 -0
  39. package/dist/components/zd-footer/ZdFooter.js +77 -0
  40. package/dist/components/zd-form/ZdForm.js +85 -0
  41. package/dist/components/zd-frame/ZdFrame.js +76 -0
  42. package/dist/components/zd-frame-page/ZdFramePage.js +21 -0
  43. package/dist/components/zd-grid/ZdGrid.js +284 -0
  44. package/dist/components/zd-grid/cell/ZdGridAction.js +12 -0
  45. package/dist/components/zd-grid/cell/ZdGridCell.js +59 -0
  46. package/dist/components/zd-grid/cell/ZdGridCellContent.js +59 -0
  47. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +38 -0
  48. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +70 -0
  49. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +31 -0
  50. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +102 -0
  51. package/dist/components/zd-grid/column-header/ZdGridSort.js +32 -0
  52. package/dist/components/zd-grid/composables/grid-instance.js +12 -0
  53. package/dist/components/zd-grid/footer/ZdGridFooter.js +16 -0
  54. package/dist/components/zd-grid/helper/ZdGridHelper.js +12 -0
  55. package/dist/components/zd-grid/row/TableRow.js +25 -0
  56. package/dist/components/zd-grid/row/ZdGridRow.js +70 -0
  57. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +15 -0
  58. package/dist/components/zd-grid-editable/ZdGridEditable.js +174 -0
  59. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +135 -0
  60. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +99 -0
  61. package/dist/components/zd-header/ZdHeader.js +111 -0
  62. package/dist/components/zd-icon/ZdIcon.js +63 -0
  63. package/dist/components/zd-image/ZdImage.js +48 -0
  64. package/dist/components/zd-increment/ZdIncrement.js +38 -0
  65. package/dist/components/zd-input/ZdInput.js +164 -0
  66. package/dist/components/zd-iterable/ZdIterable.js +38 -0
  67. package/dist/components/zd-iterable/ZdIterableNoData.js +20 -0
  68. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +50 -0
  69. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +21 -0
  70. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +55 -0
  71. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +36 -0
  72. package/dist/components/zd-iterable/zd-search/ZdSearch.js +42 -0
  73. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +108 -0
  74. package/dist/components/zd-layout/ZdLayout.js +41 -0
  75. package/dist/components/zd-list/ZdList.js +84 -0
  76. package/dist/components/zd-list/ZdListGroup.js +38 -0
  77. package/dist/components/zd-list/ZdListItem.js +66 -0
  78. package/dist/components/zd-loading/ZdLoading.js +61 -0
  79. package/dist/components/zd-login/ZdLogin.js +68 -0
  80. package/dist/components/zd-login/ZdLoginButton.js +28 -0
  81. package/dist/components/zd-main/ZdMain.js +33 -0
  82. package/dist/components/zd-master-detail/ZdMasterDetail.js +48 -0
  83. package/dist/components/zd-menu/ZdMenu.js +302 -0
  84. package/dist/components/zd-menu/ZdMenuButton.js +42 -0
  85. package/dist/components/zd-menu/ZdMenuGroup.js +66 -0
  86. package/dist/components/zd-menu/ZdMenuLink.js +63 -0
  87. package/dist/components/zd-menu/ZdMenuSeparator.js +26 -0
  88. package/dist/components/zd-modal/ZdModal.js +123 -0
  89. package/dist/components/zd-modal/ZdModalCloseButton.js +36 -0
  90. package/dist/components/zd-month/ZdMonth.js +31 -0
  91. package/dist/components/zd-number-input/ZdNumberInput.js +84 -0
  92. package/dist/components/zd-password/ZdPassword.js +23 -0
  93. package/dist/components/zd-progress/ZdProgress.js +52 -0
  94. package/dist/components/zd-radio/ZdRadio.js +56 -0
  95. package/dist/components/zd-row/ZdRow.js +43 -0
  96. package/dist/components/zd-select/ZdSelect.js +191 -0
  97. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +326 -0
  98. package/dist/components/zd-svg-map/ZdSvgMap.js +211 -0
  99. package/dist/components/zd-switch/ZdSwitch.js +39 -0
  100. package/dist/components/zd-table/ZdTable.js +42 -0
  101. package/dist/components/zd-tabs/ZdTab.js +92 -0
  102. package/dist/components/zd-tabs/ZdTabItem.js +17 -0
  103. package/dist/components/zd-tabs/ZdTabs.js +84 -0
  104. package/dist/components/zd-tag/ZdTag.js +34 -0
  105. package/dist/components/zd-text/ZdText.js +35 -0
  106. package/dist/components/zd-text-input/ZdTextInput.js +174 -0
  107. package/dist/components/zd-textarea/ZdTextarea.js +76 -0
  108. package/dist/components/zd-time/ZdTime.js +159 -0
  109. package/dist/components/zd-toggleable/ZdToggleable.js +13 -0
  110. package/dist/components/zd-tooltip/ZdTooltip.js +92 -0
  111. package/dist/components/zd-tree/ZdTree.js +315 -0
  112. package/dist/components/zd-tree/ZdTreeAfterTitle.js +17 -0
  113. package/dist/components/zd-tree/ZdTreeCheckbox.js +97 -0
  114. package/dist/components/zd-tree-grid/ZdTreeGrid.js +101 -0
  115. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +81 -0
  116. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +85 -0
  117. package/dist/composables/cellSelection.js +37 -0
  118. package/dist/composables/columnDrag.js +82 -0
  119. package/dist/composables/columnResize.js +115 -0
  120. package/dist/composables/density.js +13 -0
  121. package/dist/composables/doubleClick.js +32 -0
  122. package/dist/composables/fixedColumns.js +106 -0
  123. package/dist/composables/gridColorVars.js +30 -0
  124. package/dist/composables/gridColumns.js +87 -0
  125. package/dist/composables/gridSelection.js +91 -0
  126. package/dist/composables/gridSorting.js +19 -0
  127. package/dist/composables/hasSlot.js +25 -0
  128. package/dist/composables/index.js +16 -0
  129. package/dist/composables/maska.js +36 -0
  130. package/dist/composables/tableNavigation.js +126 -0
  131. package/dist/composables/useIsMobile.js +8 -0
  132. package/dist/composables/useTableLayout.js +212 -0
  133. package/dist/composables/virtualScroll.js +92 -0
  134. package/dist/composables/watchUrl.js +14 -0
  135. package/dist/errors/index.js +3 -0
  136. package/dist/errors/not-provided.js +11 -0
  137. package/dist/errors/row-not-found.js +9 -0
  138. package/dist/errors/zeedhi-error.js +8 -0
  139. package/dist/index.js +49 -0
  140. package/dist/propsMixins/heightProps.js +17 -0
  141. package/dist/propsMixins/index.js +3 -0
  142. package/dist/propsMixins/interfaces.js +1 -0
  143. package/dist/propsMixins/widthProps.js +13 -0
  144. package/dist/utils/buildProps.js +3 -0
  145. package/dist/utils/fillHeight.js +18 -0
  146. package/dist/utils/icons/icons.js +28 -0
  147. package/dist/utils/index.js +6 -0
  148. package/dist/utils/isArrayOperation.js +4 -0
  149. package/dist/utils/logger/logger.js +7 -0
  150. package/dist/utils/mergeDictionaries.js +22 -0
  151. package/dist/utils/plugins/formatSizePlugin.js +6 -0
  152. package/dist/utils/plugins/getIconPlugin.js +11 -0
  153. package/dist/utils/plugins/index.js +4 -0
  154. package/dist/utils/plugins/styleObjectPlugin.js +13 -0
  155. package/dist/zd-vuetify.css +22062 -22295
  156. package/dist/zd-vuetify.js +9696 -13977
  157. package/package.json +8 -6
  158. package/src/components/index.ts +0 -27
  159. package/src/components/zd-date-input/ZdDateInput.ts +11 -9
  160. package/src/components/zd-date-input/ZdDateInput.vue +42 -46
  161. package/src/components/zd-date-range/ZdDateRange.ts +24 -23
  162. package/src/components/zd-date-range/ZdDateRange.vue +42 -54
  163. package/src/components/zd-month/ZdMonth.ts +0 -17
  164. package/src/components/zd-month/ZdMonth.vue +0 -1
  165. package/src/components/zd-text-input/ZdTextInput.ts +4 -0
  166. package/src/components/zd-text-input/ZdTextInput.vue +1 -0
  167. package/src/components/zd-time/ZdTime.ts +11 -50
  168. package/src/components/zd-time/ZdTime.vue +41 -29
  169. package/src/composables/index.ts +1 -1
  170. package/src/composables/useIsMobile.ts +9 -0
  171. package/src/errors/index.ts +1 -0
  172. package/src/index.ts +1 -0
  173. package/src/utils/index.ts +0 -1
  174. package/types/components/index.d.ts +80 -88
  175. package/types/components/tek-grid/TekGrid.d.ts +7258 -7258
  176. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -129
  177. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -225
  178. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -2432
  179. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -65
  180. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -9
  181. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -2920
  182. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -32
  183. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -1892
  184. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -90
  185. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -87
  186. package/types/components/tooltip-overflow/ZdTooltipOverflow.d.ts +50 -50
  187. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.d.ts +25 -25
  188. package/types/components/zd-alert/ZdAlert.d.ts +884 -884
  189. package/types/components/zd-badge/ZdBadge.d.ts +624 -624
  190. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +697 -697
  191. package/types/components/zd-button/ZdButton.d.ts +1158 -1158
  192. package/types/components/zd-button-group/ZdButtonGroup.d.ts +785 -785
  193. package/types/components/zd-card/ZdCard.d.ts +1028 -1028
  194. package/types/components/zd-carousel/ZdCarousel.d.ts +2007 -2007
  195. package/types/components/zd-checkbox/ZdCheckbox.d.ts +655 -642
  196. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +2040 -2010
  197. package/types/components/zd-chip/ZdChip.d.ts +1256 -1256
  198. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +791 -791
  199. package/types/components/zd-code-viewer/prism.d.ts +14 -14
  200. package/types/components/zd-col/ZdCol.d.ts +741 -741
  201. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +1583 -1583
  202. package/types/components/zd-component/ZdComponent.d.ts +104 -104
  203. package/types/components/zd-component/ZdComponentRender.d.ts +80 -80
  204. package/types/components/zd-container/ZdContainer.d.ts +722 -722
  205. package/types/components/zd-currency/ZdCurrency.d.ts +2068 -2024
  206. package/types/components/zd-date-input/ZdDateInput.d.ts +986 -960
  207. package/types/components/zd-date-range/ZdDateRange.d.ts +2305 -0
  208. package/types/components/zd-dialog/ZdDialog.d.ts +262 -262
  209. package/types/components/zd-divider/ZdDivider.d.ts +623 -623
  210. package/types/components/zd-dropdown/ZdDropdown.d.ts +836 -836
  211. package/types/components/zd-footer/ZdFooter.d.ts +1262 -1262
  212. package/types/components/zd-form/ZdForm.d.ts +118 -118
  213. package/types/components/zd-frame/ZdFrame.d.ts +138 -138
  214. package/types/components/zd-frame-page/ZdFramePage.d.ts +805 -805
  215. package/types/components/zd-grid/ZdGrid.d.ts +7304 -7304
  216. package/types/components/zd-grid/cell/ZdGridAction.d.ts +14 -14
  217. package/types/components/zd-grid/cell/ZdGridCell.d.ts +68 -68
  218. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +58 -58
  219. package/types/components/zd-grid/cell/ZdGridCheckbox.d.ts +53 -53
  220. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +112 -112
  221. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.d.ts +46 -46
  222. package/types/components/zd-grid/column-header/ZdGridHeaderRow.d.ts +165 -165
  223. package/types/components/zd-grid/column-header/ZdGridSort.d.ts +47 -47
  224. package/types/components/zd-grid/composables/grid-instance.d.ts +2085 -2085
  225. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +2087 -2087
  226. package/types/components/zd-grid/helper/ZdGridHelper.d.ts +16 -16
  227. package/types/components/zd-grid/row/TableRow.d.ts +34 -34
  228. package/types/components/zd-grid/row/ZdGridRow.d.ts +105 -105
  229. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +2086 -2086
  230. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +8663 -8663
  231. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +637 -637
  232. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +126 -126
  233. package/types/components/zd-header/ZdHeader.d.ts +1320 -1320
  234. package/types/components/zd-icon/ZdIcon.d.ts +383 -383
  235. package/types/components/zd-image/ZdImage.d.ts +753 -753
  236. package/types/components/zd-increment/ZdIncrement.d.ts +2113 -2069
  237. package/types/components/zd-input/ZdInput.d.ts +204 -200
  238. package/types/components/zd-iterable/ZdIterable.d.ts +130 -130
  239. package/types/components/zd-iterable/ZdIterableNoData.d.ts +2089 -2089
  240. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +1645 -1645
  241. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +1081 -1081
  242. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +2807 -2763
  243. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +1653 -1627
  244. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +792 -766
  245. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +2484 -2484
  246. package/types/components/zd-layout/ZdLayout.d.ts +647 -647
  247. package/types/components/zd-list/ZdList.d.ts +1140 -1140
  248. package/types/components/zd-list/ZdListGroup.d.ts +1332 -1332
  249. package/types/components/zd-list/ZdListItem.d.ts +848 -848
  250. package/types/components/zd-loading/ZdLoading.d.ts +350 -350
  251. package/types/components/zd-login/ZdLogin.d.ts +1072 -1072
  252. package/types/components/zd-login/ZdLoginButton.d.ts +1913 -1910
  253. package/types/components/zd-main/ZdMain.d.ts +619 -619
  254. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +684 -684
  255. package/types/components/zd-menu/ZdMenu.d.ts +4484 -4484
  256. package/types/components/zd-menu/ZdMenuButton.d.ts +1142 -1142
  257. package/types/components/zd-menu/ZdMenuGroup.d.ts +6286 -6286
  258. package/types/components/zd-menu/ZdMenuLink.d.ts +10437 -10437
  259. package/types/components/zd-menu/ZdMenuSeparator.d.ts +600 -600
  260. package/types/components/zd-modal/ZdModal.d.ts +10 -10
  261. package/types/components/zd-modal/ZdModalCloseButton.d.ts +1137 -1137
  262. package/types/components/zd-month/ZdMonth.d.ts +2260 -2217
  263. package/types/components/zd-number-input/ZdNumberInput.d.ts +2065 -2021
  264. package/types/components/zd-password/ZdPassword.d.ts +2058 -2014
  265. package/types/components/zd-progress/ZdProgress.d.ts +859 -859
  266. package/types/components/zd-radio/ZdRadio.d.ts +695 -682
  267. package/types/components/zd-row/ZdRow.d.ts +734 -734
  268. package/types/components/zd-select/ZdSelect.d.ts +321 -313
  269. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +341 -333
  270. package/types/components/zd-svg-map/ZdSvgMap.d.ts +414 -414
  271. package/types/components/zd-switch/ZdSwitch.d.ts +1948 -1918
  272. package/types/components/zd-table/ZdTable.d.ts +1092 -1092
  273. package/types/components/zd-tabs/ZdTab.d.ts +674 -674
  274. package/types/components/zd-tabs/ZdTabItem.d.ts +268 -268
  275. package/types/components/zd-tabs/ZdTabs.d.ts +929 -929
  276. package/types/components/zd-tag/ZdTag.d.ts +613 -613
  277. package/types/components/zd-text/ZdText.d.ts +670 -670
  278. package/types/components/zd-text-input/ZdTextInput.d.ts +772 -746
  279. package/types/components/zd-textarea/ZdTextarea.d.ts +903 -877
  280. package/types/components/zd-time/ZdTime.d.ts +2271 -2224
  281. package/types/components/zd-toggleable/ZdToggleable.d.ts +203 -199
  282. package/types/components/zd-tooltip/ZdTooltip.d.ts +781 -781
  283. package/types/components/zd-tree/ZdTree.d.ts +1879 -1878
  284. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +28 -26
  285. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +74 -74
  286. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +4178 -4178
  287. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +92 -92
  288. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +124 -124
  289. package/types/composables/cellSelection.d.ts +281 -281
  290. package/types/composables/columnDrag.d.ts +9 -9
  291. package/types/composables/columnResize.d.ts +18 -18
  292. package/types/composables/density.d.ts +12 -12
  293. package/types/composables/doubleClick.d.ts +6 -6
  294. package/types/composables/fixedColumns.d.ts +14 -14
  295. package/types/composables/gridColorVars.d.ts +13 -13
  296. package/types/composables/gridColumns.d.ts +285 -285
  297. package/types/composables/gridSelection.d.ts +15 -15
  298. package/types/composables/gridSorting.d.ts +17 -17
  299. package/types/composables/hasSlot.d.ts +8 -8
  300. package/types/composables/index.d.ts +16 -16
  301. package/types/composables/maska.d.ts +16 -16
  302. package/types/composables/tableNavigation.d.ts +11 -11
  303. package/types/composables/useIsMobile.d.ts +3 -0
  304. package/types/composables/useTableLayout.d.ts +25 -25
  305. package/types/composables/virtualScroll.d.ts +26 -26
  306. package/types/composables/watchUrl.d.ts +8 -8
  307. package/types/errors/index.d.ts +3 -2
  308. package/types/errors/not-provided.d.ts +7 -7
  309. package/types/errors/row-not-found.d.ts +7 -7
  310. package/types/errors/zeedhi-error.d.ts +6 -6
  311. package/types/index.d.ts +22 -21
  312. package/types/propsMixins/heightProps.d.ts +17 -17
  313. package/types/propsMixins/index.d.ts +5 -5
  314. package/types/propsMixins/interfaces.d.ts +2 -2
  315. package/types/propsMixins/widthProps.d.ts +13 -13
  316. package/types/utils/buildProps.d.ts +2 -2
  317. package/types/utils/fillHeight.d.ts +1 -1
  318. package/types/utils/icons/icons.d.ts +5 -5
  319. package/types/utils/index.d.ts +6 -7
  320. package/types/utils/isArrayOperation.d.ts +2 -2
  321. package/types/utils/logger/logger.d.ts +3 -3
  322. package/types/utils/mergeDictionaries.d.ts +3 -3
  323. package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
  324. package/types/utils/plugins/getIconPlugin.d.ts +1 -1
  325. package/types/utils/plugins/index.d.ts +4 -4
  326. package/types/utils/plugins/styleObjectPlugin.d.ts +1 -1
  327. package/rollup.config.prod.js +0 -26
  328. package/rollup.scss.config.js +0 -13
  329. package/src/components/tek-grid/TekGrid.ts +0 -320
  330. package/src/components/tek-grid/TekGrid.vue +0 -235
  331. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +0 -243
  332. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +0 -93
  333. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +0 -147
  334. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +0 -78
  335. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +0 -97
  336. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +0 -273
  337. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +0 -469
  338. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +0 -512
  339. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +0 -46
  340. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +0 -28
  341. package/src/components/tek-grid/indentation/TekGridIndentation.ts +0 -21
  342. package/src/components/tek-grid/indentation/TekGridIndentation.vue +0 -33
  343. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +0 -117
  344. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +0 -172
  345. package/src/components/tek-grid/row/TekGridFooterRow.ts +0 -62
  346. package/src/components/tek-grid/row/TekGridFooterRow.vue +0 -64
  347. package/src/components/tek-grid/row/TekGridGroupRow.ts +0 -65
  348. package/src/components/tek-grid/row/TekGridGroupRow.vue +0 -65
  349. package/src/composables/useTableLayout.ts +0 -293
  350. package/src/utils/isArrayOperation.ts +0 -5
@@ -1,2069 +1,2113 @@
1
- export declare const ZdIncrementProps: {
2
- maxValue: {
3
- type: (StringConstructor | NumberConstructor)[];
4
- default: undefined;
5
- };
6
- minValue: {
7
- type: (StringConstructor | NumberConstructor)[];
8
- default: undefined;
9
- };
10
- step: {
11
- type: (StringConstructor | NumberConstructor)[];
12
- default: number;
13
- };
14
- align: {
15
- type: StringConstructor;
16
- default: string;
17
- };
18
- mask: {
19
- type: ObjectConstructor;
20
- default: () => import("@zeedhi/core").IDictionary<any>;
21
- };
22
- value: {
23
- type: (StringConstructor | NumberConstructor)[];
24
- default: null;
25
- };
26
- appendIcon: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- appendOuterIcon: {
31
- type: StringConstructor;
32
- default: string;
33
- };
34
- prefix: {
35
- type: StringConstructor;
36
- default: string;
37
- };
38
- prependIcon: {
39
- type: StringConstructor;
40
- default: string;
41
- };
42
- prependOuterIcon: {
43
- type: StringConstructor;
44
- default: string;
45
- };
46
- suffix: {
47
- type: StringConstructor;
48
- default: string;
49
- };
50
- valueWithPrefix: {
51
- type: (StringConstructor | BooleanConstructor)[];
52
- default: boolean;
53
- };
54
- valueWithSuffix: {
55
- type: (StringConstructor | BooleanConstructor)[];
56
- default: boolean;
57
- };
58
- type: {
59
- type: StringConstructor;
60
- default: string;
61
- };
62
- disableMaska: {
63
- type: BooleanConstructor;
64
- default: boolean;
65
- };
66
- width: {
67
- type: (StringConstructor | NumberConstructor)[];
68
- };
69
- minWidth: {
70
- type: (StringConstructor | NumberConstructor)[];
71
- default: string;
72
- };
73
- maxWidth: {
74
- type: (StringConstructor | NumberConstructor)[];
75
- default: string;
76
- };
77
- fillHeight: {
78
- type: (StringConstructor | BooleanConstructor)[];
79
- default: boolean;
80
- };
81
- height: {
82
- type: (StringConstructor | NumberConstructor)[];
83
- };
84
- minHeight: {
85
- type: (StringConstructor | NumberConstructor)[];
86
- default: string;
87
- };
88
- maxHeight: {
89
- type: (StringConstructor | NumberConstructor)[];
90
- default: string;
91
- };
92
- alwaysShowError: {
93
- type: (StringConstructor | BooleanConstructor)[];
94
- default: boolean;
95
- };
96
- autofill: {
97
- type: (StringConstructor | BooleanConstructor)[];
98
- default: boolean;
99
- };
100
- clearable: {
101
- type: (StringConstructor | BooleanConstructor)[];
102
- default: boolean;
103
- };
104
- color: {
105
- type: StringConstructor;
106
- default: string;
107
- };
108
- dense: {
109
- type: (StringConstructor | BooleanConstructor)[];
110
- default: boolean;
111
- };
112
- disabled: {
113
- type: (StringConstructor | BooleanConstructor)[];
114
- default: boolean;
115
- };
116
- hint: {
117
- type: StringConstructor;
118
- default: string;
119
- };
120
- label: {
121
- type: StringConstructor;
122
- default: string;
123
- };
124
- maxLength: {
125
- type: (StringConstructor | NumberConstructor)[];
126
- default: undefined;
127
- };
128
- persistentHint: {
129
- type: (StringConstructor | BooleanConstructor)[];
130
- default: boolean;
131
- };
132
- placeholder: {
133
- type: StringConstructor;
134
- default: string;
135
- };
136
- readonly: {
137
- type: (StringConstructor | BooleanConstructor)[];
138
- default: boolean;
139
- };
140
- autoHintDetails: {
141
- type: (StringConstructor | BooleanConstructor)[];
142
- default: boolean;
143
- };
144
- reverse: {
145
- type: (StringConstructor | BooleanConstructor)[];
146
- default: boolean;
147
- };
148
- showBorder: {
149
- type: (StringConstructor | BooleanConstructor)[];
150
- default: boolean;
151
- };
152
- showHelper: {
153
- type: (StringConstructor | BooleanConstructor)[];
154
- default: boolean;
155
- };
156
- showLabel: {
157
- type: (StringConstructor | BooleanConstructor)[];
158
- default: boolean;
159
- };
160
- storePath: {
161
- type: StringConstructor;
162
- default: string;
163
- };
164
- validations: {
165
- type: (StringConstructor | ObjectConstructor)[];
166
- default: {};
167
- };
168
- children: {
169
- type: (StringConstructor | {
170
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
171
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
172
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
173
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
174
- isArray(arg: any): arg is any[];
175
- readonly prototype: any[];
176
- from<T>(arrayLike: ArrayLike<T>): T[];
177
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
178
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
179
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
180
- of<T_4>(...items: T_4[]): T_4[];
181
- readonly [Symbol.species]: ArrayConstructor;
182
- })[];
183
- default(): never[];
184
- };
185
- component: {
186
- type: StringConstructor;
187
- };
188
- allowDuplicate: {
189
- type: (StringConstructor | BooleanConstructor)[];
190
- default: boolean;
191
- };
192
- autofocus: {
193
- type: (StringConstructor | BooleanConstructor)[];
194
- default: boolean;
195
- };
196
- cssClass: {
197
- type: StringConstructor;
198
- default: string;
199
- };
200
- cssStyle: {
201
- type: (StringConstructor | (() => import("vue").StyleValue))[];
202
- default: string;
203
- };
204
- dark: {
205
- type: (StringConstructor | BooleanConstructor)[];
206
- default: boolean;
207
- };
208
- directives: {
209
- type: ObjectConstructor;
210
- default(): {};
211
- };
212
- events: {
213
- type: ObjectConstructor;
214
- default(): {};
215
- };
216
- instanceObject: {
217
- type: ObjectConstructor;
218
- };
219
- isVisible: {
220
- type: (StringConstructor | BooleanConstructor)[];
221
- default: boolean;
222
- };
223
- keyMap: {
224
- type: ObjectConstructor;
225
- default(): {};
226
- };
227
- light: {
228
- type: (StringConstructor | BooleanConstructor)[];
229
- default: boolean;
230
- };
231
- name: {
232
- type: StringConstructor;
233
- required: true;
234
- };
235
- parent: {
236
- type: ObjectConstructor;
237
- };
238
- tabStop: {
239
- type: (StringConstructor | BooleanConstructor)[];
240
- default: boolean;
241
- };
242
- theme: {
243
- type: StringConstructor;
244
- };
245
- };
246
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
247
- maxValue: {
248
- type: (StringConstructor | NumberConstructor)[];
249
- default: undefined;
250
- };
251
- minValue: {
252
- type: (StringConstructor | NumberConstructor)[];
253
- default: undefined;
254
- };
255
- step: {
256
- type: (StringConstructor | NumberConstructor)[];
257
- default: number;
258
- };
259
- align: {
260
- type: StringConstructor;
261
- default: string;
262
- };
263
- mask: {
264
- type: ObjectConstructor;
265
- default: () => import("@zeedhi/core").IDictionary<any>;
266
- };
267
- value: {
268
- type: (StringConstructor | NumberConstructor)[];
269
- default: null;
270
- };
271
- appendIcon: {
272
- type: StringConstructor;
273
- default: string;
274
- };
275
- appendOuterIcon: {
276
- type: StringConstructor;
277
- default: string;
278
- };
279
- prefix: {
280
- type: StringConstructor;
281
- default: string;
282
- };
283
- prependIcon: {
284
- type: StringConstructor;
285
- default: string;
286
- };
287
- prependOuterIcon: {
288
- type: StringConstructor;
289
- default: string;
290
- };
291
- suffix: {
292
- type: StringConstructor;
293
- default: string;
294
- };
295
- valueWithPrefix: {
296
- type: (StringConstructor | BooleanConstructor)[];
297
- default: boolean;
298
- };
299
- valueWithSuffix: {
300
- type: (StringConstructor | BooleanConstructor)[];
301
- default: boolean;
302
- };
303
- type: {
304
- type: StringConstructor;
305
- default: string;
306
- };
307
- disableMaska: {
308
- type: BooleanConstructor;
309
- default: boolean;
310
- };
311
- width: {
312
- type: (StringConstructor | NumberConstructor)[];
313
- };
314
- minWidth: {
315
- type: (StringConstructor | NumberConstructor)[];
316
- default: string;
317
- };
318
- maxWidth: {
319
- type: (StringConstructor | NumberConstructor)[];
320
- default: string;
321
- };
322
- fillHeight: {
323
- type: (StringConstructor | BooleanConstructor)[];
324
- default: boolean;
325
- };
326
- height: {
327
- type: (StringConstructor | NumberConstructor)[];
328
- };
329
- minHeight: {
330
- type: (StringConstructor | NumberConstructor)[];
331
- default: string;
332
- };
333
- maxHeight: {
334
- type: (StringConstructor | NumberConstructor)[];
335
- default: string;
336
- };
337
- alwaysShowError: {
338
- type: (StringConstructor | BooleanConstructor)[];
339
- default: boolean;
340
- };
341
- autofill: {
342
- type: (StringConstructor | BooleanConstructor)[];
343
- default: boolean;
344
- };
345
- clearable: {
346
- type: (StringConstructor | BooleanConstructor)[];
347
- default: boolean;
348
- };
349
- color: {
350
- type: StringConstructor;
351
- default: string;
352
- };
353
- dense: {
354
- type: (StringConstructor | BooleanConstructor)[];
355
- default: boolean;
356
- };
357
- disabled: {
358
- type: (StringConstructor | BooleanConstructor)[];
359
- default: boolean;
360
- };
361
- hint: {
362
- type: StringConstructor;
363
- default: string;
364
- };
365
- label: {
366
- type: StringConstructor;
367
- default: string;
368
- };
369
- maxLength: {
370
- type: (StringConstructor | NumberConstructor)[];
371
- default: undefined;
372
- };
373
- persistentHint: {
374
- type: (StringConstructor | BooleanConstructor)[];
375
- default: boolean;
376
- };
377
- placeholder: {
378
- type: StringConstructor;
379
- default: string;
380
- };
381
- readonly: {
382
- type: (StringConstructor | BooleanConstructor)[];
383
- default: boolean;
384
- };
385
- autoHintDetails: {
386
- type: (StringConstructor | BooleanConstructor)[];
387
- default: boolean;
388
- };
389
- reverse: {
390
- type: (StringConstructor | BooleanConstructor)[];
391
- default: boolean;
392
- };
393
- showBorder: {
394
- type: (StringConstructor | BooleanConstructor)[];
395
- default: boolean;
396
- };
397
- showHelper: {
398
- type: (StringConstructor | BooleanConstructor)[];
399
- default: boolean;
400
- };
401
- showLabel: {
402
- type: (StringConstructor | BooleanConstructor)[];
403
- default: boolean;
404
- };
405
- storePath: {
406
- type: StringConstructor;
407
- default: string;
408
- };
409
- validations: {
410
- type: (StringConstructor | ObjectConstructor)[];
411
- default: {};
412
- };
413
- children: {
414
- type: (StringConstructor | {
415
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
416
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
417
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
418
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
419
- isArray(arg: any): arg is any[];
420
- readonly prototype: any[];
421
- from<T>(arrayLike: ArrayLike<T>): T[];
422
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
423
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
424
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
425
- of<T_4>(...items: T_4[]): T_4[];
426
- readonly [Symbol.species]: ArrayConstructor;
427
- })[];
428
- default(): never[];
429
- };
430
- component: {
431
- type: StringConstructor;
432
- };
433
- allowDuplicate: {
434
- type: (StringConstructor | BooleanConstructor)[];
435
- default: boolean;
436
- };
437
- autofocus: {
438
- type: (StringConstructor | BooleanConstructor)[];
439
- default: boolean;
440
- };
441
- cssClass: {
442
- type: StringConstructor;
443
- default: string;
444
- };
445
- cssStyle: {
446
- type: (StringConstructor | (() => import("vue").StyleValue))[];
447
- default: string;
448
- };
449
- dark: {
450
- type: (StringConstructor | BooleanConstructor)[];
451
- default: boolean;
452
- };
453
- directives: {
454
- type: ObjectConstructor;
455
- default(): {};
456
- };
457
- events: {
458
- type: ObjectConstructor;
459
- default(): {};
460
- };
461
- instanceObject: {
462
- type: ObjectConstructor;
463
- };
464
- isVisible: {
465
- type: (StringConstructor | BooleanConstructor)[];
466
- default: boolean;
467
- };
468
- keyMap: {
469
- type: ObjectConstructor;
470
- default(): {};
471
- };
472
- light: {
473
- type: (StringConstructor | BooleanConstructor)[];
474
- default: boolean;
475
- };
476
- name: {
477
- type: StringConstructor;
478
- required: true;
479
- };
480
- parent: {
481
- type: ObjectConstructor;
482
- };
483
- tabStop: {
484
- type: (StringConstructor | BooleanConstructor)[];
485
- default: boolean;
486
- };
487
- theme: {
488
- type: StringConstructor;
489
- };
490
- }>, {
491
- instance: {
492
- align: string;
493
- appendIcon: string;
494
- maxValue?: number | undefined;
495
- minValue?: number | undefined;
496
- prependIcon: string;
497
- step: number;
498
- minusClick: (event: Event, element: any) => void;
499
- plusClick: (event: Event, element: any) => void;
500
- increment: () => void;
501
- decrement: () => void;
502
- mask: any;
503
- autoNumericObj: any;
504
- validateMask: () => void;
505
- value: any;
506
- displayValue: any;
507
- formatter: (value: any) => string;
508
- parser: (value: any) => any;
509
- appendOuterIcon: string;
510
- prefix: string;
511
- prependOuterIcon: string;
512
- suffix: string;
513
- type: string;
514
- valueWithPrefix: boolean;
515
- valueWithSuffix: boolean;
516
- onCreated: () => void;
517
- appendIconClick: (event: Event, element: any) => void;
518
- appendOuterIconClick: (event: Event, element: any) => void;
519
- prependIconClick: (event: Event, element: any) => void;
520
- prependOuterIconClick: (event: Event, element: any) => void;
521
- getMask: () => any;
522
- alwaysShowError: boolean;
523
- autofill: boolean;
524
- clearable: boolean;
525
- color: string;
526
- dense: boolean;
527
- disabled: boolean;
528
- events: {
529
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
530
- change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
531
- input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
532
- keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
533
- keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
534
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
535
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
536
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
537
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
538
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
539
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
540
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
541
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
542
- };
543
- hint: string;
544
- label: string;
545
- maxLength: number;
546
- persistentHint: boolean;
547
- placeholder: string;
548
- readonly: boolean;
549
- reverse: boolean;
550
- rules: ((value?: any) => string | boolean)[];
551
- showBorder: boolean;
552
- showHelper: boolean;
553
- showLabel: boolean;
554
- autoHintDetails: boolean;
555
- storePath: string;
556
- validations: import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<string | number>>;
557
- formParent?: {
558
- children: {
559
- [x: string]: any;
560
- grid?: {
561
- cols?: string | undefined;
562
- lg?: string | undefined;
563
- md?: string | undefined;
564
- sm?: string | undefined;
565
- xl?: string | undefined;
566
- 'offset-lg'?: string | undefined;
567
- 'offset-md'?: string | undefined;
568
- 'offset-sm'?: string | undefined;
569
- 'offset-xl'?: string | undefined;
570
- } | undefined;
571
- children?: {
572
- [x: string]: any;
573
- children?: any[] | undefined;
574
- component: string;
575
- allowDuplicate?: boolean | undefined;
576
- autofocus?: boolean | undefined;
577
- componentId?: number | undefined;
578
- cssClass?: string | undefined;
579
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
580
- events?: {
581
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
582
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
583
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
584
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
585
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
586
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
587
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
588
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
589
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
590
- } | undefined;
591
- directives?: {
592
- [x: string]: {
593
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
594
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
595
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
596
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
597
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
598
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
599
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
600
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
601
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
602
- } | undefined;
603
- touch?: {
604
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
605
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
611
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
612
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
613
- } | undefined;
614
- } | undefined;
615
- isVisible?: string | boolean | undefined;
616
- dark?: boolean | undefined;
617
- light?: boolean | undefined;
618
- theme?: string | undefined;
619
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
620
- name: string;
621
- parent?: {
622
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
623
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
624
- allowDuplicate: boolean;
625
- autofocus: boolean;
626
- children: {
627
- [x: string]: any;
628
- allowDuplicate?: boolean | undefined;
629
- autofocus?: boolean | undefined;
630
- children?: any[] | undefined;
631
- componentId?: number | undefined;
632
- cssClass?: string | undefined;
633
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
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
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
- } | undefined;
645
- directives?: {
646
- [x: string]: {
647
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
648
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
649
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
650
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
651
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
652
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
653
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
654
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
655
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
656
- } | undefined;
657
- touch?: {
658
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
659
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
665
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
666
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
667
- } | undefined;
668
- } | undefined;
669
- isVisible?: string | boolean | undefined;
670
- dark?: boolean | undefined;
671
- light?: boolean | undefined;
672
- theme?: string | undefined;
673
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
674
- name: string;
675
- parent?: any | undefined;
676
- tabStop?: boolean | undefined;
677
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
678
- fillHeight?: boolean | undefined;
679
- }[];
680
- componentId: number;
681
- cssClass: string;
682
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
683
- events: {
684
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
685
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
- };
694
- directives: {
695
- [x: string]: {
696
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
697
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
698
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
699
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
700
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
701
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
703
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
704
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
- } | undefined;
706
- touch?: {
707
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
708
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
- } | undefined;
717
- };
718
- isVisible: string | boolean;
719
- dark: boolean;
720
- light: boolean;
721
- theme?: string | undefined;
722
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
723
- name: string;
724
- parent?: any | undefined;
725
- tabStop: boolean;
726
- userProperties: import("@zeedhi/core").IDictionary<any>;
727
- fillHeight: boolean;
728
- } | undefined;
729
- tabStop?: boolean | undefined;
730
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
731
- fillHeight?: boolean | undefined;
732
- }[] | undefined;
733
- component: string;
734
- allowDuplicate?: boolean | undefined;
735
- autofocus?: boolean | undefined;
736
- componentId?: number | undefined;
737
- cssClass?: string | undefined;
738
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
739
- events?: {
740
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
741
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
- } | undefined;
750
- directives?: {
751
- [x: string]: {
752
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
753
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
- } | undefined;
762
- touch?: {
763
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
764
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
- } | undefined;
773
- } | undefined;
774
- isVisible?: string | boolean | undefined;
775
- dark?: boolean | undefined;
776
- light?: boolean | undefined;
777
- theme?: string | undefined;
778
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
779
- name: string;
780
- parent?: {
781
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
782
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
783
- allowDuplicate: boolean;
784
- autofocus: boolean;
785
- children: {
786
- [x: string]: any;
787
- allowDuplicate?: boolean | undefined;
788
- autofocus?: boolean | undefined;
789
- children?: any[] | undefined;
790
- componentId?: number | undefined;
791
- cssClass?: string | undefined;
792
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
793
- events?: {
794
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
795
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
799
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
800
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
801
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
802
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
803
- } | undefined;
804
- directives?: {
805
- [x: string]: {
806
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
807
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
811
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
812
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
813
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
815
- } | undefined;
816
- touch?: {
817
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
818
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
822
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
823
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
824
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
825
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
826
- } | undefined;
827
- } | undefined;
828
- isVisible?: string | boolean | undefined;
829
- dark?: boolean | undefined;
830
- light?: boolean | undefined;
831
- theme?: string | undefined;
832
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
833
- name: string;
834
- parent?: any | undefined;
835
- tabStop?: boolean | undefined;
836
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
837
- fillHeight?: boolean | undefined;
838
- }[];
839
- componentId: number;
840
- cssClass: string;
841
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
842
- events: {
843
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
844
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
845
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
846
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
847
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
848
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
849
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
850
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
851
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
852
- };
853
- directives: {
854
- [x: string]: {
855
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
856
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
857
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
858
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
862
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
863
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
864
- } | undefined;
865
- touch?: {
866
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
867
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
875
- } | undefined;
876
- };
877
- isVisible: string | boolean;
878
- dark: boolean;
879
- light: boolean;
880
- theme?: string | undefined;
881
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
882
- name: string;
883
- parent?: any | undefined;
884
- tabStop: boolean;
885
- userProperties: import("@zeedhi/core").IDictionary<any>;
886
- fillHeight: boolean;
887
- } | undefined;
888
- tabStop?: boolean | undefined;
889
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
890
- fillHeight?: boolean | undefined;
891
- }[];
892
- align?: string | undefined;
893
- justify?: string | undefined;
894
- height: string | number;
895
- minHeight: string | number;
896
- maxHeight: string | number;
897
- width: string | number;
898
- minWidth: string | number;
899
- maxWidth: string | number;
900
- events: {
901
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
902
- submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
903
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
904
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
905
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
906
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
907
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
908
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
909
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
910
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
911
- };
912
- submitFunction?: (() => void) | undefined;
913
- value: import("@zeedhi/core").IDictionary<any>;
914
- clearForm: () => void;
915
- registerInput: (component: import("@zeedhi/common").Input) => void;
916
- readonly childrenProps: {
917
- [x: string]: any;
918
- children?: {
919
- [x: string]: any;
920
- children?: any[] | undefined;
921
- component: string;
922
- allowDuplicate?: boolean | undefined;
923
- autofocus?: boolean | undefined;
924
- componentId?: number | undefined;
925
- cssClass?: string | undefined;
926
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
927
- events?: {
928
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
929
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
932
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
933
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
934
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
935
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
936
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
937
- } | undefined;
938
- directives?: {
939
- [x: string]: {
940
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
941
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
942
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
943
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
944
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
945
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
946
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
947
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
948
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
949
- } | undefined;
950
- touch?: {
951
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
952
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
958
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
959
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
960
- } | undefined;
961
- } | undefined;
962
- isVisible?: string | boolean | undefined;
963
- dark?: boolean | undefined;
964
- light?: boolean | undefined;
965
- theme?: string | undefined;
966
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
967
- name: string;
968
- parent?: {
969
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
970
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
971
- allowDuplicate: boolean;
972
- autofocus: boolean;
973
- children: {
974
- [x: string]: any;
975
- allowDuplicate?: boolean | undefined;
976
- autofocus?: boolean | undefined;
977
- children?: any[] | undefined;
978
- componentId?: number | undefined;
979
- cssClass?: string | undefined;
980
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
981
- events?: {
982
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
983
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
984
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
985
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
986
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
987
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
988
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
989
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
990
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
991
- } | undefined;
992
- directives?: {
993
- [x: string]: {
994
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
995
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
996
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
997
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
998
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
999
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1000
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1001
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1002
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1003
- } | undefined;
1004
- touch?: {
1005
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1006
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1009
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1010
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1011
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1012
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1013
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1014
- } | undefined;
1015
- } | undefined;
1016
- isVisible?: string | boolean | undefined;
1017
- dark?: boolean | undefined;
1018
- light?: boolean | undefined;
1019
- theme?: string | undefined;
1020
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1021
- name: string;
1022
- parent?: any | undefined;
1023
- tabStop?: boolean | undefined;
1024
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1025
- fillHeight?: boolean | undefined;
1026
- }[];
1027
- componentId: number;
1028
- cssClass: string;
1029
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1030
- events: {
1031
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1032
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1033
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1034
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
- };
1041
- directives: {
1042
- [x: string]: {
1043
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1044
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1045
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1046
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1047
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
- } | undefined;
1053
- touch?: {
1054
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1055
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1056
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1057
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1058
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1059
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
- } | undefined;
1064
- };
1065
- isVisible: string | boolean;
1066
- dark: boolean;
1067
- light: boolean;
1068
- theme?: string | undefined;
1069
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1070
- name: string;
1071
- parent?: any | undefined;
1072
- tabStop: boolean;
1073
- userProperties: import("@zeedhi/core").IDictionary<any>;
1074
- fillHeight: boolean;
1075
- } | undefined;
1076
- tabStop?: boolean | undefined;
1077
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1078
- fillHeight?: boolean | undefined;
1079
- }[] | undefined;
1080
- component: string;
1081
- allowDuplicate?: boolean | undefined;
1082
- autofocus?: boolean | undefined;
1083
- componentId?: number | undefined;
1084
- cssClass?: string | undefined;
1085
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1086
- events?: {
1087
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1088
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
- } | undefined;
1097
- directives?: {
1098
- [x: string]: {
1099
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1100
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
- } | undefined;
1109
- touch?: {
1110
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1111
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1113
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
- } | undefined;
1120
- } | undefined;
1121
- isVisible?: string | boolean | undefined;
1122
- dark?: boolean | undefined;
1123
- light?: boolean | undefined;
1124
- theme?: string | undefined;
1125
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1126
- name: string;
1127
- parent?: {
1128
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1129
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1130
- allowDuplicate: boolean;
1131
- autofocus: boolean;
1132
- children: {
1133
- [x: string]: any;
1134
- allowDuplicate?: boolean | undefined;
1135
- autofocus?: boolean | undefined;
1136
- children?: any[] | undefined;
1137
- componentId?: number | undefined;
1138
- cssClass?: string | undefined;
1139
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1140
- events?: {
1141
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1142
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1146
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1147
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1148
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1149
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1150
- } | undefined;
1151
- directives?: {
1152
- [x: string]: {
1153
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1154
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1158
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1159
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1160
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1161
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1162
- } | undefined;
1163
- touch?: {
1164
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1165
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1169
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1170
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1171
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1172
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1173
- } | undefined;
1174
- } | undefined;
1175
- isVisible?: string | boolean | undefined;
1176
- dark?: boolean | undefined;
1177
- light?: boolean | undefined;
1178
- theme?: string | undefined;
1179
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1180
- name: string;
1181
- parent?: any | undefined;
1182
- tabStop?: boolean | undefined;
1183
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1184
- fillHeight?: boolean | undefined;
1185
- }[];
1186
- componentId: number;
1187
- cssClass: string;
1188
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1189
- events: {
1190
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1191
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1192
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1193
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1194
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1195
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1198
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1199
- };
1200
- directives: {
1201
- [x: string]: {
1202
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1203
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1204
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1205
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1206
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1207
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
- } | undefined;
1212
- touch?: {
1213
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1214
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1217
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1218
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
- } | undefined;
1223
- };
1224
- isVisible: string | boolean;
1225
- dark: boolean;
1226
- light: boolean;
1227
- theme?: string | undefined;
1228
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1229
- name: string;
1230
- parent?: any | undefined;
1231
- tabStop: boolean;
1232
- userProperties: import("@zeedhi/core").IDictionary<any>;
1233
- fillHeight: boolean;
1234
- } | undefined;
1235
- tabStop?: boolean | undefined;
1236
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1237
- fillHeight?: boolean | undefined;
1238
- }[];
1239
- readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1240
- validate: () => Promise<{
1241
- valid: boolean;
1242
- }>;
1243
- setViewValidate: (viewValidate: () => Promise<{
1244
- valid: boolean;
1245
- errors: {
1246
- id: string | number;
1247
- errorMessages: string[];
1248
- }[];
1249
- }>) => void;
1250
- setViewResetValidation: (viewResetValidation: () => void) => void;
1251
- callSubmitEvent: (event: Event, element: any) => void;
1252
- onMounted: (element: any) => void;
1253
- submit: () => void;
1254
- resetValidation: () => void;
1255
- component: string;
1256
- allowDuplicate: boolean;
1257
- autofocus: boolean;
1258
- childrenInstances: any[];
1259
- cssClass: string;
1260
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1261
- directives: {
1262
- [x: string]: {
1263
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1264
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1265
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1266
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1267
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1268
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1269
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1270
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1271
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1272
- } | undefined;
1273
- touch?: {
1274
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1275
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1279
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1280
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1281
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1282
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1283
- } | undefined;
1284
- };
1285
- isVisible: boolean;
1286
- name: string;
1287
- dark: boolean;
1288
- light: boolean;
1289
- theme?: string | undefined;
1290
- fillHeight: boolean;
1291
- parent?: {
1292
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1293
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1294
- allowDuplicate: boolean;
1295
- autofocus: boolean;
1296
- children: {
1297
- [x: string]: any;
1298
- allowDuplicate?: boolean | undefined;
1299
- autofocus?: boolean | undefined;
1300
- children?: any[] | undefined;
1301
- componentId?: number | undefined;
1302
- cssClass?: string | undefined;
1303
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1304
- events?: {
1305
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1306
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1307
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1308
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1309
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1310
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1312
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1313
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1314
- } | undefined;
1315
- directives?: {
1316
- [x: string]: {
1317
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1318
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1319
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1320
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1321
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1322
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1323
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1324
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1325
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1326
- } | undefined;
1327
- touch?: {
1328
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1329
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1330
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1331
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1332
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1333
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1334
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1335
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1336
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1337
- } | undefined;
1338
- } | undefined;
1339
- isVisible?: string | boolean | undefined;
1340
- dark?: boolean | undefined;
1341
- light?: boolean | undefined;
1342
- theme?: string | undefined;
1343
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1344
- name: string;
1345
- parent?: any | undefined;
1346
- tabStop?: boolean | undefined;
1347
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1348
- fillHeight?: boolean | undefined;
1349
- }[];
1350
- componentId: number;
1351
- cssClass: string;
1352
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1353
- events: {
1354
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1355
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1356
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1357
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1358
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1359
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1360
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1361
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1362
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1363
- };
1364
- directives: {
1365
- [x: string]: {
1366
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1367
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1368
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1369
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1370
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1371
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1372
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1373
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1374
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1375
- } | undefined;
1376
- touch?: {
1377
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1378
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1379
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1380
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1381
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1382
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1383
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1384
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1385
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1386
- } | undefined;
1387
- };
1388
- isVisible: string | boolean;
1389
- dark: boolean;
1390
- light: boolean;
1391
- theme?: string | undefined;
1392
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1393
- name: string;
1394
- parent?: any | undefined;
1395
- tabStop: boolean;
1396
- userProperties: import("@zeedhi/core").IDictionary<any>;
1397
- fillHeight: boolean;
1398
- } | undefined;
1399
- componentId: number;
1400
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1401
- isFocused: boolean;
1402
- tabStop: boolean;
1403
- userProperties: import("@zeedhi/core").IDictionary<any>;
1404
- setViewFocus: (viewFocus: () => void) => void;
1405
- setFocus: () => void;
1406
- callEvent: (eventName: string, args: any) => boolean;
1407
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1408
- removeChild: (name: string) => void;
1409
- getChildInstance: <T_6>(name: string) => T_6;
1410
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1411
- onCreated: () => void;
1412
- onBeforeMount: () => void;
1413
- onBeforeDestroy: () => void;
1414
- onDestroyed: () => void;
1415
- click: (event?: Event | undefined, element?: any) => void;
1416
- focus: (event: Event, element: any) => void;
1417
- blur: (event: Event, element: any) => void;
1418
- mouseenter: (event?: Event | undefined, element?: any) => void;
1419
- mouseleave: (event?: Event | undefined, element?: any) => void;
1420
- mouseout: (event?: Event | undefined, element?: any) => void;
1421
- mouseover: (event?: Event | undefined, element?: any) => void;
1422
- } | undefined;
1423
- validate: () => Promise<string[]>;
1424
- setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1425
- setViewResetValidation: (viewResetValidation: () => void) => void;
1426
- resetValidation: () => void;
1427
- addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1428
- removeValidation: (name: string) => void;
1429
- clearValidations: () => void;
1430
- isValid: (value?: any) => boolean;
1431
- change: (event?: Event | undefined, element?: any) => void;
1432
- input: (event?: Event | undefined, element?: any) => void;
1433
- keyup: (event?: Event | undefined, element?: any) => void;
1434
- keydown: (event?: Event | undefined, element?: any) => void;
1435
- children: {
1436
- [x: string]: any;
1437
- children?: any[] | undefined;
1438
- component: string;
1439
- allowDuplicate?: boolean | undefined;
1440
- autofocus?: boolean | undefined;
1441
- componentId?: number | undefined;
1442
- cssClass?: string | undefined;
1443
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1444
- events?: {
1445
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1446
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1447
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1448
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1449
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1450
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1451
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1452
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1453
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1454
- } | undefined;
1455
- directives?: {
1456
- [x: string]: {
1457
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1458
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1459
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1460
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1461
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1462
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1463
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1464
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1465
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1466
- } | undefined;
1467
- touch?: {
1468
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1469
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1470
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1471
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1472
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1473
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1474
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1477
- } | undefined;
1478
- } | undefined;
1479
- isVisible?: string | boolean | undefined;
1480
- dark?: boolean | undefined;
1481
- light?: boolean | undefined;
1482
- theme?: string | undefined;
1483
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1484
- name: string;
1485
- parent?: {
1486
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1487
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1488
- allowDuplicate: boolean;
1489
- autofocus: boolean;
1490
- children: {
1491
- [x: string]: any;
1492
- allowDuplicate?: boolean | undefined;
1493
- autofocus?: boolean | undefined;
1494
- children?: any[] | undefined;
1495
- componentId?: number | undefined;
1496
- cssClass?: string | undefined;
1497
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1498
- events?: {
1499
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1500
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1501
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1502
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1503
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1504
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1505
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1506
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1507
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1508
- } | undefined;
1509
- directives?: {
1510
- [x: string]: {
1511
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1512
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1513
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1514
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1515
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1516
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1517
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1518
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1519
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1520
- } | undefined;
1521
- touch?: {
1522
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1523
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1524
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1525
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1526
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1527
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1528
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1529
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1530
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1531
- } | undefined;
1532
- } | undefined;
1533
- isVisible?: string | boolean | undefined;
1534
- dark?: boolean | undefined;
1535
- light?: boolean | undefined;
1536
- theme?: string | undefined;
1537
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1538
- name: string;
1539
- parent?: any | undefined;
1540
- tabStop?: boolean | undefined;
1541
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1542
- fillHeight?: boolean | undefined;
1543
- }[];
1544
- componentId: number;
1545
- cssClass: string;
1546
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1547
- events: {
1548
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1549
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1550
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1551
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1552
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1553
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1554
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1555
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1556
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1557
- };
1558
- directives: {
1559
- [x: string]: {
1560
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1561
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1562
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1563
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1564
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1565
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1566
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1567
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1568
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1569
- } | undefined;
1570
- touch?: {
1571
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1572
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1573
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1574
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1575
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1576
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1577
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1578
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1579
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1580
- } | undefined;
1581
- };
1582
- isVisible: string | boolean;
1583
- dark: boolean;
1584
- light: boolean;
1585
- theme?: string | undefined;
1586
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1587
- name: string;
1588
- parent?: any | undefined;
1589
- tabStop: boolean;
1590
- userProperties: import("@zeedhi/core").IDictionary<any>;
1591
- fillHeight: boolean;
1592
- } | undefined;
1593
- tabStop?: boolean | undefined;
1594
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1595
- fillHeight?: boolean | undefined;
1596
- }[];
1597
- component: string;
1598
- allowDuplicate: boolean;
1599
- autofocus: boolean;
1600
- childrenInstances: any[];
1601
- cssClass: string;
1602
- cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1603
- directives: {
1604
- [x: string]: {
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
- touch?: {
1616
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1617
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1618
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1619
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1620
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1621
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1622
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1623
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1624
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1625
- } | undefined;
1626
- };
1627
- isVisible: boolean;
1628
- name: string;
1629
- dark: boolean;
1630
- light: boolean;
1631
- theme?: string | undefined;
1632
- fillHeight: boolean;
1633
- parent?: {
1634
- addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1635
- getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1636
- allowDuplicate: boolean;
1637
- autofocus: boolean;
1638
- children: {
1639
- [x: string]: any;
1640
- allowDuplicate?: boolean | undefined;
1641
- autofocus?: boolean | undefined;
1642
- children?: any[] | undefined;
1643
- componentId?: number | undefined;
1644
- cssClass?: string | undefined;
1645
- cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1646
- events?: {
1647
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1648
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1649
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1650
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1651
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1652
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1653
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1654
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1655
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1656
- } | undefined;
1657
- directives?: {
1658
- [x: string]: {
1659
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1660
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1661
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1662
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1663
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1664
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1665
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1666
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1667
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1668
- } | undefined;
1669
- touch?: {
1670
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1671
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1672
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1673
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1674
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1675
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1676
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1677
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1678
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1679
- } | undefined;
1680
- } | undefined;
1681
- isVisible?: string | boolean | undefined;
1682
- dark?: boolean | undefined;
1683
- light?: boolean | undefined;
1684
- theme?: string | undefined;
1685
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1686
- name: string;
1687
- parent?: any | undefined;
1688
- tabStop?: boolean | undefined;
1689
- userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1690
- fillHeight?: boolean | undefined;
1691
- }[];
1692
- componentId: number;
1693
- cssClass: string;
1694
- cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1695
- events: {
1696
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1697
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1698
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1699
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1700
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1701
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1702
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1703
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1704
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1705
- };
1706
- directives: {
1707
- [x: string]: {
1708
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1709
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1710
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1711
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1712
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1713
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1714
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1715
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1716
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1717
- } | undefined;
1718
- touch?: {
1719
- [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1720
- blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1721
- click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1722
- focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1723
- onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1724
- onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1725
- onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1726
- onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1727
- onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1728
- } | undefined;
1729
- };
1730
- isVisible: string | boolean;
1731
- dark: boolean;
1732
- light: boolean;
1733
- theme?: string | undefined;
1734
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1735
- name: string;
1736
- parent?: any | undefined;
1737
- tabStop: boolean;
1738
- userProperties: import("@zeedhi/core").IDictionary<any>;
1739
- fillHeight: boolean;
1740
- } | undefined;
1741
- componentId: number;
1742
- keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1743
- isFocused: boolean;
1744
- tabStop: boolean;
1745
- userProperties: import("@zeedhi/core").IDictionary<any>;
1746
- setViewFocus: (viewFocus: () => void) => void;
1747
- setFocus: () => void;
1748
- callEvent: (eventName: string, args: any) => boolean;
1749
- addChild: (child: import("@zeedhi/common").IComponent) => void;
1750
- removeChild: (name: string) => void;
1751
- getChildInstance: <T_6>(name: string) => T_6;
1752
- addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1753
- onBeforeMount: () => void;
1754
- onMounted: (element: any) => void;
1755
- onBeforeDestroy: () => void;
1756
- onDestroyed: () => void;
1757
- click: (event?: Event | undefined, element?: any) => void;
1758
- focus: (event: Event, element: any) => void;
1759
- blur: (event: Event, element: any) => void;
1760
- mouseenter: (event?: Event | undefined, element?: any) => void;
1761
- mouseleave: (event?: Event | undefined, element?: any) => void;
1762
- mouseout: (event?: Event | undefined, element?: any) => void;
1763
- mouseover: (event?: Event | undefined, element?: any) => void;
1764
- };
1765
- 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>>;
1766
- click: (event: Event) => void;
1767
- focus: (event: Event) => void;
1768
- blur: (event: Event) => void;
1769
- mouseenter: (event: Event) => void;
1770
- mouseleave: (event: Event) => void;
1771
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1772
- maxValue: {
1773
- type: (StringConstructor | NumberConstructor)[];
1774
- default: undefined;
1775
- };
1776
- minValue: {
1777
- type: (StringConstructor | NumberConstructor)[];
1778
- default: undefined;
1779
- };
1780
- step: {
1781
- type: (StringConstructor | NumberConstructor)[];
1782
- default: number;
1783
- };
1784
- align: {
1785
- type: StringConstructor;
1786
- default: string;
1787
- };
1788
- mask: {
1789
- type: ObjectConstructor;
1790
- default: () => import("@zeedhi/core").IDictionary<any>;
1791
- };
1792
- value: {
1793
- type: (StringConstructor | NumberConstructor)[];
1794
- default: null;
1795
- };
1796
- appendIcon: {
1797
- type: StringConstructor;
1798
- default: string;
1799
- };
1800
- appendOuterIcon: {
1801
- type: StringConstructor;
1802
- default: string;
1803
- };
1804
- prefix: {
1805
- type: StringConstructor;
1806
- default: string;
1807
- };
1808
- prependIcon: {
1809
- type: StringConstructor;
1810
- default: string;
1811
- };
1812
- prependOuterIcon: {
1813
- type: StringConstructor;
1814
- default: string;
1815
- };
1816
- suffix: {
1817
- type: StringConstructor;
1818
- default: string;
1819
- };
1820
- valueWithPrefix: {
1821
- type: (StringConstructor | BooleanConstructor)[];
1822
- default: boolean;
1823
- };
1824
- valueWithSuffix: {
1825
- type: (StringConstructor | BooleanConstructor)[];
1826
- default: boolean;
1827
- };
1828
- type: {
1829
- type: StringConstructor;
1830
- default: string;
1831
- };
1832
- disableMaska: {
1833
- type: BooleanConstructor;
1834
- default: boolean;
1835
- };
1836
- width: {
1837
- type: (StringConstructor | NumberConstructor)[];
1838
- };
1839
- minWidth: {
1840
- type: (StringConstructor | NumberConstructor)[];
1841
- default: string;
1842
- };
1843
- maxWidth: {
1844
- type: (StringConstructor | NumberConstructor)[];
1845
- default: string;
1846
- };
1847
- fillHeight: {
1848
- type: (StringConstructor | BooleanConstructor)[];
1849
- default: boolean;
1850
- };
1851
- height: {
1852
- type: (StringConstructor | NumberConstructor)[];
1853
- };
1854
- minHeight: {
1855
- type: (StringConstructor | NumberConstructor)[];
1856
- default: string;
1857
- };
1858
- maxHeight: {
1859
- type: (StringConstructor | NumberConstructor)[];
1860
- default: string;
1861
- };
1862
- alwaysShowError: {
1863
- type: (StringConstructor | BooleanConstructor)[];
1864
- default: boolean;
1865
- };
1866
- autofill: {
1867
- type: (StringConstructor | BooleanConstructor)[];
1868
- default: boolean;
1869
- };
1870
- clearable: {
1871
- type: (StringConstructor | BooleanConstructor)[];
1872
- default: boolean;
1873
- };
1874
- color: {
1875
- type: StringConstructor;
1876
- default: string;
1877
- };
1878
- dense: {
1879
- type: (StringConstructor | BooleanConstructor)[];
1880
- default: boolean;
1881
- };
1882
- disabled: {
1883
- type: (StringConstructor | BooleanConstructor)[];
1884
- default: boolean;
1885
- };
1886
- hint: {
1887
- type: StringConstructor;
1888
- default: string;
1889
- };
1890
- label: {
1891
- type: StringConstructor;
1892
- default: string;
1893
- };
1894
- maxLength: {
1895
- type: (StringConstructor | NumberConstructor)[];
1896
- default: undefined;
1897
- };
1898
- persistentHint: {
1899
- type: (StringConstructor | BooleanConstructor)[];
1900
- default: boolean;
1901
- };
1902
- placeholder: {
1903
- type: StringConstructor;
1904
- default: string;
1905
- };
1906
- readonly: {
1907
- type: (StringConstructor | BooleanConstructor)[];
1908
- default: boolean;
1909
- };
1910
- autoHintDetails: {
1911
- type: (StringConstructor | BooleanConstructor)[];
1912
- default: boolean;
1913
- };
1914
- reverse: {
1915
- type: (StringConstructor | BooleanConstructor)[];
1916
- default: boolean;
1917
- };
1918
- showBorder: {
1919
- type: (StringConstructor | BooleanConstructor)[];
1920
- default: boolean;
1921
- };
1922
- showHelper: {
1923
- type: (StringConstructor | BooleanConstructor)[];
1924
- default: boolean;
1925
- };
1926
- showLabel: {
1927
- type: (StringConstructor | BooleanConstructor)[];
1928
- default: boolean;
1929
- };
1930
- storePath: {
1931
- type: StringConstructor;
1932
- default: string;
1933
- };
1934
- validations: {
1935
- type: (StringConstructor | ObjectConstructor)[];
1936
- default: {};
1937
- };
1938
- children: {
1939
- type: (StringConstructor | {
1940
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1941
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1942
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1943
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1944
- isArray(arg: any): arg is any[];
1945
- readonly prototype: any[];
1946
- from<T>(arrayLike: ArrayLike<T>): T[];
1947
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1948
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1949
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1950
- of<T_4>(...items: T_4[]): T_4[];
1951
- readonly [Symbol.species]: ArrayConstructor;
1952
- })[];
1953
- default(): never[];
1954
- };
1955
- component: {
1956
- type: StringConstructor;
1957
- };
1958
- allowDuplicate: {
1959
- type: (StringConstructor | BooleanConstructor)[];
1960
- default: boolean;
1961
- };
1962
- autofocus: {
1963
- type: (StringConstructor | BooleanConstructor)[];
1964
- default: boolean;
1965
- };
1966
- cssClass: {
1967
- type: StringConstructor;
1968
- default: string;
1969
- };
1970
- cssStyle: {
1971
- type: (StringConstructor | (() => import("vue").StyleValue))[];
1972
- default: string;
1973
- };
1974
- dark: {
1975
- type: (StringConstructor | BooleanConstructor)[];
1976
- default: boolean;
1977
- };
1978
- directives: {
1979
- type: ObjectConstructor;
1980
- default(): {};
1981
- };
1982
- events: {
1983
- type: ObjectConstructor;
1984
- default(): {};
1985
- };
1986
- instanceObject: {
1987
- type: ObjectConstructor;
1988
- };
1989
- isVisible: {
1990
- type: (StringConstructor | BooleanConstructor)[];
1991
- default: boolean;
1992
- };
1993
- keyMap: {
1994
- type: ObjectConstructor;
1995
- default(): {};
1996
- };
1997
- light: {
1998
- type: (StringConstructor | BooleanConstructor)[];
1999
- default: boolean;
2000
- };
2001
- name: {
2002
- type: StringConstructor;
2003
- required: true;
2004
- };
2005
- parent: {
2006
- type: ObjectConstructor;
2007
- };
2008
- tabStop: {
2009
- type: (StringConstructor | BooleanConstructor)[];
2010
- default: boolean;
2011
- };
2012
- theme: {
2013
- type: StringConstructor;
2014
- };
2015
- }>> & Readonly<{}>, {
2016
- reverse: string | boolean;
2017
- allowDuplicate: string | boolean;
2018
- type: string;
2019
- autofocus: string | boolean;
2020
- children: string | import("@zeedhi/common").IComponentRender[];
2021
- cssClass: string;
2022
- cssStyle: import("vue").StyleValue;
2023
- dark: string | boolean;
2024
- directives: Record<string, any>;
2025
- events: Record<string, any>;
2026
- isVisible: string | boolean;
2027
- keyMap: Record<string, any>;
2028
- light: string | boolean;
2029
- tabStop: string | boolean;
2030
- align: string;
2031
- alwaysShowError: string | boolean;
2032
- autofill: string | boolean;
2033
- clearable: string | boolean;
2034
- color: string;
2035
- dense: string | boolean;
2036
- disabled: string | boolean;
2037
- hint: string;
2038
- label: string;
2039
- mask: Record<string, any>;
2040
- maxLength: string | number;
2041
- persistentHint: string | boolean;
2042
- placeholder: string;
2043
- readonly: string | boolean;
2044
- autoHintDetails: string | boolean;
2045
- showBorder: string | boolean;
2046
- showHelper: string | boolean;
2047
- showLabel: string | boolean;
2048
- storePath: string;
2049
- validations: string | Record<string, any>;
2050
- value: string | number;
2051
- minWidth: string | number;
2052
- maxWidth: string | number;
2053
- fillHeight: string | boolean;
2054
- minHeight: string | number;
2055
- maxHeight: string | number;
2056
- appendIcon: string;
2057
- appendOuterIcon: string;
2058
- prefix: string;
2059
- prependIcon: string;
2060
- prependOuterIcon: string;
2061
- suffix: string;
2062
- valueWithPrefix: string | boolean;
2063
- valueWithSuffix: string | boolean;
2064
- disableMaska: boolean;
2065
- maxValue: string | number;
2066
- minValue: string | number;
2067
- step: string | number;
2068
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2069
- export default _default;
1
+ export declare const ZdIncrementProps: {
2
+ maxValue: {
3
+ type: (NumberConstructor | StringConstructor)[];
4
+ default: undefined;
5
+ };
6
+ minValue: {
7
+ type: (NumberConstructor | StringConstructor)[];
8
+ default: undefined;
9
+ };
10
+ step: {
11
+ type: (NumberConstructor | StringConstructor)[];
12
+ default: number;
13
+ };
14
+ align: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ mask: {
19
+ type: ObjectConstructor;
20
+ default: () => import("@zeedhi/core").IDictionary<any>;
21
+ };
22
+ value: {
23
+ type: (NumberConstructor | StringConstructor)[];
24
+ default: null;
25
+ };
26
+ appendIcon: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ appendOuterIcon: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ prefix: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ prependIcon: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ prependOuterIcon: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ suffix: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ valueWithPrefix: {
51
+ type: (BooleanConstructor | StringConstructor)[];
52
+ default: boolean;
53
+ };
54
+ valueWithSuffix: {
55
+ type: (BooleanConstructor | StringConstructor)[];
56
+ default: boolean;
57
+ };
58
+ type: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ };
62
+ disableMaska: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ inputMode: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ };
70
+ width: {
71
+ type: (NumberConstructor | StringConstructor)[];
72
+ };
73
+ minWidth: {
74
+ type: (NumberConstructor | StringConstructor)[];
75
+ default: string;
76
+ };
77
+ maxWidth: {
78
+ type: (NumberConstructor | StringConstructor)[];
79
+ default: string;
80
+ };
81
+ fillHeight: {
82
+ type: (BooleanConstructor | StringConstructor)[];
83
+ default: boolean;
84
+ };
85
+ height: {
86
+ type: (NumberConstructor | StringConstructor)[];
87
+ };
88
+ minHeight: {
89
+ type: (NumberConstructor | StringConstructor)[];
90
+ default: string;
91
+ };
92
+ maxHeight: {
93
+ type: (NumberConstructor | StringConstructor)[];
94
+ default: string;
95
+ };
96
+ alwaysShowError: {
97
+ type: (BooleanConstructor | StringConstructor)[];
98
+ default: boolean;
99
+ };
100
+ autofill: {
101
+ type: (BooleanConstructor | StringConstructor)[];
102
+ default: boolean;
103
+ };
104
+ clearable: {
105
+ type: (BooleanConstructor | StringConstructor)[];
106
+ default: boolean;
107
+ };
108
+ color: {
109
+ type: StringConstructor;
110
+ default: string;
111
+ };
112
+ dense: {
113
+ type: (BooleanConstructor | StringConstructor)[];
114
+ default: boolean;
115
+ };
116
+ disabled: {
117
+ type: (BooleanConstructor | StringConstructor)[];
118
+ default: boolean;
119
+ };
120
+ hint: {
121
+ type: StringConstructor;
122
+ default: string;
123
+ };
124
+ label: {
125
+ type: StringConstructor;
126
+ default: string;
127
+ };
128
+ maxLength: {
129
+ type: (NumberConstructor | StringConstructor)[];
130
+ default: undefined;
131
+ };
132
+ persistentHint: {
133
+ type: (BooleanConstructor | StringConstructor)[];
134
+ default: boolean;
135
+ };
136
+ placeholder: {
137
+ type: StringConstructor;
138
+ default: string;
139
+ };
140
+ readonly: {
141
+ type: (BooleanConstructor | StringConstructor)[];
142
+ default: boolean;
143
+ };
144
+ autoHintDetails: {
145
+ type: (BooleanConstructor | StringConstructor)[];
146
+ default: boolean;
147
+ };
148
+ reverse: {
149
+ type: (BooleanConstructor | StringConstructor)[];
150
+ default: boolean;
151
+ };
152
+ showBorder: {
153
+ type: (BooleanConstructor | StringConstructor)[];
154
+ default: boolean;
155
+ };
156
+ showHelper: {
157
+ type: (BooleanConstructor | StringConstructor)[];
158
+ default: boolean;
159
+ };
160
+ showLabel: {
161
+ type: (BooleanConstructor | StringConstructor)[];
162
+ default: boolean;
163
+ };
164
+ storePath: {
165
+ type: StringConstructor;
166
+ default: string;
167
+ };
168
+ validations: {
169
+ type: (ObjectConstructor | StringConstructor)[];
170
+ default: {};
171
+ };
172
+ grid: {
173
+ default: {};
174
+ type: ObjectConstructor;
175
+ };
176
+ children: {
177
+ type: (StringConstructor | {
178
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
179
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
180
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
181
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
182
+ isArray(arg: any): arg is any[];
183
+ readonly prototype: any[];
184
+ from<T>(arrayLike: ArrayLike<T>): T[];
185
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
186
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
187
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
188
+ of<T_4>(...items: T_4[]): T_4[];
189
+ readonly [Symbol.species]: ArrayConstructor;
190
+ })[];
191
+ default(): never[];
192
+ };
193
+ component: {
194
+ type: StringConstructor;
195
+ };
196
+ allowDuplicate: {
197
+ type: (BooleanConstructor | StringConstructor)[];
198
+ default: boolean;
199
+ };
200
+ autofocus: {
201
+ type: (BooleanConstructor | StringConstructor)[];
202
+ default: boolean;
203
+ };
204
+ cssClass: {
205
+ type: StringConstructor;
206
+ default: string;
207
+ };
208
+ cssStyle: {
209
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
210
+ default: string;
211
+ };
212
+ dark: {
213
+ type: (BooleanConstructor | StringConstructor)[];
214
+ default: boolean;
215
+ };
216
+ directives: {
217
+ type: ObjectConstructor;
218
+ default(): {};
219
+ };
220
+ events: {
221
+ type: ObjectConstructor;
222
+ default(): {};
223
+ };
224
+ instanceObject: {
225
+ type: ObjectConstructor;
226
+ };
227
+ isVisible: {
228
+ type: (BooleanConstructor | StringConstructor)[];
229
+ default: boolean;
230
+ };
231
+ keyMap: {
232
+ type: ObjectConstructor;
233
+ default(): {};
234
+ };
235
+ light: {
236
+ type: (BooleanConstructor | StringConstructor)[];
237
+ default: boolean;
238
+ };
239
+ name: {
240
+ type: StringConstructor;
241
+ required: true;
242
+ };
243
+ parent: {
244
+ type: ObjectConstructor;
245
+ };
246
+ tabStop: {
247
+ type: (BooleanConstructor | StringConstructor)[];
248
+ default: boolean;
249
+ };
250
+ theme: {
251
+ type: StringConstructor;
252
+ };
253
+ };
254
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
255
+ maxValue: {
256
+ type: (NumberConstructor | StringConstructor)[];
257
+ default: undefined;
258
+ };
259
+ minValue: {
260
+ type: (NumberConstructor | StringConstructor)[];
261
+ default: undefined;
262
+ };
263
+ step: {
264
+ type: (NumberConstructor | StringConstructor)[];
265
+ default: number;
266
+ };
267
+ align: {
268
+ type: StringConstructor;
269
+ default: string;
270
+ };
271
+ mask: {
272
+ type: ObjectConstructor;
273
+ default: () => import("@zeedhi/core").IDictionary<any>;
274
+ };
275
+ value: {
276
+ type: (NumberConstructor | StringConstructor)[];
277
+ default: null;
278
+ };
279
+ appendIcon: {
280
+ type: StringConstructor;
281
+ default: string;
282
+ };
283
+ appendOuterIcon: {
284
+ type: StringConstructor;
285
+ default: string;
286
+ };
287
+ prefix: {
288
+ type: StringConstructor;
289
+ default: string;
290
+ };
291
+ prependIcon: {
292
+ type: StringConstructor;
293
+ default: string;
294
+ };
295
+ prependOuterIcon: {
296
+ type: StringConstructor;
297
+ default: string;
298
+ };
299
+ suffix: {
300
+ type: StringConstructor;
301
+ default: string;
302
+ };
303
+ valueWithPrefix: {
304
+ type: (BooleanConstructor | StringConstructor)[];
305
+ default: boolean;
306
+ };
307
+ valueWithSuffix: {
308
+ type: (BooleanConstructor | StringConstructor)[];
309
+ default: boolean;
310
+ };
311
+ type: {
312
+ type: StringConstructor;
313
+ default: string;
314
+ };
315
+ disableMaska: {
316
+ type: BooleanConstructor;
317
+ default: boolean;
318
+ };
319
+ inputMode: {
320
+ type: StringConstructor;
321
+ default: string;
322
+ };
323
+ width: {
324
+ type: (NumberConstructor | StringConstructor)[];
325
+ };
326
+ minWidth: {
327
+ type: (NumberConstructor | StringConstructor)[];
328
+ default: string;
329
+ };
330
+ maxWidth: {
331
+ type: (NumberConstructor | StringConstructor)[];
332
+ default: string;
333
+ };
334
+ fillHeight: {
335
+ type: (BooleanConstructor | StringConstructor)[];
336
+ default: boolean;
337
+ };
338
+ height: {
339
+ type: (NumberConstructor | StringConstructor)[];
340
+ };
341
+ minHeight: {
342
+ type: (NumberConstructor | StringConstructor)[];
343
+ default: string;
344
+ };
345
+ maxHeight: {
346
+ type: (NumberConstructor | StringConstructor)[];
347
+ default: string;
348
+ };
349
+ alwaysShowError: {
350
+ type: (BooleanConstructor | StringConstructor)[];
351
+ default: boolean;
352
+ };
353
+ autofill: {
354
+ type: (BooleanConstructor | StringConstructor)[];
355
+ default: boolean;
356
+ };
357
+ clearable: {
358
+ type: (BooleanConstructor | StringConstructor)[];
359
+ default: boolean;
360
+ };
361
+ color: {
362
+ type: StringConstructor;
363
+ default: string;
364
+ };
365
+ dense: {
366
+ type: (BooleanConstructor | StringConstructor)[];
367
+ default: boolean;
368
+ };
369
+ disabled: {
370
+ type: (BooleanConstructor | StringConstructor)[];
371
+ default: boolean;
372
+ };
373
+ hint: {
374
+ type: StringConstructor;
375
+ default: string;
376
+ };
377
+ label: {
378
+ type: StringConstructor;
379
+ default: string;
380
+ };
381
+ maxLength: {
382
+ type: (NumberConstructor | StringConstructor)[];
383
+ default: undefined;
384
+ };
385
+ persistentHint: {
386
+ type: (BooleanConstructor | StringConstructor)[];
387
+ default: boolean;
388
+ };
389
+ placeholder: {
390
+ type: StringConstructor;
391
+ default: string;
392
+ };
393
+ readonly: {
394
+ type: (BooleanConstructor | StringConstructor)[];
395
+ default: boolean;
396
+ };
397
+ autoHintDetails: {
398
+ type: (BooleanConstructor | StringConstructor)[];
399
+ default: boolean;
400
+ };
401
+ reverse: {
402
+ type: (BooleanConstructor | StringConstructor)[];
403
+ default: boolean;
404
+ };
405
+ showBorder: {
406
+ type: (BooleanConstructor | StringConstructor)[];
407
+ default: boolean;
408
+ };
409
+ showHelper: {
410
+ type: (BooleanConstructor | StringConstructor)[];
411
+ default: boolean;
412
+ };
413
+ showLabel: {
414
+ type: (BooleanConstructor | StringConstructor)[];
415
+ default: boolean;
416
+ };
417
+ storePath: {
418
+ type: StringConstructor;
419
+ default: string;
420
+ };
421
+ validations: {
422
+ type: (ObjectConstructor | StringConstructor)[];
423
+ default: {};
424
+ };
425
+ grid: {
426
+ default: {};
427
+ type: ObjectConstructor;
428
+ };
429
+ children: {
430
+ type: (StringConstructor | {
431
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
432
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
433
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
434
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
435
+ isArray(arg: any): arg is any[];
436
+ readonly prototype: any[];
437
+ from<T>(arrayLike: ArrayLike<T>): T[];
438
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
439
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
440
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
441
+ of<T_4>(...items: T_4[]): T_4[];
442
+ readonly [Symbol.species]: ArrayConstructor;
443
+ })[];
444
+ default(): never[];
445
+ };
446
+ component: {
447
+ type: StringConstructor;
448
+ };
449
+ allowDuplicate: {
450
+ type: (BooleanConstructor | StringConstructor)[];
451
+ default: boolean;
452
+ };
453
+ autofocus: {
454
+ type: (BooleanConstructor | StringConstructor)[];
455
+ default: boolean;
456
+ };
457
+ cssClass: {
458
+ type: StringConstructor;
459
+ default: string;
460
+ };
461
+ cssStyle: {
462
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
463
+ default: string;
464
+ };
465
+ dark: {
466
+ type: (BooleanConstructor | StringConstructor)[];
467
+ default: boolean;
468
+ };
469
+ directives: {
470
+ type: ObjectConstructor;
471
+ default(): {};
472
+ };
473
+ events: {
474
+ type: ObjectConstructor;
475
+ default(): {};
476
+ };
477
+ instanceObject: {
478
+ type: ObjectConstructor;
479
+ };
480
+ isVisible: {
481
+ type: (BooleanConstructor | StringConstructor)[];
482
+ default: boolean;
483
+ };
484
+ keyMap: {
485
+ type: ObjectConstructor;
486
+ default(): {};
487
+ };
488
+ light: {
489
+ type: (BooleanConstructor | StringConstructor)[];
490
+ default: boolean;
491
+ };
492
+ name: {
493
+ type: StringConstructor;
494
+ required: true;
495
+ };
496
+ parent: {
497
+ type: ObjectConstructor;
498
+ };
499
+ tabStop: {
500
+ type: (BooleanConstructor | StringConstructor)[];
501
+ default: boolean;
502
+ };
503
+ theme: {
504
+ type: StringConstructor;
505
+ };
506
+ }>, {
507
+ instance: {
508
+ align: string;
509
+ appendIcon: string;
510
+ maxValue?: number | undefined;
511
+ minValue?: number | undefined;
512
+ prependIcon: string;
513
+ step: number;
514
+ minusClick: (event: Event, element: any) => void;
515
+ plusClick: (event: Event, element: any) => void;
516
+ increment: () => void;
517
+ decrement: () => void;
518
+ mask: any;
519
+ autoNumericObj: any;
520
+ validateMask: () => void;
521
+ value: any;
522
+ displayValue: any;
523
+ formatter: (value: any) => string;
524
+ parser: (value: any) => any;
525
+ appendOuterIcon: string;
526
+ prefix: string;
527
+ prependOuterIcon: string;
528
+ suffix: string;
529
+ type: string;
530
+ valueWithPrefix: boolean;
531
+ valueWithSuffix: boolean;
532
+ inputMode?: string | undefined;
533
+ onCreated: () => void;
534
+ appendIconClick: (event: Event, element: any) => void;
535
+ appendOuterIconClick: (event: Event, element: any) => void;
536
+ prependIconClick: (event: Event, element: any) => void;
537
+ prependOuterIconClick: (event: Event, element: any) => void;
538
+ getMask: () => any;
539
+ alwaysShowError: boolean;
540
+ autofill: boolean;
541
+ clearable: boolean;
542
+ color: string;
543
+ dense: boolean;
544
+ disabled: boolean;
545
+ events: {
546
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
547
+ change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
548
+ input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
549
+ keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
550
+ keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
551
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
552
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
553
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
554
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
555
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
556
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
557
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
558
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
559
+ };
560
+ hint: string;
561
+ label: string;
562
+ maxLength: number;
563
+ persistentHint: boolean;
564
+ placeholder: string;
565
+ readonly: boolean;
566
+ reverse: boolean;
567
+ rules: ((value?: any) => string | boolean)[];
568
+ showBorder: boolean;
569
+ showHelper: boolean;
570
+ showLabel: boolean;
571
+ autoHintDetails: boolean;
572
+ storePath: string;
573
+ validations: import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<string | number>>;
574
+ formParent?: {
575
+ children: {
576
+ [x: string]: any;
577
+ grid?: {
578
+ cols?: string | undefined;
579
+ lg?: string | undefined;
580
+ md?: string | undefined;
581
+ sm?: string | undefined;
582
+ xl?: string | undefined;
583
+ xxl?: string | undefined;
584
+ offset?: string | undefined;
585
+ 'offset-lg'?: string | undefined;
586
+ 'offset-md'?: string | undefined;
587
+ 'offset-sm'?: string | undefined;
588
+ 'offset-xl'?: string | undefined;
589
+ 'offset-xxl'?: string | undefined;
590
+ } | undefined;
591
+ children?: {
592
+ [x: string]: any;
593
+ children?: any[] | undefined;
594
+ component: string;
595
+ allowDuplicate?: boolean | undefined;
596
+ autofocus?: boolean | undefined;
597
+ componentId?: number | undefined;
598
+ cssClass?: string | undefined;
599
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
600
+ events?: {
601
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
602
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
603
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
604
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
605
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
606
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
607
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
608
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
609
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
610
+ } | undefined;
611
+ directives?: {
612
+ [x: string]: {
613
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
614
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
615
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
616
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
617
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
618
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
619
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
620
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
621
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
622
+ } | undefined;
623
+ touch?: {
624
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
625
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
626
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
627
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
628
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
629
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
630
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
631
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
632
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
633
+ } | undefined;
634
+ } | undefined;
635
+ isVisible?: string | boolean | undefined;
636
+ dark?: boolean | undefined;
637
+ light?: boolean | undefined;
638
+ theme?: string | undefined;
639
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
640
+ name: string;
641
+ parent?: {
642
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
643
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
644
+ allowDuplicate: boolean;
645
+ autofocus: boolean;
646
+ children: {
647
+ [x: string]: any;
648
+ allowDuplicate?: boolean | undefined;
649
+ autofocus?: boolean | undefined;
650
+ children?: any[] | undefined;
651
+ componentId?: number | undefined;
652
+ cssClass?: string | undefined;
653
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
654
+ events?: {
655
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
656
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
657
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
658
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
659
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
660
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
661
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
662
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
663
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
664
+ } | undefined;
665
+ directives?: {
666
+ [x: string]: {
667
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
668
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
669
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
670
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
671
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
672
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
673
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
674
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
675
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
676
+ } | undefined;
677
+ touch?: {
678
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
679
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
680
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
681
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
682
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
683
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
684
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
685
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
686
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
687
+ } | undefined;
688
+ } | undefined;
689
+ isVisible?: string | boolean | undefined;
690
+ dark?: boolean | undefined;
691
+ light?: boolean | undefined;
692
+ theme?: string | undefined;
693
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
694
+ name: string;
695
+ parent?: any | undefined;
696
+ tabStop?: boolean | undefined;
697
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
698
+ fillHeight?: boolean | undefined;
699
+ }[];
700
+ componentId: number;
701
+ cssClass: string;
702
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
703
+ events: {
704
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
705
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
708
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
709
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
710
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ };
714
+ directives: {
715
+ [x: string]: {
716
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
717
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
719
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
720
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
721
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
722
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
723
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
724
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
725
+ } | undefined;
726
+ touch?: {
727
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
728
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
729
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
730
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
731
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
732
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
733
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
734
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
735
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
736
+ } | undefined;
737
+ };
738
+ isVisible: string | boolean;
739
+ dark: boolean;
740
+ light: boolean;
741
+ theme?: string | undefined;
742
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
743
+ name: string;
744
+ parent?: any | undefined;
745
+ tabStop: boolean;
746
+ userProperties: import("@zeedhi/core").IDictionary<any>;
747
+ fillHeight: boolean;
748
+ } | undefined;
749
+ tabStop?: boolean | undefined;
750
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
751
+ fillHeight?: boolean | undefined;
752
+ }[] | undefined;
753
+ component: string;
754
+ allowDuplicate?: boolean | undefined;
755
+ autofocus?: boolean | undefined;
756
+ componentId?: number | undefined;
757
+ cssClass?: string | undefined;
758
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
759
+ events?: {
760
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
761
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
762
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
763
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
764
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ } | undefined;
770
+ directives?: {
771
+ [x: string]: {
772
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
773
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
774
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
775
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
776
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
777
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
778
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
779
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
780
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
781
+ } | undefined;
782
+ touch?: {
783
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
784
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
785
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
786
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
787
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
788
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
789
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
790
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
+ } | undefined;
793
+ } | undefined;
794
+ isVisible?: string | boolean | undefined;
795
+ dark?: boolean | undefined;
796
+ light?: boolean | undefined;
797
+ theme?: string | undefined;
798
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
799
+ name: string;
800
+ parent?: {
801
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
802
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
803
+ allowDuplicate: boolean;
804
+ autofocus: boolean;
805
+ children: {
806
+ [x: string]: any;
807
+ allowDuplicate?: boolean | undefined;
808
+ autofocus?: boolean | undefined;
809
+ children?: any[] | undefined;
810
+ componentId?: number | undefined;
811
+ cssClass?: string | undefined;
812
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
813
+ events?: {
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
+ directives?: {
825
+ [x: string]: {
826
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
827
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
828
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
829
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
830
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
831
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
832
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
833
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
834
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
835
+ } | undefined;
836
+ touch?: {
837
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
838
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
839
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
840
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
841
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
842
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
843
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
844
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
845
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
846
+ } | undefined;
847
+ } | undefined;
848
+ isVisible?: string | boolean | undefined;
849
+ dark?: boolean | undefined;
850
+ light?: boolean | undefined;
851
+ theme?: string | undefined;
852
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
853
+ name: string;
854
+ parent?: any | undefined;
855
+ tabStop?: boolean | undefined;
856
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
857
+ fillHeight?: boolean | undefined;
858
+ }[];
859
+ componentId: number;
860
+ cssClass: string;
861
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
862
+ events: {
863
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
864
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
865
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
866
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
867
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
868
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
869
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
+ };
873
+ directives: {
874
+ [x: string]: {
875
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
876
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
878
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
879
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
880
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
881
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
882
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
883
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
884
+ } | undefined;
885
+ touch?: {
886
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
887
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
888
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
889
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
890
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
891
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
892
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
893
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
894
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
895
+ } | undefined;
896
+ };
897
+ isVisible: string | boolean;
898
+ dark: boolean;
899
+ light: boolean;
900
+ theme?: string | undefined;
901
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
902
+ name: string;
903
+ parent?: any | undefined;
904
+ tabStop: boolean;
905
+ userProperties: import("@zeedhi/core").IDictionary<any>;
906
+ fillHeight: boolean;
907
+ } | undefined;
908
+ tabStop?: boolean | undefined;
909
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
910
+ fillHeight?: boolean | undefined;
911
+ }[];
912
+ align?: string | undefined;
913
+ justify?: string | undefined;
914
+ height: string | number;
915
+ minHeight: string | number;
916
+ maxHeight: string | number;
917
+ width: string | number;
918
+ minWidth: string | number;
919
+ maxWidth: string | number;
920
+ events: {
921
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
922
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
923
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
924
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
925
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
926
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
927
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
928
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
929
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
930
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
931
+ };
932
+ submitFunction?: (() => void) | undefined;
933
+ value: import("@zeedhi/core").IDictionary<any>;
934
+ clearForm: () => void;
935
+ registerInput: (component: import("@zeedhi/common").Input) => void;
936
+ readonly childrenProps: {
937
+ [x: string]: any;
938
+ children?: {
939
+ [x: string]: any;
940
+ children?: any[] | undefined;
941
+ component: string;
942
+ allowDuplicate?: boolean | undefined;
943
+ autofocus?: boolean | undefined;
944
+ componentId?: number | undefined;
945
+ cssClass?: string | undefined;
946
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
947
+ events?: {
948
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
949
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
950
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
952
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ } | undefined;
958
+ directives?: {
959
+ [x: string]: {
960
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
961
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
966
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
967
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
968
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
969
+ } | undefined;
970
+ touch?: {
971
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
972
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
978
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
+ } | undefined;
981
+ } | undefined;
982
+ isVisible?: string | boolean | undefined;
983
+ dark?: boolean | undefined;
984
+ light?: boolean | undefined;
985
+ theme?: string | undefined;
986
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
987
+ name: string;
988
+ parent?: {
989
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
990
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
991
+ allowDuplicate: boolean;
992
+ autofocus: boolean;
993
+ children: {
994
+ [x: string]: any;
995
+ allowDuplicate?: boolean | undefined;
996
+ autofocus?: boolean | undefined;
997
+ children?: any[] | undefined;
998
+ componentId?: number | undefined;
999
+ cssClass?: string | undefined;
1000
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1001
+ events?: {
1002
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1003
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1004
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1005
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1006
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1007
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1008
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1009
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1010
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1011
+ } | undefined;
1012
+ directives?: {
1013
+ [x: string]: {
1014
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1015
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1016
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1017
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1018
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1019
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1020
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1021
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1022
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1023
+ } | undefined;
1024
+ touch?: {
1025
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1026
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1027
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1028
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1029
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1030
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1031
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1032
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1033
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1034
+ } | undefined;
1035
+ } | undefined;
1036
+ isVisible?: string | boolean | undefined;
1037
+ dark?: boolean | undefined;
1038
+ light?: boolean | undefined;
1039
+ theme?: string | undefined;
1040
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1041
+ name: string;
1042
+ parent?: any | undefined;
1043
+ tabStop?: boolean | undefined;
1044
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1045
+ fillHeight?: boolean | undefined;
1046
+ }[];
1047
+ componentId: number;
1048
+ cssClass: string;
1049
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1050
+ events: {
1051
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1052
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1055
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1056
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1057
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1058
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1059
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
+ };
1061
+ directives: {
1062
+ [x: string]: {
1063
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1064
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1066
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1067
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1068
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1069
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1070
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1071
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1072
+ } | undefined;
1073
+ touch?: {
1074
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1075
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1076
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1077
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1078
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1079
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1080
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1081
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1082
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1083
+ } | undefined;
1084
+ };
1085
+ isVisible: string | boolean;
1086
+ dark: boolean;
1087
+ light: boolean;
1088
+ theme?: string | undefined;
1089
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1090
+ name: string;
1091
+ parent?: any | undefined;
1092
+ tabStop: boolean;
1093
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1094
+ fillHeight: boolean;
1095
+ } | undefined;
1096
+ tabStop?: boolean | undefined;
1097
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1098
+ fillHeight?: boolean | undefined;
1099
+ }[] | undefined;
1100
+ component: string;
1101
+ allowDuplicate?: boolean | undefined;
1102
+ autofocus?: boolean | undefined;
1103
+ componentId?: number | undefined;
1104
+ cssClass?: string | undefined;
1105
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1106
+ events?: {
1107
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1108
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1109
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1110
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1111
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1113
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
+ } | undefined;
1117
+ directives?: {
1118
+ [x: string]: {
1119
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1120
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1121
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1122
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1123
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1124
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1125
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1126
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1127
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1128
+ } | undefined;
1129
+ touch?: {
1130
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1131
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1132
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1133
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1134
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1135
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1136
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1137
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1138
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1139
+ } | undefined;
1140
+ } | undefined;
1141
+ isVisible?: string | boolean | undefined;
1142
+ dark?: boolean | undefined;
1143
+ light?: boolean | undefined;
1144
+ theme?: string | undefined;
1145
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1146
+ name: string;
1147
+ parent?: {
1148
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1149
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1150
+ allowDuplicate: boolean;
1151
+ autofocus: boolean;
1152
+ children: {
1153
+ [x: string]: any;
1154
+ allowDuplicate?: boolean | undefined;
1155
+ autofocus?: boolean | undefined;
1156
+ children?: any[] | undefined;
1157
+ componentId?: number | undefined;
1158
+ cssClass?: string | undefined;
1159
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1160
+ events?: {
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
+ directives?: {
1172
+ [x: string]: {
1173
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1174
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1175
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1176
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1177
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1178
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1179
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1180
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1181
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1182
+ } | undefined;
1183
+ touch?: {
1184
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1185
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1186
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1187
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1188
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1189
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1190
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1191
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1192
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1193
+ } | undefined;
1194
+ } | undefined;
1195
+ isVisible?: string | boolean | undefined;
1196
+ dark?: boolean | undefined;
1197
+ light?: boolean | undefined;
1198
+ theme?: string | undefined;
1199
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1200
+ name: string;
1201
+ parent?: any | undefined;
1202
+ tabStop?: boolean | undefined;
1203
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1204
+ fillHeight?: boolean | undefined;
1205
+ }[];
1206
+ componentId: number;
1207
+ cssClass: string;
1208
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1209
+ events: {
1210
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1211
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1214
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1215
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1216
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1217
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1218
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
+ };
1220
+ directives: {
1221
+ [x: string]: {
1222
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1223
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1225
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1226
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1227
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1228
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1229
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1230
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1231
+ } | undefined;
1232
+ touch?: {
1233
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1234
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1235
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1236
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1237
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1238
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1239
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1240
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1241
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1242
+ } | undefined;
1243
+ };
1244
+ isVisible: string | boolean;
1245
+ dark: boolean;
1246
+ light: boolean;
1247
+ theme?: string | undefined;
1248
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1249
+ name: string;
1250
+ parent?: any | undefined;
1251
+ tabStop: boolean;
1252
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1253
+ fillHeight: boolean;
1254
+ } | undefined;
1255
+ tabStop?: boolean | undefined;
1256
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1257
+ fillHeight?: boolean | undefined;
1258
+ }[];
1259
+ readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1260
+ validate: () => Promise<{
1261
+ valid: boolean;
1262
+ }>;
1263
+ setViewValidate: (viewValidate: () => Promise<{
1264
+ valid: boolean;
1265
+ errors: {
1266
+ id: string | number;
1267
+ errorMessages: string[];
1268
+ }[];
1269
+ }>) => void;
1270
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1271
+ callSubmitEvent: (event: Event, element: any) => void;
1272
+ onMounted: (element: any) => void;
1273
+ submit: () => void;
1274
+ resetValidation: () => void;
1275
+ component: string;
1276
+ allowDuplicate: boolean;
1277
+ autofocus: boolean;
1278
+ childrenInstances: any[];
1279
+ cssClass: string;
1280
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1281
+ directives: {
1282
+ [x: string]: {
1283
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1284
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1285
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1286
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1287
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1288
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1289
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1290
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1291
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1292
+ } | undefined;
1293
+ touch?: {
1294
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1295
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1296
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1302
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1303
+ } | undefined;
1304
+ };
1305
+ isVisible: boolean;
1306
+ name: string;
1307
+ dark: boolean;
1308
+ light: boolean;
1309
+ theme?: string | undefined;
1310
+ fillHeight: boolean;
1311
+ parent?: {
1312
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1313
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1314
+ allowDuplicate: boolean;
1315
+ autofocus: boolean;
1316
+ children: {
1317
+ [x: string]: any;
1318
+ allowDuplicate?: boolean | undefined;
1319
+ autofocus?: boolean | undefined;
1320
+ children?: any[] | undefined;
1321
+ componentId?: number | undefined;
1322
+ cssClass?: string | undefined;
1323
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1324
+ events?: {
1325
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1326
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1327
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1328
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1329
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1330
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1331
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1332
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1333
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1334
+ } | undefined;
1335
+ directives?: {
1336
+ [x: string]: {
1337
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1338
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1339
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1340
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1341
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1342
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1343
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1344
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1345
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1346
+ } | undefined;
1347
+ touch?: {
1348
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1349
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1350
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1351
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1352
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1353
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1354
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1355
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1356
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1357
+ } | undefined;
1358
+ } | undefined;
1359
+ isVisible?: string | boolean | undefined;
1360
+ dark?: boolean | undefined;
1361
+ light?: boolean | undefined;
1362
+ theme?: string | undefined;
1363
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1364
+ name: string;
1365
+ parent?: any | undefined;
1366
+ tabStop?: boolean | undefined;
1367
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1368
+ fillHeight?: boolean | undefined;
1369
+ }[];
1370
+ componentId: number;
1371
+ cssClass: string;
1372
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1373
+ events: {
1374
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1375
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1376
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1377
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1378
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1379
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1380
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1381
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1382
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1383
+ };
1384
+ directives: {
1385
+ [x: string]: {
1386
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1387
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1388
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1389
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1390
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1391
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1392
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1393
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1394
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1395
+ } | undefined;
1396
+ touch?: {
1397
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1398
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1399
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1400
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1401
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1402
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1403
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1404
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1405
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1406
+ } | undefined;
1407
+ };
1408
+ isVisible: string | boolean;
1409
+ dark: boolean;
1410
+ light: boolean;
1411
+ theme?: string | undefined;
1412
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1413
+ name: string;
1414
+ parent?: any | undefined;
1415
+ tabStop: boolean;
1416
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1417
+ fillHeight: boolean;
1418
+ } | undefined;
1419
+ componentId: number;
1420
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1421
+ isFocused: boolean;
1422
+ tabStop: boolean;
1423
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1424
+ setViewFocus: (viewFocus: () => void) => void;
1425
+ setFocus: () => void;
1426
+ callEvent: (eventName: string, args: any) => boolean;
1427
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1428
+ removeChild: (name: string) => void;
1429
+ getChildInstance: <T_6>(name: string) => T_6;
1430
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1431
+ onCreated: () => void;
1432
+ onBeforeMount: () => void;
1433
+ onBeforeDestroy: () => void;
1434
+ onDestroyed: () => void;
1435
+ click: (event?: Event | undefined, element?: any) => void;
1436
+ focus: (event: Event, element: any) => void;
1437
+ blur: (event: Event, element: any) => void;
1438
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1439
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1440
+ mouseout: (event?: Event | undefined, element?: any) => void;
1441
+ mouseover: (event?: Event | undefined, element?: any) => void;
1442
+ } | undefined;
1443
+ grid: {
1444
+ cols?: string | undefined;
1445
+ lg?: string | undefined;
1446
+ md?: string | undefined;
1447
+ sm?: string | undefined;
1448
+ xl?: string | undefined;
1449
+ xxl?: string | undefined;
1450
+ offset?: string | undefined;
1451
+ 'offset-lg'?: string | undefined;
1452
+ 'offset-md'?: string | undefined;
1453
+ 'offset-sm'?: string | undefined;
1454
+ 'offset-xl'?: string | undefined;
1455
+ 'offset-xxl'?: string | undefined;
1456
+ };
1457
+ validate: () => Promise<string[]>;
1458
+ setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1459
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1460
+ resetValidation: () => void;
1461
+ addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1462
+ removeValidation: (name: string) => void;
1463
+ clearValidations: () => void;
1464
+ isValid: (value?: any) => boolean;
1465
+ change: (event?: Event | undefined, element?: any) => void;
1466
+ input: (event?: Event | undefined, element?: any) => void;
1467
+ keyup: (event?: Event | undefined, element?: any) => void;
1468
+ keydown: (event?: Event | undefined, element?: any) => void;
1469
+ children: {
1470
+ [x: string]: any;
1471
+ children?: any[] | undefined;
1472
+ component: string;
1473
+ allowDuplicate?: boolean | undefined;
1474
+ autofocus?: boolean | undefined;
1475
+ componentId?: number | undefined;
1476
+ cssClass?: string | undefined;
1477
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1478
+ events?: {
1479
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1480
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1481
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1482
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1483
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1485
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
+ } | undefined;
1489
+ directives?: {
1490
+ [x: string]: {
1491
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1492
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1493
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1494
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1495
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1496
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1497
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1498
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1499
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1500
+ } | undefined;
1501
+ touch?: {
1502
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1503
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1504
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1505
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1506
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1507
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1508
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1509
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1510
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1511
+ } | undefined;
1512
+ } | undefined;
1513
+ isVisible?: string | boolean | undefined;
1514
+ dark?: boolean | undefined;
1515
+ light?: boolean | undefined;
1516
+ theme?: string | undefined;
1517
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1518
+ name: string;
1519
+ parent?: {
1520
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1521
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1522
+ allowDuplicate: boolean;
1523
+ autofocus: boolean;
1524
+ children: {
1525
+ [x: string]: any;
1526
+ allowDuplicate?: boolean | undefined;
1527
+ autofocus?: boolean | undefined;
1528
+ children?: any[] | undefined;
1529
+ componentId?: number | undefined;
1530
+ cssClass?: string | undefined;
1531
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1532
+ events?: {
1533
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1534
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1535
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1536
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1537
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1538
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1539
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1540
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1541
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1542
+ } | undefined;
1543
+ directives?: {
1544
+ [x: string]: {
1545
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1546
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1547
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1548
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1549
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1550
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1551
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1552
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1553
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1554
+ } | undefined;
1555
+ touch?: {
1556
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1557
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1558
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1559
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1560
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1561
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1562
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1563
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1564
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1565
+ } | undefined;
1566
+ } | undefined;
1567
+ isVisible?: string | boolean | undefined;
1568
+ dark?: boolean | undefined;
1569
+ light?: boolean | undefined;
1570
+ theme?: string | undefined;
1571
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1572
+ name: string;
1573
+ parent?: any | undefined;
1574
+ tabStop?: boolean | undefined;
1575
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1576
+ fillHeight?: boolean | undefined;
1577
+ }[];
1578
+ componentId: number;
1579
+ cssClass: string;
1580
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1581
+ events: {
1582
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1583
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1584
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1585
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1586
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1587
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1588
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1589
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1590
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1591
+ };
1592
+ directives: {
1593
+ [x: string]: {
1594
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1595
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1596
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1597
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1598
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1599
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1600
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1601
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1602
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1603
+ } | undefined;
1604
+ touch?: {
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
+ };
1616
+ isVisible: string | boolean;
1617
+ dark: boolean;
1618
+ light: boolean;
1619
+ theme?: string | undefined;
1620
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1621
+ name: string;
1622
+ parent?: any | undefined;
1623
+ tabStop: boolean;
1624
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1625
+ fillHeight: boolean;
1626
+ } | undefined;
1627
+ tabStop?: boolean | undefined;
1628
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1629
+ fillHeight?: boolean | undefined;
1630
+ }[];
1631
+ component: string;
1632
+ allowDuplicate: boolean;
1633
+ autofocus: boolean;
1634
+ childrenInstances: any[];
1635
+ cssClass: string;
1636
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1637
+ directives: {
1638
+ [x: string]: {
1639
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1640
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1641
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1642
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1643
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1644
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1645
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1646
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1647
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1648
+ } | undefined;
1649
+ touch?: {
1650
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1651
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1652
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1653
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1654
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1655
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1656
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1657
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1658
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1659
+ } | undefined;
1660
+ };
1661
+ isVisible: boolean;
1662
+ name: string;
1663
+ dark: boolean;
1664
+ light: boolean;
1665
+ theme?: string | undefined;
1666
+ fillHeight: boolean;
1667
+ parent?: {
1668
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1669
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1670
+ allowDuplicate: boolean;
1671
+ autofocus: boolean;
1672
+ children: {
1673
+ [x: string]: any;
1674
+ allowDuplicate?: boolean | undefined;
1675
+ autofocus?: boolean | undefined;
1676
+ children?: any[] | undefined;
1677
+ componentId?: number | undefined;
1678
+ cssClass?: string | undefined;
1679
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1680
+ events?: {
1681
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1682
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1683
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1684
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1685
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1686
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1687
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1688
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1689
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1690
+ } | undefined;
1691
+ directives?: {
1692
+ [x: string]: {
1693
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1694
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1695
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1696
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1697
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1698
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1699
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1700
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1701
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1702
+ } | undefined;
1703
+ touch?: {
1704
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1705
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1706
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1707
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1708
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1709
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1710
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1711
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1712
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1713
+ } | undefined;
1714
+ } | undefined;
1715
+ isVisible?: string | boolean | undefined;
1716
+ dark?: boolean | undefined;
1717
+ light?: boolean | undefined;
1718
+ theme?: string | undefined;
1719
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1720
+ name: string;
1721
+ parent?: any | undefined;
1722
+ tabStop?: boolean | undefined;
1723
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1724
+ fillHeight?: boolean | undefined;
1725
+ }[];
1726
+ componentId: number;
1727
+ cssClass: string;
1728
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1729
+ events: {
1730
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1731
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1732
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1733
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1734
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1735
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1736
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1737
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1738
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1739
+ };
1740
+ directives: {
1741
+ [x: string]: {
1742
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1743
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1744
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1745
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1746
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1747
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1748
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1749
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1750
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1751
+ } | undefined;
1752
+ touch?: {
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
+ };
1764
+ isVisible: string | boolean;
1765
+ dark: boolean;
1766
+ light: boolean;
1767
+ theme?: string | undefined;
1768
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1769
+ name: string;
1770
+ parent?: any | undefined;
1771
+ tabStop: boolean;
1772
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1773
+ fillHeight: boolean;
1774
+ } | undefined;
1775
+ componentId: number;
1776
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1777
+ isFocused: boolean;
1778
+ tabStop: boolean;
1779
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1780
+ setViewFocus: (viewFocus: () => void) => void;
1781
+ setFocus: () => void;
1782
+ callEvent: (eventName: string, args: any) => boolean;
1783
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1784
+ removeChild: (name: string) => void;
1785
+ getChildInstance: <T_6>(name: string) => T_6;
1786
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1787
+ onBeforeMount: () => void;
1788
+ onMounted: (element: any) => void;
1789
+ onBeforeDestroy: () => void;
1790
+ onDestroyed: () => void;
1791
+ click: (event?: Event | undefined, element?: any) => void;
1792
+ focus: (event: Event, element: any) => void;
1793
+ blur: (event: Event, element: any) => void;
1794
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1795
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1796
+ mouseout: (event?: Event | undefined, element?: any) => void;
1797
+ mouseover: (event?: Event | undefined, element?: any) => void;
1798
+ };
1799
+ 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>>;
1800
+ click: (event: Event) => void;
1801
+ focus: (event: Event) => void;
1802
+ blur: (event: Event) => void;
1803
+ mouseenter: (event: Event) => void;
1804
+ mouseleave: (event: Event) => void;
1805
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1806
+ maxValue: {
1807
+ type: (NumberConstructor | StringConstructor)[];
1808
+ default: undefined;
1809
+ };
1810
+ minValue: {
1811
+ type: (NumberConstructor | StringConstructor)[];
1812
+ default: undefined;
1813
+ };
1814
+ step: {
1815
+ type: (NumberConstructor | StringConstructor)[];
1816
+ default: number;
1817
+ };
1818
+ align: {
1819
+ type: StringConstructor;
1820
+ default: string;
1821
+ };
1822
+ mask: {
1823
+ type: ObjectConstructor;
1824
+ default: () => import("@zeedhi/core").IDictionary<any>;
1825
+ };
1826
+ value: {
1827
+ type: (NumberConstructor | StringConstructor)[];
1828
+ default: null;
1829
+ };
1830
+ appendIcon: {
1831
+ type: StringConstructor;
1832
+ default: string;
1833
+ };
1834
+ appendOuterIcon: {
1835
+ type: StringConstructor;
1836
+ default: string;
1837
+ };
1838
+ prefix: {
1839
+ type: StringConstructor;
1840
+ default: string;
1841
+ };
1842
+ prependIcon: {
1843
+ type: StringConstructor;
1844
+ default: string;
1845
+ };
1846
+ prependOuterIcon: {
1847
+ type: StringConstructor;
1848
+ default: string;
1849
+ };
1850
+ suffix: {
1851
+ type: StringConstructor;
1852
+ default: string;
1853
+ };
1854
+ valueWithPrefix: {
1855
+ type: (BooleanConstructor | StringConstructor)[];
1856
+ default: boolean;
1857
+ };
1858
+ valueWithSuffix: {
1859
+ type: (BooleanConstructor | StringConstructor)[];
1860
+ default: boolean;
1861
+ };
1862
+ type: {
1863
+ type: StringConstructor;
1864
+ default: string;
1865
+ };
1866
+ disableMaska: {
1867
+ type: BooleanConstructor;
1868
+ default: boolean;
1869
+ };
1870
+ inputMode: {
1871
+ type: StringConstructor;
1872
+ default: string;
1873
+ };
1874
+ width: {
1875
+ type: (NumberConstructor | StringConstructor)[];
1876
+ };
1877
+ minWidth: {
1878
+ type: (NumberConstructor | StringConstructor)[];
1879
+ default: string;
1880
+ };
1881
+ maxWidth: {
1882
+ type: (NumberConstructor | StringConstructor)[];
1883
+ default: string;
1884
+ };
1885
+ fillHeight: {
1886
+ type: (BooleanConstructor | StringConstructor)[];
1887
+ default: boolean;
1888
+ };
1889
+ height: {
1890
+ type: (NumberConstructor | StringConstructor)[];
1891
+ };
1892
+ minHeight: {
1893
+ type: (NumberConstructor | StringConstructor)[];
1894
+ default: string;
1895
+ };
1896
+ maxHeight: {
1897
+ type: (NumberConstructor | StringConstructor)[];
1898
+ default: string;
1899
+ };
1900
+ alwaysShowError: {
1901
+ type: (BooleanConstructor | StringConstructor)[];
1902
+ default: boolean;
1903
+ };
1904
+ autofill: {
1905
+ type: (BooleanConstructor | StringConstructor)[];
1906
+ default: boolean;
1907
+ };
1908
+ clearable: {
1909
+ type: (BooleanConstructor | StringConstructor)[];
1910
+ default: boolean;
1911
+ };
1912
+ color: {
1913
+ type: StringConstructor;
1914
+ default: string;
1915
+ };
1916
+ dense: {
1917
+ type: (BooleanConstructor | StringConstructor)[];
1918
+ default: boolean;
1919
+ };
1920
+ disabled: {
1921
+ type: (BooleanConstructor | StringConstructor)[];
1922
+ default: boolean;
1923
+ };
1924
+ hint: {
1925
+ type: StringConstructor;
1926
+ default: string;
1927
+ };
1928
+ label: {
1929
+ type: StringConstructor;
1930
+ default: string;
1931
+ };
1932
+ maxLength: {
1933
+ type: (NumberConstructor | StringConstructor)[];
1934
+ default: undefined;
1935
+ };
1936
+ persistentHint: {
1937
+ type: (BooleanConstructor | StringConstructor)[];
1938
+ default: boolean;
1939
+ };
1940
+ placeholder: {
1941
+ type: StringConstructor;
1942
+ default: string;
1943
+ };
1944
+ readonly: {
1945
+ type: (BooleanConstructor | StringConstructor)[];
1946
+ default: boolean;
1947
+ };
1948
+ autoHintDetails: {
1949
+ type: (BooleanConstructor | StringConstructor)[];
1950
+ default: boolean;
1951
+ };
1952
+ reverse: {
1953
+ type: (BooleanConstructor | StringConstructor)[];
1954
+ default: boolean;
1955
+ };
1956
+ showBorder: {
1957
+ type: (BooleanConstructor | StringConstructor)[];
1958
+ default: boolean;
1959
+ };
1960
+ showHelper: {
1961
+ type: (BooleanConstructor | StringConstructor)[];
1962
+ default: boolean;
1963
+ };
1964
+ showLabel: {
1965
+ type: (BooleanConstructor | StringConstructor)[];
1966
+ default: boolean;
1967
+ };
1968
+ storePath: {
1969
+ type: StringConstructor;
1970
+ default: string;
1971
+ };
1972
+ validations: {
1973
+ type: (ObjectConstructor | StringConstructor)[];
1974
+ default: {};
1975
+ };
1976
+ grid: {
1977
+ default: {};
1978
+ type: ObjectConstructor;
1979
+ };
1980
+ children: {
1981
+ type: (StringConstructor | {
1982
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1983
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1984
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1985
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1986
+ isArray(arg: any): arg is any[];
1987
+ readonly prototype: any[];
1988
+ from<T>(arrayLike: ArrayLike<T>): T[];
1989
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1990
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1991
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1992
+ of<T_4>(...items: T_4[]): T_4[];
1993
+ readonly [Symbol.species]: ArrayConstructor;
1994
+ })[];
1995
+ default(): never[];
1996
+ };
1997
+ component: {
1998
+ type: StringConstructor;
1999
+ };
2000
+ allowDuplicate: {
2001
+ type: (BooleanConstructor | StringConstructor)[];
2002
+ default: boolean;
2003
+ };
2004
+ autofocus: {
2005
+ type: (BooleanConstructor | StringConstructor)[];
2006
+ default: boolean;
2007
+ };
2008
+ cssClass: {
2009
+ type: StringConstructor;
2010
+ default: string;
2011
+ };
2012
+ cssStyle: {
2013
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
2014
+ default: string;
2015
+ };
2016
+ dark: {
2017
+ type: (BooleanConstructor | StringConstructor)[];
2018
+ default: boolean;
2019
+ };
2020
+ directives: {
2021
+ type: ObjectConstructor;
2022
+ default(): {};
2023
+ };
2024
+ events: {
2025
+ type: ObjectConstructor;
2026
+ default(): {};
2027
+ };
2028
+ instanceObject: {
2029
+ type: ObjectConstructor;
2030
+ };
2031
+ isVisible: {
2032
+ type: (BooleanConstructor | StringConstructor)[];
2033
+ default: boolean;
2034
+ };
2035
+ keyMap: {
2036
+ type: ObjectConstructor;
2037
+ default(): {};
2038
+ };
2039
+ light: {
2040
+ type: (BooleanConstructor | StringConstructor)[];
2041
+ default: boolean;
2042
+ };
2043
+ name: {
2044
+ type: StringConstructor;
2045
+ required: true;
2046
+ };
2047
+ parent: {
2048
+ type: ObjectConstructor;
2049
+ };
2050
+ tabStop: {
2051
+ type: (BooleanConstructor | StringConstructor)[];
2052
+ default: boolean;
2053
+ };
2054
+ theme: {
2055
+ type: StringConstructor;
2056
+ };
2057
+ }>> & Readonly<{}>, {
2058
+ reverse: string | boolean;
2059
+ allowDuplicate: string | boolean;
2060
+ type: string;
2061
+ autofocus: string | boolean;
2062
+ children: string | import("@zeedhi/common").IComponentRender[];
2063
+ cssClass: string;
2064
+ cssStyle: import("vue").StyleValue;
2065
+ dark: string | boolean;
2066
+ directives: Record<string, any>;
2067
+ events: Record<string, any>;
2068
+ isVisible: string | boolean;
2069
+ keyMap: Record<string, any>;
2070
+ light: string | boolean;
2071
+ tabStop: string | boolean;
2072
+ fillHeight: string | boolean;
2073
+ value: string | number;
2074
+ label: string;
2075
+ mask: Record<string, any>;
2076
+ color: string;
2077
+ disabled: string | boolean;
2078
+ appendIcon: string;
2079
+ prependIcon: string;
2080
+ dense: string | boolean;
2081
+ minWidth: string | number;
2082
+ maxWidth: string | number;
2083
+ minHeight: string | number;
2084
+ maxHeight: string | number;
2085
+ align: string;
2086
+ alwaysShowError: string | boolean;
2087
+ autofill: string | boolean;
2088
+ clearable: string | boolean;
2089
+ hint: string;
2090
+ maxLength: string | number;
2091
+ persistentHint: string | boolean;
2092
+ placeholder: string;
2093
+ readonly: string | boolean;
2094
+ autoHintDetails: string | boolean;
2095
+ showBorder: string | boolean;
2096
+ showHelper: string | boolean;
2097
+ showLabel: string | boolean;
2098
+ storePath: string;
2099
+ validations: string | Record<string, any>;
2100
+ grid: Record<string, any>;
2101
+ appendOuterIcon: string;
2102
+ prefix: string;
2103
+ prependOuterIcon: string;
2104
+ suffix: string;
2105
+ valueWithPrefix: string | boolean;
2106
+ valueWithSuffix: string | boolean;
2107
+ inputMode: string;
2108
+ disableMaska: boolean;
2109
+ step: string | number;
2110
+ maxValue: string | number;
2111
+ minValue: string | number;
2112
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2113
+ export default _default;