@zeedhi/vuetify 3.0.6 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. package/.package.json +11 -9
  2. package/dist/components/index.js +275 -0
  3. package/dist/components/tek-grid/TekGrid.js +287 -0
  4. package/dist/components/tek-grid/column-filter/TekGridColumnFilter.js +201 -0
  5. package/dist/components/tek-grid/column-header/TekGridHeaderRow.js +134 -0
  6. package/dist/components/tek-grid/columns-button/TekGridColumnsButton.js +79 -0
  7. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsController.js +416 -0
  8. package/dist/components/tek-grid/columns-button/TekGridColumnsOptionsModal.js +501 -0
  9. package/dist/components/tek-grid/filter-button/TekGridFilterButton.js +36 -0
  10. package/dist/components/tek-grid/indentation/TekGridIndentation.js +20 -0
  11. package/dist/components/tek-grid/layout-options/TekGridLayoutOptions.js +101 -0
  12. package/dist/components/tek-grid/row/TekGridFooterRow.js +57 -0
  13. package/dist/components/tek-grid/row/TekGridGroupRow.js +58 -0
  14. package/dist/components/tooltip-overflow/ZdTooltipOverflow.js +56 -0
  15. package/dist/components/zd-activator-wrapper/ZdActivatorWrapper.js +33 -0
  16. package/dist/components/zd-alert/ZdAlert.js +112 -0
  17. package/dist/components/zd-badge/ZdBadge.js +28 -0
  18. package/dist/components/zd-breadcrumbs/ZdBreadcrumbs.js +55 -0
  19. package/dist/components/zd-button/ZdButton.js +230 -0
  20. package/dist/components/zd-button-group/ZdButtonGroup.js +110 -0
  21. package/dist/components/zd-card/ZdCard.js +132 -0
  22. package/dist/components/zd-carousel/ZdCarousel.js +242 -0
  23. package/dist/components/zd-checkbox/ZdCheckbox.js +35 -0
  24. package/dist/components/zd-checkbox-multiple/ZdCheckboxMultiple.js +62 -0
  25. package/dist/components/zd-chip/ZdChip.js +94 -0
  26. package/dist/components/zd-code-viewer/ZdCodeViewer.js +55 -0
  27. package/dist/components/zd-code-viewer/prism.js +14 -0
  28. package/dist/components/zd-col/ZdCol.js +45 -0
  29. package/dist/components/zd-collapse-card/ZdCollapseCard.js +85 -0
  30. package/dist/components/zd-component/ZdComponent.js +259 -0
  31. package/dist/components/zd-component/ZdComponentRender.js +14 -0
  32. package/dist/components/zd-container/ZdContainer.js +42 -0
  33. package/dist/components/zd-currency/ZdCurrency.js +24 -0
  34. package/dist/components/zd-date-input/ZdDateInput.js +247 -0
  35. package/dist/components/zd-date-range/ZdDateRange.js +251 -0
  36. package/dist/components/zd-dialog/ZdDialog.js +34 -0
  37. package/dist/components/zd-divider/ZdDivider.js +28 -0
  38. package/dist/components/zd-dropdown/ZdDropdown.js +93 -0
  39. package/dist/components/zd-footer/ZdFooter.js +77 -0
  40. package/dist/components/zd-form/ZdForm.js +85 -0
  41. package/dist/components/zd-frame/ZdFrame.js +76 -0
  42. package/dist/components/zd-frame-page/ZdFramePage.js +21 -0
  43. package/dist/components/zd-grid/ZdGrid.js +284 -0
  44. package/dist/components/zd-grid/cell/ZdGridAction.js +12 -0
  45. package/dist/components/zd-grid/cell/ZdGridCell.js +59 -0
  46. package/dist/components/zd-grid/cell/ZdGridCellContent.js +59 -0
  47. package/dist/components/zd-grid/cell/ZdGridCheckbox.js +38 -0
  48. package/dist/components/zd-grid/column-header/ZdGridColumnHeader.js +70 -0
  49. package/dist/components/zd-grid/column-header/ZdGridHeaderIcon.js +31 -0
  50. package/dist/components/zd-grid/column-header/ZdGridHeaderRow.js +102 -0
  51. package/dist/components/zd-grid/column-header/ZdGridSort.js +32 -0
  52. package/dist/components/zd-grid/composables/grid-instance.js +12 -0
  53. package/dist/components/zd-grid/footer/ZdGridFooter.js +16 -0
  54. package/dist/components/zd-grid/helper/ZdGridHelper.js +12 -0
  55. package/dist/components/zd-grid/row/TableRow.js +25 -0
  56. package/dist/components/zd-grid/row/ZdGridRow.js +70 -0
  57. package/dist/components/zd-grid/toolbar/ZdGridToolbar.js +15 -0
  58. package/dist/components/zd-grid-editable/ZdGridEditable.js +174 -0
  59. package/dist/components/zd-grid-editable/cell/ZdGridEditableCell.js +135 -0
  60. package/dist/components/zd-grid-editable/row/ZdGridEditableRow.js +99 -0
  61. package/dist/components/zd-header/ZdHeader.js +111 -0
  62. package/dist/components/zd-icon/ZdIcon.js +63 -0
  63. package/dist/components/zd-image/ZdImage.js +48 -0
  64. package/dist/components/zd-increment/ZdIncrement.js +38 -0
  65. package/dist/components/zd-input/ZdInput.js +164 -0
  66. package/dist/components/zd-iterable/ZdIterable.js +38 -0
  67. package/dist/components/zd-iterable/ZdIterableNoData.js +20 -0
  68. package/dist/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.js +50 -0
  69. package/dist/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.js +21 -0
  70. package/dist/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.js +55 -0
  71. package/dist/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.js +36 -0
  72. package/dist/components/zd-iterable/zd-search/ZdSearch.js +42 -0
  73. package/dist/components/zd-iterable-component-render/ZdIterableComponentRender.js +108 -0
  74. package/dist/components/zd-layout/ZdLayout.js +41 -0
  75. package/dist/components/zd-list/ZdList.js +84 -0
  76. package/dist/components/zd-list/ZdListGroup.js +38 -0
  77. package/dist/components/zd-list/ZdListItem.js +66 -0
  78. package/dist/components/zd-loading/ZdLoading.js +61 -0
  79. package/dist/components/zd-login/ZdLogin.js +68 -0
  80. package/dist/components/zd-login/ZdLoginButton.js +28 -0
  81. package/dist/components/zd-main/ZdMain.js +33 -0
  82. package/dist/components/zd-master-detail/ZdMasterDetail.js +48 -0
  83. package/dist/components/zd-menu/ZdMenu.js +302 -0
  84. package/dist/components/zd-menu/ZdMenuButton.js +42 -0
  85. package/dist/components/zd-menu/ZdMenuGroup.js +66 -0
  86. package/dist/components/zd-menu/ZdMenuLink.js +63 -0
  87. package/dist/components/zd-menu/ZdMenuSeparator.js +26 -0
  88. package/dist/components/zd-modal/ZdModal.js +123 -0
  89. package/dist/components/zd-modal/ZdModalCloseButton.js +36 -0
  90. package/dist/components/zd-month/ZdMonth.js +31 -0
  91. package/dist/components/zd-number-input/ZdNumberInput.js +84 -0
  92. package/dist/components/zd-password/ZdPassword.js +23 -0
  93. package/dist/components/zd-progress/ZdProgress.js +52 -0
  94. package/dist/components/zd-radio/ZdRadio.js +56 -0
  95. package/dist/components/zd-row/ZdRow.js +43 -0
  96. package/dist/components/zd-select/ZdSelect.js +191 -0
  97. package/dist/components/zd-select-multiple/ZdSelectMultiple.js +326 -0
  98. package/dist/components/zd-svg-map/ZdSvgMap.js +211 -0
  99. package/dist/components/zd-switch/ZdSwitch.js +39 -0
  100. package/dist/components/zd-table/ZdTable.js +42 -0
  101. package/dist/components/zd-tabs/ZdTab.js +92 -0
  102. package/dist/components/zd-tabs/ZdTabItem.js +17 -0
  103. package/dist/components/zd-tabs/ZdTabs.js +84 -0
  104. package/dist/components/zd-tag/ZdTag.js +34 -0
  105. package/dist/components/zd-text/ZdText.js +35 -0
  106. package/dist/components/zd-text-input/ZdTextInput.js +174 -0
  107. package/dist/components/zd-textarea/ZdTextarea.js +76 -0
  108. package/dist/components/zd-time/ZdTime.js +159 -0
  109. package/dist/components/zd-toggleable/ZdToggleable.js +13 -0
  110. package/dist/components/zd-tooltip/ZdTooltip.js +92 -0
  111. package/dist/components/zd-tree/ZdTree.js +315 -0
  112. package/dist/components/zd-tree/ZdTreeAfterTitle.js +17 -0
  113. package/dist/components/zd-tree/ZdTreeCheckbox.js +97 -0
  114. package/dist/components/zd-tree-grid/ZdTreeGrid.js +101 -0
  115. package/dist/components/zd-tree-grid/cell/ZdTreeGridCell.js +81 -0
  116. package/dist/components/zd-tree-grid/row/ZdTreeGridRow.js +85 -0
  117. package/dist/composables/cellSelection.js +37 -0
  118. package/dist/composables/columnDrag.js +82 -0
  119. package/dist/composables/columnResize.js +115 -0
  120. package/dist/composables/density.js +13 -0
  121. package/dist/composables/doubleClick.js +32 -0
  122. package/dist/composables/fixedColumns.js +106 -0
  123. package/dist/composables/gridColorVars.js +30 -0
  124. package/dist/composables/gridColumns.js +87 -0
  125. package/dist/composables/gridSelection.js +91 -0
  126. package/dist/composables/gridSorting.js +19 -0
  127. package/dist/composables/hasSlot.js +25 -0
  128. package/dist/composables/index.js +16 -0
  129. package/dist/composables/maska.js +36 -0
  130. package/dist/composables/tableNavigation.js +126 -0
  131. package/dist/composables/useIsMobile.js +8 -0
  132. package/dist/composables/useTableLayout.js +212 -0
  133. package/dist/composables/virtualScroll.js +92 -0
  134. package/dist/composables/watchUrl.js +14 -0
  135. package/dist/errors/index.js +3 -0
  136. package/dist/errors/not-provided.js +11 -0
  137. package/dist/errors/row-not-found.js +9 -0
  138. package/dist/errors/zeedhi-error.js +8 -0
  139. package/dist/index.js +49 -0
  140. package/dist/propsMixins/heightProps.js +17 -0
  141. package/dist/propsMixins/index.js +3 -0
  142. package/dist/propsMixins/interfaces.js +1 -0
  143. package/dist/propsMixins/widthProps.js +13 -0
  144. package/dist/utils/buildProps.js +3 -0
  145. package/dist/utils/fillHeight.js +18 -0
  146. package/dist/utils/icons/icons.js +28 -0
  147. package/dist/utils/index.js +6 -0
  148. package/dist/utils/isArrayOperation.js +4 -0
  149. package/dist/utils/logger/logger.js +7 -0
  150. package/dist/utils/mergeDictionaries.js +22 -0
  151. package/dist/utils/plugins/formatSizePlugin.js +6 -0
  152. package/dist/utils/plugins/getIconPlugin.js +11 -0
  153. package/dist/utils/plugins/index.js +4 -0
  154. package/dist/utils/plugins/styleObjectPlugin.js +13 -0
  155. package/dist/zd-vuetify.css +22062 -22295
  156. package/dist/zd-vuetify.js +9696 -13977
  157. package/package.json +8 -6
  158. package/src/components/index.ts +0 -27
  159. package/src/components/zd-date-input/ZdDateInput.ts +11 -9
  160. package/src/components/zd-date-input/ZdDateInput.vue +42 -46
  161. package/src/components/zd-date-range/ZdDateRange.ts +24 -23
  162. package/src/components/zd-date-range/ZdDateRange.vue +42 -54
  163. package/src/components/zd-month/ZdMonth.ts +0 -17
  164. package/src/components/zd-month/ZdMonth.vue +0 -1
  165. package/src/components/zd-text-input/ZdTextInput.ts +4 -0
  166. package/src/components/zd-text-input/ZdTextInput.vue +1 -0
  167. package/src/components/zd-time/ZdTime.ts +11 -50
  168. package/src/components/zd-time/ZdTime.vue +41 -29
  169. package/src/composables/index.ts +1 -1
  170. package/src/composables/useIsMobile.ts +9 -0
  171. package/src/errors/index.ts +1 -0
  172. package/src/index.ts +1 -0
  173. package/src/utils/index.ts +0 -1
  174. package/types/components/index.d.ts +80 -88
  175. package/types/components/tek-grid/TekGrid.d.ts +7258 -7258
  176. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -129
  177. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -225
  178. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -2432
  179. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -65
  180. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -9
  181. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -2920
  182. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -32
  183. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -1892
  184. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -90
  185. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -87
  186. package/types/components/tooltip-overflow/ZdTooltipOverflow.d.ts +50 -50
  187. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.d.ts +25 -25
  188. package/types/components/zd-alert/ZdAlert.d.ts +884 -884
  189. package/types/components/zd-badge/ZdBadge.d.ts +624 -624
  190. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +697 -697
  191. package/types/components/zd-button/ZdButton.d.ts +1158 -1158
  192. package/types/components/zd-button-group/ZdButtonGroup.d.ts +785 -785
  193. package/types/components/zd-card/ZdCard.d.ts +1028 -1028
  194. package/types/components/zd-carousel/ZdCarousel.d.ts +2007 -2007
  195. package/types/components/zd-checkbox/ZdCheckbox.d.ts +655 -642
  196. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +2040 -2010
  197. package/types/components/zd-chip/ZdChip.d.ts +1256 -1256
  198. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +791 -791
  199. package/types/components/zd-code-viewer/prism.d.ts +14 -14
  200. package/types/components/zd-col/ZdCol.d.ts +741 -741
  201. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +1583 -1583
  202. package/types/components/zd-component/ZdComponent.d.ts +104 -104
  203. package/types/components/zd-component/ZdComponentRender.d.ts +80 -80
  204. package/types/components/zd-container/ZdContainer.d.ts +722 -722
  205. package/types/components/zd-currency/ZdCurrency.d.ts +2068 -2024
  206. package/types/components/zd-date-input/ZdDateInput.d.ts +986 -960
  207. package/types/components/zd-date-range/ZdDateRange.d.ts +2305 -0
  208. package/types/components/zd-dialog/ZdDialog.d.ts +262 -262
  209. package/types/components/zd-divider/ZdDivider.d.ts +623 -623
  210. package/types/components/zd-dropdown/ZdDropdown.d.ts +836 -836
  211. package/types/components/zd-footer/ZdFooter.d.ts +1262 -1262
  212. package/types/components/zd-form/ZdForm.d.ts +118 -118
  213. package/types/components/zd-frame/ZdFrame.d.ts +138 -138
  214. package/types/components/zd-frame-page/ZdFramePage.d.ts +805 -805
  215. package/types/components/zd-grid/ZdGrid.d.ts +7304 -7304
  216. package/types/components/zd-grid/cell/ZdGridAction.d.ts +14 -14
  217. package/types/components/zd-grid/cell/ZdGridCell.d.ts +68 -68
  218. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +58 -58
  219. package/types/components/zd-grid/cell/ZdGridCheckbox.d.ts +53 -53
  220. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +112 -112
  221. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.d.ts +46 -46
  222. package/types/components/zd-grid/column-header/ZdGridHeaderRow.d.ts +165 -165
  223. package/types/components/zd-grid/column-header/ZdGridSort.d.ts +47 -47
  224. package/types/components/zd-grid/composables/grid-instance.d.ts +2085 -2085
  225. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +2087 -2087
  226. package/types/components/zd-grid/helper/ZdGridHelper.d.ts +16 -16
  227. package/types/components/zd-grid/row/TableRow.d.ts +34 -34
  228. package/types/components/zd-grid/row/ZdGridRow.d.ts +105 -105
  229. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +2086 -2086
  230. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +8663 -8663
  231. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +637 -637
  232. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +126 -126
  233. package/types/components/zd-header/ZdHeader.d.ts +1320 -1320
  234. package/types/components/zd-icon/ZdIcon.d.ts +383 -383
  235. package/types/components/zd-image/ZdImage.d.ts +753 -753
  236. package/types/components/zd-increment/ZdIncrement.d.ts +2113 -2069
  237. package/types/components/zd-input/ZdInput.d.ts +204 -200
  238. package/types/components/zd-iterable/ZdIterable.d.ts +130 -130
  239. package/types/components/zd-iterable/ZdIterableNoData.d.ts +2089 -2089
  240. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +1645 -1645
  241. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +1081 -1081
  242. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +2807 -2763
  243. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +1653 -1627
  244. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +792 -766
  245. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +2484 -2484
  246. package/types/components/zd-layout/ZdLayout.d.ts +647 -647
  247. package/types/components/zd-list/ZdList.d.ts +1140 -1140
  248. package/types/components/zd-list/ZdListGroup.d.ts +1332 -1332
  249. package/types/components/zd-list/ZdListItem.d.ts +848 -848
  250. package/types/components/zd-loading/ZdLoading.d.ts +350 -350
  251. package/types/components/zd-login/ZdLogin.d.ts +1072 -1072
  252. package/types/components/zd-login/ZdLoginButton.d.ts +1913 -1910
  253. package/types/components/zd-main/ZdMain.d.ts +619 -619
  254. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +684 -684
  255. package/types/components/zd-menu/ZdMenu.d.ts +4484 -4484
  256. package/types/components/zd-menu/ZdMenuButton.d.ts +1142 -1142
  257. package/types/components/zd-menu/ZdMenuGroup.d.ts +6286 -6286
  258. package/types/components/zd-menu/ZdMenuLink.d.ts +10437 -10437
  259. package/types/components/zd-menu/ZdMenuSeparator.d.ts +600 -600
  260. package/types/components/zd-modal/ZdModal.d.ts +10 -10
  261. package/types/components/zd-modal/ZdModalCloseButton.d.ts +1137 -1137
  262. package/types/components/zd-month/ZdMonth.d.ts +2260 -2217
  263. package/types/components/zd-number-input/ZdNumberInput.d.ts +2065 -2021
  264. package/types/components/zd-password/ZdPassword.d.ts +2058 -2014
  265. package/types/components/zd-progress/ZdProgress.d.ts +859 -859
  266. package/types/components/zd-radio/ZdRadio.d.ts +695 -682
  267. package/types/components/zd-row/ZdRow.d.ts +734 -734
  268. package/types/components/zd-select/ZdSelect.d.ts +321 -313
  269. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +341 -333
  270. package/types/components/zd-svg-map/ZdSvgMap.d.ts +414 -414
  271. package/types/components/zd-switch/ZdSwitch.d.ts +1948 -1918
  272. package/types/components/zd-table/ZdTable.d.ts +1092 -1092
  273. package/types/components/zd-tabs/ZdTab.d.ts +674 -674
  274. package/types/components/zd-tabs/ZdTabItem.d.ts +268 -268
  275. package/types/components/zd-tabs/ZdTabs.d.ts +929 -929
  276. package/types/components/zd-tag/ZdTag.d.ts +613 -613
  277. package/types/components/zd-text/ZdText.d.ts +670 -670
  278. package/types/components/zd-text-input/ZdTextInput.d.ts +772 -746
  279. package/types/components/zd-textarea/ZdTextarea.d.ts +903 -877
  280. package/types/components/zd-time/ZdTime.d.ts +2271 -2224
  281. package/types/components/zd-toggleable/ZdToggleable.d.ts +203 -199
  282. package/types/components/zd-tooltip/ZdTooltip.d.ts +781 -781
  283. package/types/components/zd-tree/ZdTree.d.ts +1879 -1878
  284. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +28 -26
  285. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +74 -74
  286. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +4178 -4178
  287. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +92 -92
  288. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +124 -124
  289. package/types/composables/cellSelection.d.ts +281 -281
  290. package/types/composables/columnDrag.d.ts +9 -9
  291. package/types/composables/columnResize.d.ts +18 -18
  292. package/types/composables/density.d.ts +12 -12
  293. package/types/composables/doubleClick.d.ts +6 -6
  294. package/types/composables/fixedColumns.d.ts +14 -14
  295. package/types/composables/gridColorVars.d.ts +13 -13
  296. package/types/composables/gridColumns.d.ts +285 -285
  297. package/types/composables/gridSelection.d.ts +15 -15
  298. package/types/composables/gridSorting.d.ts +17 -17
  299. package/types/composables/hasSlot.d.ts +8 -8
  300. package/types/composables/index.d.ts +16 -16
  301. package/types/composables/maska.d.ts +16 -16
  302. package/types/composables/tableNavigation.d.ts +11 -11
  303. package/types/composables/useIsMobile.d.ts +3 -0
  304. package/types/composables/useTableLayout.d.ts +25 -25
  305. package/types/composables/virtualScroll.d.ts +26 -26
  306. package/types/composables/watchUrl.d.ts +8 -8
  307. package/types/errors/index.d.ts +3 -2
  308. package/types/errors/not-provided.d.ts +7 -7
  309. package/types/errors/row-not-found.d.ts +7 -7
  310. package/types/errors/zeedhi-error.d.ts +6 -6
  311. package/types/index.d.ts +22 -21
  312. package/types/propsMixins/heightProps.d.ts +17 -17
  313. package/types/propsMixins/index.d.ts +5 -5
  314. package/types/propsMixins/interfaces.d.ts +2 -2
  315. package/types/propsMixins/widthProps.d.ts +13 -13
  316. package/types/utils/buildProps.d.ts +2 -2
  317. package/types/utils/fillHeight.d.ts +1 -1
  318. package/types/utils/icons/icons.d.ts +5 -5
  319. package/types/utils/index.d.ts +6 -7
  320. package/types/utils/isArrayOperation.d.ts +2 -2
  321. package/types/utils/logger/logger.d.ts +3 -3
  322. package/types/utils/mergeDictionaries.d.ts +3 -3
  323. package/types/utils/plugins/formatSizePlugin.d.ts +1 -1
  324. package/types/utils/plugins/getIconPlugin.d.ts +1 -1
  325. package/types/utils/plugins/index.d.ts +4 -4
  326. package/types/utils/plugins/styleObjectPlugin.d.ts +1 -1
  327. package/rollup.config.prod.js +0 -26
  328. package/rollup.scss.config.js +0 -13
  329. package/src/components/tek-grid/TekGrid.ts +0 -320
  330. package/src/components/tek-grid/TekGrid.vue +0 -235
  331. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +0 -243
  332. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +0 -93
  333. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +0 -147
  334. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +0 -78
  335. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +0 -97
  336. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +0 -273
  337. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +0 -469
  338. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +0 -512
  339. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +0 -46
  340. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +0 -28
  341. package/src/components/tek-grid/indentation/TekGridIndentation.ts +0 -21
  342. package/src/components/tek-grid/indentation/TekGridIndentation.vue +0 -33
  343. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +0 -117
  344. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +0 -172
  345. package/src/components/tek-grid/row/TekGridFooterRow.ts +0 -62
  346. package/src/components/tek-grid/row/TekGridFooterRow.vue +0 -64
  347. package/src/components/tek-grid/row/TekGridGroupRow.ts +0 -65
  348. package/src/components/tek-grid/row/TekGridGroupRow.vue +0 -65
  349. package/src/composables/useTableLayout.ts +0 -293
  350. package/src/utils/isArrayOperation.ts +0 -5
@@ -1,960 +1,986 @@
1
- import { PropType } from 'vue';
2
- export declare const ZdDateInputProps: {
3
- allowedDates: {
4
- type: PropType<string | string[] | ((date: string) => boolean)>;
5
- default: undefined;
6
- };
7
- appendIcon: {
8
- type: StringConstructor;
9
- default: string;
10
- };
11
- appendOuterIcon: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- autocomplete: {
16
- type: (StringConstructor | BooleanConstructor)[];
17
- default: boolean;
18
- };
19
- color: {
20
- type: StringConstructor;
21
- default: string;
22
- };
23
- dateFormat: {
24
- type: (StringConstructor | {
25
- (arrayLength: number): string[];
26
- (...items: string[]): string[];
27
- new (arrayLength: number): string[];
28
- new (...items: string[]): string[];
29
- isArray(arg: any): arg is any[];
30
- readonly prototype: any[];
31
- from<T>(arrayLike: ArrayLike<T>): T[];
32
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
33
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
34
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
35
- of<T_4>(...items: T_4[]): T_4[];
36
- readonly [Symbol.species]: ArrayConstructor;
37
- })[];
38
- };
39
- displayFormat: {
40
- type: StringConstructor;
41
- };
42
- firstDayOfWeek: {
43
- type: (StringConstructor | NumberConstructor)[];
44
- default: number;
45
- };
46
- fullWidth: {
47
- type: (StringConstructor | BooleanConstructor)[];
48
- default: boolean;
49
- };
50
- prependIcon: {
51
- type: StringConstructor;
52
- default: string;
53
- };
54
- prependOuterIcon: {
55
- type: StringConstructor;
56
- default: string;
57
- };
58
- showWeek: {
59
- type: (StringConstructor | BooleanConstructor)[];
60
- default: boolean;
61
- };
62
- showDatePicker: {
63
- type: (StringConstructor | BooleanConstructor)[];
64
- default: boolean;
65
- };
66
- width: {
67
- type: (StringConstructor | NumberConstructor)[];
68
- default: number;
69
- };
70
- mask: {
71
- type: StringConstructor;
72
- default: undefined;
73
- };
74
- inputFormat: {
75
- type: StringConstructor;
76
- };
77
- helperOptions: {
78
- type: (StringConstructor | ArrayConstructor)[];
79
- default: () => never[];
80
- };
81
- helperValue: {
82
- type: StringConstructor;
83
- default: string;
84
- };
85
- max: {
86
- type: StringConstructor;
87
- default: string;
88
- };
89
- min: {
90
- type: StringConstructor;
91
- default: string;
92
- };
93
- viewMode: {
94
- type: StringConstructor;
95
- default: string;
96
- };
97
- prefix: {
98
- type: StringConstructor;
99
- default: string;
100
- };
101
- suffix: {
102
- type: StringConstructor;
103
- default: string;
104
- };
105
- valueWithPrefix: {
106
- type: (StringConstructor | BooleanConstructor)[];
107
- default: boolean;
108
- };
109
- valueWithSuffix: {
110
- type: (StringConstructor | BooleanConstructor)[];
111
- default: boolean;
112
- };
113
- type: {
114
- type: StringConstructor;
115
- default: string;
116
- };
117
- disableMaska: {
118
- type: BooleanConstructor;
119
- default: boolean;
120
- };
121
- minWidth: {
122
- type: (StringConstructor | NumberConstructor)[];
123
- default: string;
124
- };
125
- maxWidth: {
126
- type: (StringConstructor | NumberConstructor)[];
127
- default: string;
128
- };
129
- fillHeight: {
130
- type: (StringConstructor | BooleanConstructor)[];
131
- default: boolean;
132
- };
133
- height: {
134
- type: (StringConstructor | NumberConstructor)[];
135
- };
136
- minHeight: {
137
- type: (StringConstructor | NumberConstructor)[];
138
- default: string;
139
- };
140
- maxHeight: {
141
- type: (StringConstructor | NumberConstructor)[];
142
- default: string;
143
- };
144
- align: {
145
- type: StringConstructor;
146
- default: string;
147
- };
148
- alwaysShowError: {
149
- type: (StringConstructor | BooleanConstructor)[];
150
- default: boolean;
151
- };
152
- autofill: {
153
- type: (StringConstructor | BooleanConstructor)[];
154
- default: boolean;
155
- };
156
- clearable: {
157
- type: (StringConstructor | BooleanConstructor)[];
158
- default: boolean;
159
- };
160
- dense: {
161
- type: (StringConstructor | BooleanConstructor)[];
162
- default: boolean;
163
- };
164
- disabled: {
165
- type: (StringConstructor | BooleanConstructor)[];
166
- default: boolean;
167
- };
168
- hint: {
169
- type: StringConstructor;
170
- default: string;
171
- };
172
- label: {
173
- type: StringConstructor;
174
- default: string;
175
- };
176
- maxLength: {
177
- type: (StringConstructor | NumberConstructor)[];
178
- default: undefined;
179
- };
180
- persistentHint: {
181
- type: (StringConstructor | BooleanConstructor)[];
182
- default: boolean;
183
- };
184
- placeholder: {
185
- type: StringConstructor;
186
- default: string;
187
- };
188
- readonly: {
189
- type: (StringConstructor | BooleanConstructor)[];
190
- default: boolean;
191
- };
192
- autoHintDetails: {
193
- type: (StringConstructor | BooleanConstructor)[];
194
- default: boolean;
195
- };
196
- reverse: {
197
- type: (StringConstructor | BooleanConstructor)[];
198
- default: boolean;
199
- };
200
- showBorder: {
201
- type: (StringConstructor | BooleanConstructor)[];
202
- default: boolean;
203
- };
204
- showHelper: {
205
- type: (StringConstructor | BooleanConstructor)[];
206
- default: boolean;
207
- };
208
- showLabel: {
209
- type: (StringConstructor | BooleanConstructor)[];
210
- default: boolean;
211
- };
212
- storePath: {
213
- type: StringConstructor;
214
- default: string;
215
- };
216
- validations: {
217
- type: (StringConstructor | ObjectConstructor)[];
218
- default: {};
219
- };
220
- value: {
221
- default: null;
222
- };
223
- children: {
224
- type: (StringConstructor | {
225
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
226
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
227
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
228
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
229
- isArray(arg: any): arg is any[];
230
- readonly prototype: any[];
231
- from<T>(arrayLike: ArrayLike<T>): T[];
232
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
233
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
234
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
235
- of<T_4>(...items: T_4[]): T_4[];
236
- readonly [Symbol.species]: ArrayConstructor;
237
- })[];
238
- default(): never[];
239
- };
240
- component: {
241
- type: StringConstructor;
242
- };
243
- allowDuplicate: {
244
- type: (StringConstructor | BooleanConstructor)[];
245
- default: boolean;
246
- };
247
- autofocus: {
248
- type: (StringConstructor | BooleanConstructor)[];
249
- default: boolean;
250
- };
251
- cssClass: {
252
- type: StringConstructor;
253
- default: string;
254
- };
255
- cssStyle: {
256
- type: (StringConstructor | (() => import("vue").StyleValue))[];
257
- default: string;
258
- };
259
- dark: {
260
- type: (StringConstructor | BooleanConstructor)[];
261
- default: boolean;
262
- };
263
- directives: {
264
- type: ObjectConstructor;
265
- default(): {};
266
- };
267
- events: {
268
- type: ObjectConstructor;
269
- default(): {};
270
- };
271
- instanceObject: {
272
- type: ObjectConstructor;
273
- };
274
- isVisible: {
275
- type: (StringConstructor | BooleanConstructor)[];
276
- default: boolean;
277
- };
278
- keyMap: {
279
- type: ObjectConstructor;
280
- default(): {};
281
- };
282
- light: {
283
- type: (StringConstructor | BooleanConstructor)[];
284
- default: boolean;
285
- };
286
- name: {
287
- type: StringConstructor;
288
- required: true;
289
- };
290
- parent: {
291
- type: ObjectConstructor;
292
- };
293
- tabStop: {
294
- type: (StringConstructor | BooleanConstructor)[];
295
- default: boolean;
296
- };
297
- theme: {
298
- type: StringConstructor;
299
- };
300
- };
301
- declare const dateInputComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
302
- allowedDates: {
303
- type: PropType<string | string[] | ((date: string) => boolean)>;
304
- default: undefined;
305
- };
306
- appendIcon: {
307
- type: StringConstructor;
308
- default: string;
309
- };
310
- appendOuterIcon: {
311
- type: StringConstructor;
312
- default: string;
313
- };
314
- autocomplete: {
315
- type: (StringConstructor | BooleanConstructor)[];
316
- default: boolean;
317
- };
318
- color: {
319
- type: StringConstructor;
320
- default: string;
321
- };
322
- dateFormat: {
323
- type: (StringConstructor | {
324
- (arrayLength: number): string[];
325
- (...items: string[]): string[];
326
- new (arrayLength: number): string[];
327
- new (...items: string[]): string[];
328
- isArray(arg: any): arg is any[];
329
- readonly prototype: any[];
330
- from<T>(arrayLike: ArrayLike<T>): T[];
331
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
332
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
333
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
334
- of<T_4>(...items: T_4[]): T_4[];
335
- readonly [Symbol.species]: ArrayConstructor;
336
- })[];
337
- };
338
- displayFormat: {
339
- type: StringConstructor;
340
- };
341
- firstDayOfWeek: {
342
- type: (StringConstructor | NumberConstructor)[];
343
- default: number;
344
- };
345
- fullWidth: {
346
- type: (StringConstructor | BooleanConstructor)[];
347
- default: boolean;
348
- };
349
- prependIcon: {
350
- type: StringConstructor;
351
- default: string;
352
- };
353
- prependOuterIcon: {
354
- type: StringConstructor;
355
- default: string;
356
- };
357
- showWeek: {
358
- type: (StringConstructor | BooleanConstructor)[];
359
- default: boolean;
360
- };
361
- showDatePicker: {
362
- type: (StringConstructor | BooleanConstructor)[];
363
- default: boolean;
364
- };
365
- width: {
366
- type: (StringConstructor | NumberConstructor)[];
367
- default: number;
368
- };
369
- mask: {
370
- type: StringConstructor;
371
- default: undefined;
372
- };
373
- inputFormat: {
374
- type: StringConstructor;
375
- };
376
- helperOptions: {
377
- type: (StringConstructor | ArrayConstructor)[];
378
- default: () => never[];
379
- };
380
- helperValue: {
381
- type: StringConstructor;
382
- default: string;
383
- };
384
- max: {
385
- type: StringConstructor;
386
- default: string;
387
- };
388
- min: {
389
- type: StringConstructor;
390
- default: string;
391
- };
392
- viewMode: {
393
- type: StringConstructor;
394
- default: string;
395
- };
396
- prefix: {
397
- type: StringConstructor;
398
- default: string;
399
- };
400
- suffix: {
401
- type: StringConstructor;
402
- default: string;
403
- };
404
- valueWithPrefix: {
405
- type: (StringConstructor | BooleanConstructor)[];
406
- default: boolean;
407
- };
408
- valueWithSuffix: {
409
- type: (StringConstructor | BooleanConstructor)[];
410
- default: boolean;
411
- };
412
- type: {
413
- type: StringConstructor;
414
- default: string;
415
- };
416
- disableMaska: {
417
- type: BooleanConstructor;
418
- default: boolean;
419
- };
420
- minWidth: {
421
- type: (StringConstructor | NumberConstructor)[];
422
- default: string;
423
- };
424
- maxWidth: {
425
- type: (StringConstructor | NumberConstructor)[];
426
- default: string;
427
- };
428
- fillHeight: {
429
- type: (StringConstructor | BooleanConstructor)[];
430
- default: boolean;
431
- };
432
- height: {
433
- type: (StringConstructor | NumberConstructor)[];
434
- };
435
- minHeight: {
436
- type: (StringConstructor | NumberConstructor)[];
437
- default: string;
438
- };
439
- maxHeight: {
440
- type: (StringConstructor | NumberConstructor)[];
441
- default: string;
442
- };
443
- align: {
444
- type: StringConstructor;
445
- default: string;
446
- };
447
- alwaysShowError: {
448
- type: (StringConstructor | BooleanConstructor)[];
449
- default: boolean;
450
- };
451
- autofill: {
452
- type: (StringConstructor | BooleanConstructor)[];
453
- default: boolean;
454
- };
455
- clearable: {
456
- type: (StringConstructor | BooleanConstructor)[];
457
- default: boolean;
458
- };
459
- dense: {
460
- type: (StringConstructor | BooleanConstructor)[];
461
- default: boolean;
462
- };
463
- disabled: {
464
- type: (StringConstructor | BooleanConstructor)[];
465
- default: boolean;
466
- };
467
- hint: {
468
- type: StringConstructor;
469
- default: string;
470
- };
471
- label: {
472
- type: StringConstructor;
473
- default: string;
474
- };
475
- maxLength: {
476
- type: (StringConstructor | NumberConstructor)[];
477
- default: undefined;
478
- };
479
- persistentHint: {
480
- type: (StringConstructor | BooleanConstructor)[];
481
- default: boolean;
482
- };
483
- placeholder: {
484
- type: StringConstructor;
485
- default: string;
486
- };
487
- readonly: {
488
- type: (StringConstructor | BooleanConstructor)[];
489
- default: boolean;
490
- };
491
- autoHintDetails: {
492
- type: (StringConstructor | BooleanConstructor)[];
493
- default: boolean;
494
- };
495
- reverse: {
496
- type: (StringConstructor | BooleanConstructor)[];
497
- default: boolean;
498
- };
499
- showBorder: {
500
- type: (StringConstructor | BooleanConstructor)[];
501
- default: boolean;
502
- };
503
- showHelper: {
504
- type: (StringConstructor | BooleanConstructor)[];
505
- default: boolean;
506
- };
507
- showLabel: {
508
- type: (StringConstructor | BooleanConstructor)[];
509
- default: boolean;
510
- };
511
- storePath: {
512
- type: StringConstructor;
513
- default: string;
514
- };
515
- validations: {
516
- type: (StringConstructor | ObjectConstructor)[];
517
- default: {};
518
- };
519
- value: {
520
- default: null;
521
- };
522
- children: {
523
- type: (StringConstructor | {
524
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
525
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
526
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
527
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
528
- isArray(arg: any): arg is any[];
529
- readonly prototype: any[];
530
- from<T>(arrayLike: ArrayLike<T>): T[];
531
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
532
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
533
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
534
- of<T_4>(...items: T_4[]): T_4[];
535
- readonly [Symbol.species]: ArrayConstructor;
536
- })[];
537
- default(): never[];
538
- };
539
- component: {
540
- type: StringConstructor;
541
- };
542
- allowDuplicate: {
543
- type: (StringConstructor | BooleanConstructor)[];
544
- default: boolean;
545
- };
546
- autofocus: {
547
- type: (StringConstructor | BooleanConstructor)[];
548
- default: boolean;
549
- };
550
- cssClass: {
551
- type: StringConstructor;
552
- default: string;
553
- };
554
- cssStyle: {
555
- type: (StringConstructor | (() => import("vue").StyleValue))[];
556
- default: string;
557
- };
558
- dark: {
559
- type: (StringConstructor | BooleanConstructor)[];
560
- default: boolean;
561
- };
562
- directives: {
563
- type: ObjectConstructor;
564
- default(): {};
565
- };
566
- events: {
567
- type: ObjectConstructor;
568
- default(): {};
569
- };
570
- instanceObject: {
571
- type: ObjectConstructor;
572
- };
573
- isVisible: {
574
- type: (StringConstructor | BooleanConstructor)[];
575
- default: boolean;
576
- };
577
- keyMap: {
578
- type: ObjectConstructor;
579
- default(): {};
580
- };
581
- light: {
582
- type: (StringConstructor | BooleanConstructor)[];
583
- default: boolean;
584
- };
585
- name: {
586
- type: StringConstructor;
587
- required: true;
588
- };
589
- parent: {
590
- type: ObjectConstructor;
591
- };
592
- tabStop: {
593
- type: (StringConstructor | BooleanConstructor)[];
594
- default: boolean;
595
- };
596
- theme: {
597
- type: StringConstructor;
598
- };
599
- }>, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
600
- allowedDates: {
601
- type: PropType<string | string[] | ((date: string) => boolean)>;
602
- default: undefined;
603
- };
604
- appendIcon: {
605
- type: StringConstructor;
606
- default: string;
607
- };
608
- appendOuterIcon: {
609
- type: StringConstructor;
610
- default: string;
611
- };
612
- autocomplete: {
613
- type: (StringConstructor | BooleanConstructor)[];
614
- default: boolean;
615
- };
616
- color: {
617
- type: StringConstructor;
618
- default: string;
619
- };
620
- dateFormat: {
621
- type: (StringConstructor | {
622
- (arrayLength: number): string[];
623
- (...items: string[]): string[];
624
- new (arrayLength: number): string[];
625
- new (...items: string[]): string[];
626
- isArray(arg: any): arg is any[];
627
- readonly prototype: any[];
628
- from<T>(arrayLike: ArrayLike<T>): T[];
629
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
630
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
631
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
632
- of<T_4>(...items: T_4[]): T_4[];
633
- readonly [Symbol.species]: ArrayConstructor;
634
- })[];
635
- };
636
- displayFormat: {
637
- type: StringConstructor;
638
- };
639
- firstDayOfWeek: {
640
- type: (StringConstructor | NumberConstructor)[];
641
- default: number;
642
- };
643
- fullWidth: {
644
- type: (StringConstructor | BooleanConstructor)[];
645
- default: boolean;
646
- };
647
- prependIcon: {
648
- type: StringConstructor;
649
- default: string;
650
- };
651
- prependOuterIcon: {
652
- type: StringConstructor;
653
- default: string;
654
- };
655
- showWeek: {
656
- type: (StringConstructor | BooleanConstructor)[];
657
- default: boolean;
658
- };
659
- showDatePicker: {
660
- type: (StringConstructor | BooleanConstructor)[];
661
- default: boolean;
662
- };
663
- width: {
664
- type: (StringConstructor | NumberConstructor)[];
665
- default: number;
666
- };
667
- mask: {
668
- type: StringConstructor;
669
- default: undefined;
670
- };
671
- inputFormat: {
672
- type: StringConstructor;
673
- };
674
- helperOptions: {
675
- type: (StringConstructor | ArrayConstructor)[];
676
- default: () => never[];
677
- };
678
- helperValue: {
679
- type: StringConstructor;
680
- default: string;
681
- };
682
- max: {
683
- type: StringConstructor;
684
- default: string;
685
- };
686
- min: {
687
- type: StringConstructor;
688
- default: string;
689
- };
690
- viewMode: {
691
- type: StringConstructor;
692
- default: string;
693
- };
694
- prefix: {
695
- type: StringConstructor;
696
- default: string;
697
- };
698
- suffix: {
699
- type: StringConstructor;
700
- default: string;
701
- };
702
- valueWithPrefix: {
703
- type: (StringConstructor | BooleanConstructor)[];
704
- default: boolean;
705
- };
706
- valueWithSuffix: {
707
- type: (StringConstructor | BooleanConstructor)[];
708
- default: boolean;
709
- };
710
- type: {
711
- type: StringConstructor;
712
- default: string;
713
- };
714
- disableMaska: {
715
- type: BooleanConstructor;
716
- default: boolean;
717
- };
718
- minWidth: {
719
- type: (StringConstructor | NumberConstructor)[];
720
- default: string;
721
- };
722
- maxWidth: {
723
- type: (StringConstructor | NumberConstructor)[];
724
- default: string;
725
- };
726
- fillHeight: {
727
- type: (StringConstructor | BooleanConstructor)[];
728
- default: boolean;
729
- };
730
- height: {
731
- type: (StringConstructor | NumberConstructor)[];
732
- };
733
- minHeight: {
734
- type: (StringConstructor | NumberConstructor)[];
735
- default: string;
736
- };
737
- maxHeight: {
738
- type: (StringConstructor | NumberConstructor)[];
739
- default: string;
740
- };
741
- align: {
742
- type: StringConstructor;
743
- default: string;
744
- };
745
- alwaysShowError: {
746
- type: (StringConstructor | BooleanConstructor)[];
747
- default: boolean;
748
- };
749
- autofill: {
750
- type: (StringConstructor | BooleanConstructor)[];
751
- default: boolean;
752
- };
753
- clearable: {
754
- type: (StringConstructor | BooleanConstructor)[];
755
- default: boolean;
756
- };
757
- dense: {
758
- type: (StringConstructor | BooleanConstructor)[];
759
- default: boolean;
760
- };
761
- disabled: {
762
- type: (StringConstructor | BooleanConstructor)[];
763
- default: boolean;
764
- };
765
- hint: {
766
- type: StringConstructor;
767
- default: string;
768
- };
769
- label: {
770
- type: StringConstructor;
771
- default: string;
772
- };
773
- maxLength: {
774
- type: (StringConstructor | NumberConstructor)[];
775
- default: undefined;
776
- };
777
- persistentHint: {
778
- type: (StringConstructor | BooleanConstructor)[];
779
- default: boolean;
780
- };
781
- placeholder: {
782
- type: StringConstructor;
783
- default: string;
784
- };
785
- readonly: {
786
- type: (StringConstructor | BooleanConstructor)[];
787
- default: boolean;
788
- };
789
- autoHintDetails: {
790
- type: (StringConstructor | BooleanConstructor)[];
791
- default: boolean;
792
- };
793
- reverse: {
794
- type: (StringConstructor | BooleanConstructor)[];
795
- default: boolean;
796
- };
797
- showBorder: {
798
- type: (StringConstructor | BooleanConstructor)[];
799
- default: boolean;
800
- };
801
- showHelper: {
802
- type: (StringConstructor | BooleanConstructor)[];
803
- default: boolean;
804
- };
805
- showLabel: {
806
- type: (StringConstructor | BooleanConstructor)[];
807
- default: boolean;
808
- };
809
- storePath: {
810
- type: StringConstructor;
811
- default: string;
812
- };
813
- validations: {
814
- type: (StringConstructor | ObjectConstructor)[];
815
- default: {};
816
- };
817
- value: {
818
- default: null;
819
- };
820
- children: {
821
- type: (StringConstructor | {
822
- (arrayLength: number): import("@zeedhi/common").IComponentRender[];
823
- (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
824
- new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
825
- new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
826
- isArray(arg: any): arg is any[];
827
- readonly prototype: any[];
828
- from<T>(arrayLike: ArrayLike<T>): T[];
829
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
830
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
831
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
832
- of<T_4>(...items: T_4[]): T_4[];
833
- readonly [Symbol.species]: ArrayConstructor;
834
- })[];
835
- default(): never[];
836
- };
837
- component: {
838
- type: StringConstructor;
839
- };
840
- allowDuplicate: {
841
- type: (StringConstructor | BooleanConstructor)[];
842
- default: boolean;
843
- };
844
- autofocus: {
845
- type: (StringConstructor | BooleanConstructor)[];
846
- default: boolean;
847
- };
848
- cssClass: {
849
- type: StringConstructor;
850
- default: string;
851
- };
852
- cssStyle: {
853
- type: (StringConstructor | (() => import("vue").StyleValue))[];
854
- default: string;
855
- };
856
- dark: {
857
- type: (StringConstructor | BooleanConstructor)[];
858
- default: boolean;
859
- };
860
- directives: {
861
- type: ObjectConstructor;
862
- default(): {};
863
- };
864
- events: {
865
- type: ObjectConstructor;
866
- default(): {};
867
- };
868
- instanceObject: {
869
- type: ObjectConstructor;
870
- };
871
- isVisible: {
872
- type: (StringConstructor | BooleanConstructor)[];
873
- default: boolean;
874
- };
875
- keyMap: {
876
- type: ObjectConstructor;
877
- default(): {};
878
- };
879
- light: {
880
- type: (StringConstructor | BooleanConstructor)[];
881
- default: boolean;
882
- };
883
- name: {
884
- type: StringConstructor;
885
- required: true;
886
- };
887
- parent: {
888
- type: ObjectConstructor;
889
- };
890
- tabStop: {
891
- type: (StringConstructor | BooleanConstructor)[];
892
- default: boolean;
893
- };
894
- theme: {
895
- type: StringConstructor;
896
- };
897
- }>> & Readonly<{}>, {
898
- reverse: string | boolean;
899
- allowDuplicate: string | boolean;
900
- type: string;
901
- autofocus: string | boolean;
902
- children: string | import("@zeedhi/common").IComponentRender[];
903
- cssClass: string;
904
- cssStyle: import("vue").StyleValue;
905
- dark: string | boolean;
906
- directives: Record<string, any>;
907
- events: Record<string, any>;
908
- isVisible: string | boolean;
909
- keyMap: Record<string, any>;
910
- light: string | boolean;
911
- tabStop: string | boolean;
912
- align: string;
913
- alwaysShowError: string | boolean;
914
- autofill: string | boolean;
915
- clearable: string | boolean;
916
- color: string;
917
- dense: string | boolean;
918
- disabled: string | boolean;
919
- hint: string;
920
- label: string;
921
- mask: string;
922
- maxLength: string | number;
923
- persistentHint: string | boolean;
924
- placeholder: string;
925
- readonly: string | boolean;
926
- autoHintDetails: string | boolean;
927
- showBorder: string | boolean;
928
- showHelper: string | boolean;
929
- showLabel: string | boolean;
930
- storePath: string;
931
- validations: string | Record<string, any>;
932
- value: null;
933
- width: string | number;
934
- minWidth: string | number;
935
- maxWidth: string | number;
936
- fillHeight: string | boolean;
937
- minHeight: string | number;
938
- maxHeight: string | number;
939
- appendIcon: string;
940
- appendOuterIcon: string;
941
- prefix: string;
942
- prependIcon: string;
943
- prependOuterIcon: string;
944
- suffix: string;
945
- valueWithPrefix: string | boolean;
946
- valueWithSuffix: string | boolean;
947
- disableMaska: boolean;
948
- allowedDates: string | string[] | ((date: string) => boolean);
949
- autocomplete: string | boolean;
950
- firstDayOfWeek: string | number;
951
- fullWidth: string | boolean;
952
- showWeek: string | boolean;
953
- showDatePicker: string | boolean;
954
- helperOptions: string | unknown[];
955
- helperValue: string;
956
- max: string;
957
- min: string;
958
- viewMode: string;
959
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
960
- export default dateInputComponent;
1
+ import { PropType } from 'vue';
2
+ export declare const ZdDateInputProps: {
3
+ allowedDates: {
4
+ type: PropType<string | string[] | ((date: string) => boolean)>;
5
+ default: undefined;
6
+ };
7
+ appendIcon: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ appendOuterIcon: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ autocomplete: {
16
+ type: (BooleanConstructor | StringConstructor)[];
17
+ default: boolean;
18
+ };
19
+ color: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ dateFormat: {
24
+ type: (StringConstructor | {
25
+ (arrayLength: number): string[];
26
+ (...items: string[]): string[];
27
+ new (arrayLength: number): string[];
28
+ new (...items: string[]): string[];
29
+ isArray(arg: any): arg is any[];
30
+ readonly prototype: any[];
31
+ from<T>(arrayLike: ArrayLike<T>): T[];
32
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
33
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
34
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
35
+ of<T_4>(...items: T_4[]): T_4[];
36
+ readonly [Symbol.species]: ArrayConstructor;
37
+ })[];
38
+ };
39
+ displayFormat: {
40
+ type: StringConstructor;
41
+ };
42
+ firstDayOfWeek: {
43
+ type: (NumberConstructor | StringConstructor)[];
44
+ default: number;
45
+ };
46
+ fullWidth: {
47
+ type: (BooleanConstructor | StringConstructor)[];
48
+ default: boolean;
49
+ };
50
+ prependIcon: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ prependOuterIcon: {
55
+ type: StringConstructor;
56
+ default: string;
57
+ };
58
+ showWeek: {
59
+ type: (BooleanConstructor | StringConstructor)[];
60
+ default: boolean;
61
+ };
62
+ showDatePicker: {
63
+ type: (BooleanConstructor | StringConstructor)[];
64
+ default: boolean;
65
+ };
66
+ width: {
67
+ type: (NumberConstructor | StringConstructor)[];
68
+ default: number;
69
+ };
70
+ mask: {
71
+ type: StringConstructor;
72
+ default: undefined;
73
+ };
74
+ inputFormat: {
75
+ type: StringConstructor;
76
+ };
77
+ helperOptions: {
78
+ type: (ArrayConstructor | StringConstructor)[];
79
+ default: () => never[];
80
+ };
81
+ helperValue: {
82
+ type: StringConstructor;
83
+ default: string;
84
+ };
85
+ max: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ min: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ viewMode: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ inputMode: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
101
+ prefix: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ suffix: {
106
+ type: StringConstructor;
107
+ default: string;
108
+ };
109
+ valueWithPrefix: {
110
+ type: (BooleanConstructor | StringConstructor)[];
111
+ default: boolean;
112
+ };
113
+ valueWithSuffix: {
114
+ type: (BooleanConstructor | StringConstructor)[];
115
+ default: boolean;
116
+ };
117
+ type: {
118
+ type: StringConstructor;
119
+ default: string;
120
+ };
121
+ disableMaska: {
122
+ type: BooleanConstructor;
123
+ default: boolean;
124
+ };
125
+ minWidth: {
126
+ type: (NumberConstructor | StringConstructor)[];
127
+ default: string;
128
+ };
129
+ maxWidth: {
130
+ type: (NumberConstructor | StringConstructor)[];
131
+ default: string;
132
+ };
133
+ fillHeight: {
134
+ type: (BooleanConstructor | StringConstructor)[];
135
+ default: boolean;
136
+ };
137
+ height: {
138
+ type: (NumberConstructor | StringConstructor)[];
139
+ };
140
+ minHeight: {
141
+ type: (NumberConstructor | StringConstructor)[];
142
+ default: string;
143
+ };
144
+ maxHeight: {
145
+ type: (NumberConstructor | StringConstructor)[];
146
+ default: string;
147
+ };
148
+ align: {
149
+ type: StringConstructor;
150
+ default: string;
151
+ };
152
+ alwaysShowError: {
153
+ type: (BooleanConstructor | StringConstructor)[];
154
+ default: boolean;
155
+ };
156
+ autofill: {
157
+ type: (BooleanConstructor | StringConstructor)[];
158
+ default: boolean;
159
+ };
160
+ clearable: {
161
+ type: (BooleanConstructor | StringConstructor)[];
162
+ default: boolean;
163
+ };
164
+ dense: {
165
+ type: (BooleanConstructor | StringConstructor)[];
166
+ default: boolean;
167
+ };
168
+ disabled: {
169
+ type: (BooleanConstructor | StringConstructor)[];
170
+ default: boolean;
171
+ };
172
+ hint: {
173
+ type: StringConstructor;
174
+ default: string;
175
+ };
176
+ label: {
177
+ type: StringConstructor;
178
+ default: string;
179
+ };
180
+ maxLength: {
181
+ type: (NumberConstructor | StringConstructor)[];
182
+ default: undefined;
183
+ };
184
+ persistentHint: {
185
+ type: (BooleanConstructor | StringConstructor)[];
186
+ default: boolean;
187
+ };
188
+ placeholder: {
189
+ type: StringConstructor;
190
+ default: string;
191
+ };
192
+ readonly: {
193
+ type: (BooleanConstructor | StringConstructor)[];
194
+ default: boolean;
195
+ };
196
+ autoHintDetails: {
197
+ type: (BooleanConstructor | StringConstructor)[];
198
+ default: boolean;
199
+ };
200
+ reverse: {
201
+ type: (BooleanConstructor | StringConstructor)[];
202
+ default: boolean;
203
+ };
204
+ showBorder: {
205
+ type: (BooleanConstructor | StringConstructor)[];
206
+ default: boolean;
207
+ };
208
+ showHelper: {
209
+ type: (BooleanConstructor | StringConstructor)[];
210
+ default: boolean;
211
+ };
212
+ showLabel: {
213
+ type: (BooleanConstructor | StringConstructor)[];
214
+ default: boolean;
215
+ };
216
+ storePath: {
217
+ type: StringConstructor;
218
+ default: string;
219
+ };
220
+ validations: {
221
+ type: (ObjectConstructor | StringConstructor)[];
222
+ default: {};
223
+ };
224
+ value: {
225
+ default: null;
226
+ };
227
+ grid: {
228
+ default: {};
229
+ type: ObjectConstructor;
230
+ };
231
+ children: {
232
+ type: (StringConstructor | {
233
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
234
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
235
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
236
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
237
+ isArray(arg: any): arg is any[];
238
+ readonly prototype: any[];
239
+ from<T>(arrayLike: ArrayLike<T>): T[];
240
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
241
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
242
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
243
+ of<T_4>(...items: T_4[]): T_4[];
244
+ readonly [Symbol.species]: ArrayConstructor;
245
+ })[];
246
+ default(): never[];
247
+ };
248
+ component: {
249
+ type: StringConstructor;
250
+ };
251
+ allowDuplicate: {
252
+ type: (BooleanConstructor | StringConstructor)[];
253
+ default: boolean;
254
+ };
255
+ autofocus: {
256
+ type: (BooleanConstructor | StringConstructor)[];
257
+ default: boolean;
258
+ };
259
+ cssClass: {
260
+ type: StringConstructor;
261
+ default: string;
262
+ };
263
+ cssStyle: {
264
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
265
+ default: string;
266
+ };
267
+ dark: {
268
+ type: (BooleanConstructor | StringConstructor)[];
269
+ default: boolean;
270
+ };
271
+ directives: {
272
+ type: ObjectConstructor;
273
+ default(): {};
274
+ };
275
+ events: {
276
+ type: ObjectConstructor;
277
+ default(): {};
278
+ };
279
+ instanceObject: {
280
+ type: ObjectConstructor;
281
+ };
282
+ isVisible: {
283
+ type: (BooleanConstructor | StringConstructor)[];
284
+ default: boolean;
285
+ };
286
+ keyMap: {
287
+ type: ObjectConstructor;
288
+ default(): {};
289
+ };
290
+ light: {
291
+ type: (BooleanConstructor | StringConstructor)[];
292
+ default: boolean;
293
+ };
294
+ name: {
295
+ type: StringConstructor;
296
+ required: true;
297
+ };
298
+ parent: {
299
+ type: ObjectConstructor;
300
+ };
301
+ tabStop: {
302
+ type: (BooleanConstructor | StringConstructor)[];
303
+ default: boolean;
304
+ };
305
+ theme: {
306
+ type: StringConstructor;
307
+ };
308
+ };
309
+ declare const dateInputComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
310
+ allowedDates: {
311
+ type: PropType<string | string[] | ((date: string) => boolean)>;
312
+ default: undefined;
313
+ };
314
+ appendIcon: {
315
+ type: StringConstructor;
316
+ default: string;
317
+ };
318
+ appendOuterIcon: {
319
+ type: StringConstructor;
320
+ default: string;
321
+ };
322
+ autocomplete: {
323
+ type: (BooleanConstructor | StringConstructor)[];
324
+ default: boolean;
325
+ };
326
+ color: {
327
+ type: StringConstructor;
328
+ default: string;
329
+ };
330
+ dateFormat: {
331
+ type: (StringConstructor | {
332
+ (arrayLength: number): string[];
333
+ (...items: string[]): string[];
334
+ new (arrayLength: number): string[];
335
+ new (...items: string[]): string[];
336
+ isArray(arg: any): arg is any[];
337
+ readonly prototype: any[];
338
+ from<T>(arrayLike: ArrayLike<T>): T[];
339
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
340
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
341
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
342
+ of<T_4>(...items: T_4[]): T_4[];
343
+ readonly [Symbol.species]: ArrayConstructor;
344
+ })[];
345
+ };
346
+ displayFormat: {
347
+ type: StringConstructor;
348
+ };
349
+ firstDayOfWeek: {
350
+ type: (NumberConstructor | StringConstructor)[];
351
+ default: number;
352
+ };
353
+ fullWidth: {
354
+ type: (BooleanConstructor | StringConstructor)[];
355
+ default: boolean;
356
+ };
357
+ prependIcon: {
358
+ type: StringConstructor;
359
+ default: string;
360
+ };
361
+ prependOuterIcon: {
362
+ type: StringConstructor;
363
+ default: string;
364
+ };
365
+ showWeek: {
366
+ type: (BooleanConstructor | StringConstructor)[];
367
+ default: boolean;
368
+ };
369
+ showDatePicker: {
370
+ type: (BooleanConstructor | StringConstructor)[];
371
+ default: boolean;
372
+ };
373
+ width: {
374
+ type: (NumberConstructor | StringConstructor)[];
375
+ default: number;
376
+ };
377
+ mask: {
378
+ type: StringConstructor;
379
+ default: undefined;
380
+ };
381
+ inputFormat: {
382
+ type: StringConstructor;
383
+ };
384
+ helperOptions: {
385
+ type: (ArrayConstructor | StringConstructor)[];
386
+ default: () => never[];
387
+ };
388
+ helperValue: {
389
+ type: StringConstructor;
390
+ default: string;
391
+ };
392
+ max: {
393
+ type: StringConstructor;
394
+ default: string;
395
+ };
396
+ min: {
397
+ type: StringConstructor;
398
+ default: string;
399
+ };
400
+ viewMode: {
401
+ type: StringConstructor;
402
+ default: string;
403
+ };
404
+ inputMode: {
405
+ type: StringConstructor;
406
+ default: string;
407
+ };
408
+ prefix: {
409
+ type: StringConstructor;
410
+ default: string;
411
+ };
412
+ suffix: {
413
+ type: StringConstructor;
414
+ default: string;
415
+ };
416
+ valueWithPrefix: {
417
+ type: (BooleanConstructor | StringConstructor)[];
418
+ default: boolean;
419
+ };
420
+ valueWithSuffix: {
421
+ type: (BooleanConstructor | StringConstructor)[];
422
+ default: boolean;
423
+ };
424
+ type: {
425
+ type: StringConstructor;
426
+ default: string;
427
+ };
428
+ disableMaska: {
429
+ type: BooleanConstructor;
430
+ default: boolean;
431
+ };
432
+ minWidth: {
433
+ type: (NumberConstructor | StringConstructor)[];
434
+ default: string;
435
+ };
436
+ maxWidth: {
437
+ type: (NumberConstructor | StringConstructor)[];
438
+ default: string;
439
+ };
440
+ fillHeight: {
441
+ type: (BooleanConstructor | StringConstructor)[];
442
+ default: boolean;
443
+ };
444
+ height: {
445
+ type: (NumberConstructor | StringConstructor)[];
446
+ };
447
+ minHeight: {
448
+ type: (NumberConstructor | StringConstructor)[];
449
+ default: string;
450
+ };
451
+ maxHeight: {
452
+ type: (NumberConstructor | StringConstructor)[];
453
+ default: string;
454
+ };
455
+ align: {
456
+ type: StringConstructor;
457
+ default: string;
458
+ };
459
+ alwaysShowError: {
460
+ type: (BooleanConstructor | StringConstructor)[];
461
+ default: boolean;
462
+ };
463
+ autofill: {
464
+ type: (BooleanConstructor | StringConstructor)[];
465
+ default: boolean;
466
+ };
467
+ clearable: {
468
+ type: (BooleanConstructor | StringConstructor)[];
469
+ default: boolean;
470
+ };
471
+ dense: {
472
+ type: (BooleanConstructor | StringConstructor)[];
473
+ default: boolean;
474
+ };
475
+ disabled: {
476
+ type: (BooleanConstructor | StringConstructor)[];
477
+ default: boolean;
478
+ };
479
+ hint: {
480
+ type: StringConstructor;
481
+ default: string;
482
+ };
483
+ label: {
484
+ type: StringConstructor;
485
+ default: string;
486
+ };
487
+ maxLength: {
488
+ type: (NumberConstructor | StringConstructor)[];
489
+ default: undefined;
490
+ };
491
+ persistentHint: {
492
+ type: (BooleanConstructor | StringConstructor)[];
493
+ default: boolean;
494
+ };
495
+ placeholder: {
496
+ type: StringConstructor;
497
+ default: string;
498
+ };
499
+ readonly: {
500
+ type: (BooleanConstructor | StringConstructor)[];
501
+ default: boolean;
502
+ };
503
+ autoHintDetails: {
504
+ type: (BooleanConstructor | StringConstructor)[];
505
+ default: boolean;
506
+ };
507
+ reverse: {
508
+ type: (BooleanConstructor | StringConstructor)[];
509
+ default: boolean;
510
+ };
511
+ showBorder: {
512
+ type: (BooleanConstructor | StringConstructor)[];
513
+ default: boolean;
514
+ };
515
+ showHelper: {
516
+ type: (BooleanConstructor | StringConstructor)[];
517
+ default: boolean;
518
+ };
519
+ showLabel: {
520
+ type: (BooleanConstructor | StringConstructor)[];
521
+ default: boolean;
522
+ };
523
+ storePath: {
524
+ type: StringConstructor;
525
+ default: string;
526
+ };
527
+ validations: {
528
+ type: (ObjectConstructor | StringConstructor)[];
529
+ default: {};
530
+ };
531
+ value: {
532
+ default: null;
533
+ };
534
+ grid: {
535
+ default: {};
536
+ type: ObjectConstructor;
537
+ };
538
+ children: {
539
+ type: (StringConstructor | {
540
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
541
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
542
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
543
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
544
+ isArray(arg: any): arg is any[];
545
+ readonly prototype: any[];
546
+ from<T>(arrayLike: ArrayLike<T>): T[];
547
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
548
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
549
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
550
+ of<T_4>(...items: T_4[]): T_4[];
551
+ readonly [Symbol.species]: ArrayConstructor;
552
+ })[];
553
+ default(): never[];
554
+ };
555
+ component: {
556
+ type: StringConstructor;
557
+ };
558
+ allowDuplicate: {
559
+ type: (BooleanConstructor | StringConstructor)[];
560
+ default: boolean;
561
+ };
562
+ autofocus: {
563
+ type: (BooleanConstructor | StringConstructor)[];
564
+ default: boolean;
565
+ };
566
+ cssClass: {
567
+ type: StringConstructor;
568
+ default: string;
569
+ };
570
+ cssStyle: {
571
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
572
+ default: string;
573
+ };
574
+ dark: {
575
+ type: (BooleanConstructor | StringConstructor)[];
576
+ default: boolean;
577
+ };
578
+ directives: {
579
+ type: ObjectConstructor;
580
+ default(): {};
581
+ };
582
+ events: {
583
+ type: ObjectConstructor;
584
+ default(): {};
585
+ };
586
+ instanceObject: {
587
+ type: ObjectConstructor;
588
+ };
589
+ isVisible: {
590
+ type: (BooleanConstructor | StringConstructor)[];
591
+ default: boolean;
592
+ };
593
+ keyMap: {
594
+ type: ObjectConstructor;
595
+ default(): {};
596
+ };
597
+ light: {
598
+ type: (BooleanConstructor | StringConstructor)[];
599
+ default: boolean;
600
+ };
601
+ name: {
602
+ type: StringConstructor;
603
+ required: true;
604
+ };
605
+ parent: {
606
+ type: ObjectConstructor;
607
+ };
608
+ tabStop: {
609
+ type: (BooleanConstructor | StringConstructor)[];
610
+ default: boolean;
611
+ };
612
+ theme: {
613
+ type: StringConstructor;
614
+ };
615
+ }>, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
616
+ allowedDates: {
617
+ type: PropType<string | string[] | ((date: string) => boolean)>;
618
+ default: undefined;
619
+ };
620
+ appendIcon: {
621
+ type: StringConstructor;
622
+ default: string;
623
+ };
624
+ appendOuterIcon: {
625
+ type: StringConstructor;
626
+ default: string;
627
+ };
628
+ autocomplete: {
629
+ type: (BooleanConstructor | StringConstructor)[];
630
+ default: boolean;
631
+ };
632
+ color: {
633
+ type: StringConstructor;
634
+ default: string;
635
+ };
636
+ dateFormat: {
637
+ type: (StringConstructor | {
638
+ (arrayLength: number): string[];
639
+ (...items: string[]): string[];
640
+ new (arrayLength: number): string[];
641
+ new (...items: string[]): string[];
642
+ isArray(arg: any): arg is any[];
643
+ readonly prototype: any[];
644
+ from<T>(arrayLike: ArrayLike<T>): T[];
645
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
646
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
647
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
648
+ of<T_4>(...items: T_4[]): T_4[];
649
+ readonly [Symbol.species]: ArrayConstructor;
650
+ })[];
651
+ };
652
+ displayFormat: {
653
+ type: StringConstructor;
654
+ };
655
+ firstDayOfWeek: {
656
+ type: (NumberConstructor | StringConstructor)[];
657
+ default: number;
658
+ };
659
+ fullWidth: {
660
+ type: (BooleanConstructor | StringConstructor)[];
661
+ default: boolean;
662
+ };
663
+ prependIcon: {
664
+ type: StringConstructor;
665
+ default: string;
666
+ };
667
+ prependOuterIcon: {
668
+ type: StringConstructor;
669
+ default: string;
670
+ };
671
+ showWeek: {
672
+ type: (BooleanConstructor | StringConstructor)[];
673
+ default: boolean;
674
+ };
675
+ showDatePicker: {
676
+ type: (BooleanConstructor | StringConstructor)[];
677
+ default: boolean;
678
+ };
679
+ width: {
680
+ type: (NumberConstructor | StringConstructor)[];
681
+ default: number;
682
+ };
683
+ mask: {
684
+ type: StringConstructor;
685
+ default: undefined;
686
+ };
687
+ inputFormat: {
688
+ type: StringConstructor;
689
+ };
690
+ helperOptions: {
691
+ type: (ArrayConstructor | StringConstructor)[];
692
+ default: () => never[];
693
+ };
694
+ helperValue: {
695
+ type: StringConstructor;
696
+ default: string;
697
+ };
698
+ max: {
699
+ type: StringConstructor;
700
+ default: string;
701
+ };
702
+ min: {
703
+ type: StringConstructor;
704
+ default: string;
705
+ };
706
+ viewMode: {
707
+ type: StringConstructor;
708
+ default: string;
709
+ };
710
+ inputMode: {
711
+ type: StringConstructor;
712
+ default: string;
713
+ };
714
+ prefix: {
715
+ type: StringConstructor;
716
+ default: string;
717
+ };
718
+ suffix: {
719
+ type: StringConstructor;
720
+ default: string;
721
+ };
722
+ valueWithPrefix: {
723
+ type: (BooleanConstructor | StringConstructor)[];
724
+ default: boolean;
725
+ };
726
+ valueWithSuffix: {
727
+ type: (BooleanConstructor | StringConstructor)[];
728
+ default: boolean;
729
+ };
730
+ type: {
731
+ type: StringConstructor;
732
+ default: string;
733
+ };
734
+ disableMaska: {
735
+ type: BooleanConstructor;
736
+ default: boolean;
737
+ };
738
+ minWidth: {
739
+ type: (NumberConstructor | StringConstructor)[];
740
+ default: string;
741
+ };
742
+ maxWidth: {
743
+ type: (NumberConstructor | StringConstructor)[];
744
+ default: string;
745
+ };
746
+ fillHeight: {
747
+ type: (BooleanConstructor | StringConstructor)[];
748
+ default: boolean;
749
+ };
750
+ height: {
751
+ type: (NumberConstructor | StringConstructor)[];
752
+ };
753
+ minHeight: {
754
+ type: (NumberConstructor | StringConstructor)[];
755
+ default: string;
756
+ };
757
+ maxHeight: {
758
+ type: (NumberConstructor | StringConstructor)[];
759
+ default: string;
760
+ };
761
+ align: {
762
+ type: StringConstructor;
763
+ default: string;
764
+ };
765
+ alwaysShowError: {
766
+ type: (BooleanConstructor | StringConstructor)[];
767
+ default: boolean;
768
+ };
769
+ autofill: {
770
+ type: (BooleanConstructor | StringConstructor)[];
771
+ default: boolean;
772
+ };
773
+ clearable: {
774
+ type: (BooleanConstructor | StringConstructor)[];
775
+ default: boolean;
776
+ };
777
+ dense: {
778
+ type: (BooleanConstructor | StringConstructor)[];
779
+ default: boolean;
780
+ };
781
+ disabled: {
782
+ type: (BooleanConstructor | StringConstructor)[];
783
+ default: boolean;
784
+ };
785
+ hint: {
786
+ type: StringConstructor;
787
+ default: string;
788
+ };
789
+ label: {
790
+ type: StringConstructor;
791
+ default: string;
792
+ };
793
+ maxLength: {
794
+ type: (NumberConstructor | StringConstructor)[];
795
+ default: undefined;
796
+ };
797
+ persistentHint: {
798
+ type: (BooleanConstructor | StringConstructor)[];
799
+ default: boolean;
800
+ };
801
+ placeholder: {
802
+ type: StringConstructor;
803
+ default: string;
804
+ };
805
+ readonly: {
806
+ type: (BooleanConstructor | StringConstructor)[];
807
+ default: boolean;
808
+ };
809
+ autoHintDetails: {
810
+ type: (BooleanConstructor | StringConstructor)[];
811
+ default: boolean;
812
+ };
813
+ reverse: {
814
+ type: (BooleanConstructor | StringConstructor)[];
815
+ default: boolean;
816
+ };
817
+ showBorder: {
818
+ type: (BooleanConstructor | StringConstructor)[];
819
+ default: boolean;
820
+ };
821
+ showHelper: {
822
+ type: (BooleanConstructor | StringConstructor)[];
823
+ default: boolean;
824
+ };
825
+ showLabel: {
826
+ type: (BooleanConstructor | StringConstructor)[];
827
+ default: boolean;
828
+ };
829
+ storePath: {
830
+ type: StringConstructor;
831
+ default: string;
832
+ };
833
+ validations: {
834
+ type: (ObjectConstructor | StringConstructor)[];
835
+ default: {};
836
+ };
837
+ value: {
838
+ default: null;
839
+ };
840
+ grid: {
841
+ default: {};
842
+ type: ObjectConstructor;
843
+ };
844
+ children: {
845
+ type: (StringConstructor | {
846
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
847
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
848
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
849
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
850
+ isArray(arg: any): arg is any[];
851
+ readonly prototype: any[];
852
+ from<T>(arrayLike: ArrayLike<T>): T[];
853
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
854
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
855
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
856
+ of<T_4>(...items: T_4[]): T_4[];
857
+ readonly [Symbol.species]: ArrayConstructor;
858
+ })[];
859
+ default(): never[];
860
+ };
861
+ component: {
862
+ type: StringConstructor;
863
+ };
864
+ allowDuplicate: {
865
+ type: (BooleanConstructor | StringConstructor)[];
866
+ default: boolean;
867
+ };
868
+ autofocus: {
869
+ type: (BooleanConstructor | StringConstructor)[];
870
+ default: boolean;
871
+ };
872
+ cssClass: {
873
+ type: StringConstructor;
874
+ default: string;
875
+ };
876
+ cssStyle: {
877
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
878
+ default: string;
879
+ };
880
+ dark: {
881
+ type: (BooleanConstructor | StringConstructor)[];
882
+ default: boolean;
883
+ };
884
+ directives: {
885
+ type: ObjectConstructor;
886
+ default(): {};
887
+ };
888
+ events: {
889
+ type: ObjectConstructor;
890
+ default(): {};
891
+ };
892
+ instanceObject: {
893
+ type: ObjectConstructor;
894
+ };
895
+ isVisible: {
896
+ type: (BooleanConstructor | StringConstructor)[];
897
+ default: boolean;
898
+ };
899
+ keyMap: {
900
+ type: ObjectConstructor;
901
+ default(): {};
902
+ };
903
+ light: {
904
+ type: (BooleanConstructor | StringConstructor)[];
905
+ default: boolean;
906
+ };
907
+ name: {
908
+ type: StringConstructor;
909
+ required: true;
910
+ };
911
+ parent: {
912
+ type: ObjectConstructor;
913
+ };
914
+ tabStop: {
915
+ type: (BooleanConstructor | StringConstructor)[];
916
+ default: boolean;
917
+ };
918
+ theme: {
919
+ type: StringConstructor;
920
+ };
921
+ }>> & Readonly<{}>, {
922
+ reverse: string | boolean;
923
+ allowDuplicate: string | boolean;
924
+ type: string;
925
+ autofocus: string | boolean;
926
+ children: string | import("@zeedhi/common").IComponentRender[];
927
+ cssClass: string;
928
+ cssStyle: import("vue").StyleValue;
929
+ dark: string | boolean;
930
+ directives: Record<string, any>;
931
+ events: Record<string, any>;
932
+ isVisible: string | boolean;
933
+ keyMap: Record<string, any>;
934
+ light: string | boolean;
935
+ tabStop: string | boolean;
936
+ fillHeight: string | boolean;
937
+ value: null;
938
+ label: string;
939
+ mask: string;
940
+ color: string;
941
+ disabled: string | boolean;
942
+ width: string | number;
943
+ appendIcon: string;
944
+ prependIcon: string;
945
+ dense: string | boolean;
946
+ minWidth: string | number;
947
+ maxWidth: string | number;
948
+ minHeight: string | number;
949
+ maxHeight: string | number;
950
+ align: string;
951
+ alwaysShowError: string | boolean;
952
+ autofill: string | boolean;
953
+ clearable: string | boolean;
954
+ hint: string;
955
+ maxLength: string | number;
956
+ persistentHint: string | boolean;
957
+ placeholder: string;
958
+ readonly: string | boolean;
959
+ autoHintDetails: string | boolean;
960
+ showBorder: string | boolean;
961
+ showHelper: string | boolean;
962
+ showLabel: string | boolean;
963
+ storePath: string;
964
+ validations: string | Record<string, any>;
965
+ grid: Record<string, any>;
966
+ appendOuterIcon: string;
967
+ prefix: string;
968
+ prependOuterIcon: string;
969
+ suffix: string;
970
+ valueWithPrefix: string | boolean;
971
+ valueWithSuffix: string | boolean;
972
+ inputMode: string;
973
+ disableMaska: boolean;
974
+ allowedDates: string | string[] | ((date: string) => boolean);
975
+ autocomplete: string | boolean;
976
+ firstDayOfWeek: string | number;
977
+ fullWidth: string | boolean;
978
+ showWeek: string | boolean;
979
+ showDatePicker: string | boolean;
980
+ helperOptions: string | unknown[];
981
+ helperValue: string;
982
+ max: string;
983
+ min: string;
984
+ viewMode: string;
985
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
986
+ export default dateInputComponent;