@zeedhi/vuetify 3.0.5 → 3.0.7

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