@zeedhi/vuetify 3.0.9 → 3.0.11

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