@zeedhi/vuetify 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/dist/zd-vuetify.css +25 -2
  2. package/dist/zd-vuetify.min.css +2 -2
  3. package/dist/zd-vuetify.min.js +12 -12
  4. package/dist/zd-vuetify.mjs +346 -123
  5. package/package.json +3 -3
  6. package/src/components/zd-component/ZdComponent.ts +15 -13
  7. package/src/components/zd-tabs/ZdTab.ts +40 -6
  8. package/src/components/zd-tabs/ZdTab.vue +16 -3
  9. package/src/components/zd-tabs/ZdTabItem.ts +2 -2
  10. package/src/components/zd-tabs/ZdTabItem.vue +1 -1
  11. package/src/components/zd-tabs/ZdTabs.ts +96 -2
  12. package/src/components/zd-tabs/ZdTabs.vue +46 -17
  13. package/types/components/tek-grid/TekGrid.d.ts +7258 -0
  14. package/types/components/tek-grid/TekGrid.ts.d.ts +7258 -0
  15. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -0
  16. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +129 -0
  17. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
  18. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
  19. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
  20. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
  21. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -0
  22. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -0
  23. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
  24. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
  25. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
  26. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
  27. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -0
  28. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1892 -0
  29. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
  30. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
  31. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
  32. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
  33. package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +50 -0
  34. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +25 -0
  35. package/types/components/zd-alert/ZdAlert.ts.d.ts +884 -0
  36. package/types/components/zd-badge/ZdBadge.ts.d.ts +624 -0
  37. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +697 -0
  38. package/types/components/zd-button/ZdButton.ts.d.ts +1158 -0
  39. package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +785 -0
  40. package/types/components/zd-card/ZdCard.ts.d.ts +1028 -0
  41. package/types/components/zd-carousel/ZdCarousel.ts.d.ts +2007 -0
  42. package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +642 -0
  43. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +2010 -0
  44. package/types/components/zd-chip/ZdChip.ts.d.ts +1256 -0
  45. package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +791 -0
  46. package/types/components/zd-col/ZdCol.ts.d.ts +741 -0
  47. package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +1583 -0
  48. package/types/components/zd-container/ZdContainer.ts.d.ts +722 -0
  49. package/types/components/zd-currency/ZdCurrency.ts.d.ts +2024 -0
  50. package/types/components/zd-date-input/ZdDateInput.ts.d.ts +960 -0
  51. package/types/components/zd-dialog/ZdDialog.ts.d.ts +262 -0
  52. package/types/components/zd-divider/ZdDivider.ts.d.ts +623 -0
  53. package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +836 -0
  54. package/types/components/zd-footer/ZdFooter.ts.d.ts +1262 -0
  55. package/types/components/zd-form/ZdForm.ts.d.ts +118 -0
  56. package/types/components/zd-frame/ZdFrame.ts.d.ts +138 -0
  57. package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +805 -0
  58. package/types/components/zd-grid/ZdGrid.ts.d.ts +7304 -0
  59. package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +14 -0
  60. package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +68 -0
  61. package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +58 -0
  62. package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +53 -0
  63. package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +112 -0
  64. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +46 -0
  65. package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +165 -0
  66. package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +47 -0
  67. package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +2087 -0
  68. package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +16 -0
  69. package/types/components/zd-grid/row/TableRow.ts.d.ts +34 -0
  70. package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +105 -0
  71. package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +2086 -0
  72. package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +8663 -0
  73. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +637 -0
  74. package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +126 -0
  75. package/types/components/zd-header/ZdHeader.ts.d.ts +1320 -0
  76. package/types/components/zd-icon/ZdIcon.ts.d.ts +383 -0
  77. package/types/components/zd-image/ZdImage.ts.d.ts +753 -0
  78. package/types/components/zd-increment/ZdIncrement.ts.d.ts +2069 -0
  79. package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +2089 -0
  80. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +1645 -0
  81. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +1081 -0
  82. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +2763 -0
  83. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +1627 -0
  84. package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +766 -0
  85. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +2484 -0
  86. package/types/components/zd-layout/ZdLayout.ts.d.ts +647 -0
  87. package/types/components/zd-list/ZdList.ts.d.ts +1140 -0
  88. package/types/components/zd-list/ZdListGroup.ts.d.ts +1332 -0
  89. package/types/components/zd-list/ZdListItem.ts.d.ts +848 -0
  90. package/types/components/zd-loading/ZdLoading.ts.d.ts +350 -0
  91. package/types/components/zd-login/ZdLogin.ts.d.ts +1072 -0
  92. package/types/components/zd-login/ZdLoginButton.ts.d.ts +1910 -0
  93. package/types/components/zd-main/ZdMain.ts.d.ts +619 -0
  94. package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +684 -0
  95. package/types/components/zd-menu/ZdMenu.ts.d.ts +4484 -0
  96. package/types/components/zd-menu/ZdMenuButton.ts.d.ts +1142 -0
  97. package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +6286 -0
  98. package/types/components/zd-menu/ZdMenuLink.ts.d.ts +10437 -0
  99. package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +600 -0
  100. package/types/components/zd-modal/ZdModal.ts.d.ts +10 -0
  101. package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +1137 -0
  102. package/types/components/zd-month/ZdMonth.ts.d.ts +2217 -0
  103. package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +2021 -0
  104. package/types/components/zd-password/ZdPassword.ts.d.ts +2014 -0
  105. package/types/components/zd-progress/ZdProgress.ts.d.ts +859 -0
  106. package/types/components/zd-radio/ZdRadio.ts.d.ts +682 -0
  107. package/types/components/zd-row/ZdRow.ts.d.ts +734 -0
  108. package/types/components/zd-select/ZdSelect.ts.d.ts +313 -0
  109. package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +333 -0
  110. package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +414 -0
  111. package/types/components/zd-switch/ZdSwitch.ts.d.ts +1918 -0
  112. package/types/components/zd-table/ZdTable.ts.d.ts +1092 -0
  113. package/types/components/zd-tabs/ZdTab.d.ts +4 -10
  114. package/types/components/zd-tabs/ZdTab.ts.d.ts +674 -0
  115. package/types/components/zd-tabs/ZdTabItem.d.ts +6 -6
  116. package/types/components/zd-tabs/ZdTabItem.ts.d.ts +268 -0
  117. package/types/components/zd-tabs/ZdTabs.d.ts +20 -1
  118. package/types/components/zd-tabs/ZdTabs.ts.d.ts +929 -0
  119. package/types/components/zd-tag/ZdTag.ts.d.ts +613 -0
  120. package/types/components/zd-text/ZdText.ts.d.ts +670 -0
  121. package/types/components/zd-text-input/ZdTextInput.ts.d.ts +746 -0
  122. package/types/components/zd-textarea/ZdTextarea.ts.d.ts +877 -0
  123. package/types/components/zd-time/ZdTime.ts.d.ts +2224 -0
  124. package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +781 -0
  125. package/types/components/zd-tree/ZdTree.ts.d.ts +1878 -0
  126. package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +26 -0
  127. package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +74 -0
  128. package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +4178 -0
  129. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +92 -0
  130. package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +124 -0
  131. package/types/composables/useTableLayout.d.ts +25 -0
  132. package/types/utils/isArrayOperation.d.ts +2 -0
@@ -0,0 +1,960 @@
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;