maz-ui 3.5.0 → 3.6.1

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 (174) hide show
  1. package/components/MazAvatar.d.ts +156 -149
  2. package/components/MazAvatar.mjs +656 -0
  3. package/components/MazAvatar.umd.js +2 -0
  4. package/components/MazBackdrop.d.ts +89 -89
  5. package/components/MazBackdrop.mjs +140 -0
  6. package/components/MazBackdrop.umd.js +2 -0
  7. package/components/MazBadge.d.ts +73 -68
  8. package/components/MazBadge.mjs +61 -0
  9. package/components/MazBadge.umd.js +2 -0
  10. package/components/MazBottomSheet.d.ts +36 -29
  11. package/components/MazBottomSheet.mjs +553 -0
  12. package/components/MazBottomSheet.umd.js +2 -0
  13. package/components/MazBtn.d.ts +178 -171
  14. package/components/MazBtn.mjs +371 -0
  15. package/components/MazBtn.umd.js +2 -0
  16. package/components/MazCard.d.ts +194 -183
  17. package/components/MazCard.mjs +1390 -0
  18. package/components/MazCard.umd.js +2 -0
  19. package/components/MazCarousel.d.ts +24 -16
  20. package/components/MazCarousel.mjs +469 -0
  21. package/components/MazCarousel.umd.js +2 -0
  22. package/components/MazChart/includes.d.ts +11 -11
  23. package/components/MazChart.d.ts +114 -114
  24. package/components/MazChart.mjs +135 -0
  25. package/components/MazChart.umd.js +2 -0
  26. package/components/MazCheckbox.d.ts +54 -49
  27. package/components/MazCheckbox.mjs +86 -0
  28. package/components/MazCheckbox.umd.js +2 -0
  29. package/components/MazDialog.d.ts +40 -29
  30. package/components/MazDialog.mjs +566 -0
  31. package/components/MazDialog.umd.js +2 -0
  32. package/components/MazDialogPromise/use-maz-dialog-promise.d.ts +30 -30
  33. package/components/MazDialogPromise.d.ts +36 -28
  34. package/components/MazDialogPromise.mjs +692 -0
  35. package/components/MazDialogPromise.umd.js +2 -0
  36. package/components/MazDrawer.d.ts +69 -59
  37. package/components/MazDrawer.mjs +572 -0
  38. package/components/MazDrawer.umd.js +2 -0
  39. package/components/MazDropzone.d.ts +128 -128
  40. package/components/MazDropzone.mjs +369 -0
  41. package/components/MazDropzone.umd.js +2 -0
  42. package/components/MazGallery.d.ts +144 -144
  43. package/components/MazGallery.mjs +948 -0
  44. package/components/MazGallery.umd.js +2 -0
  45. package/components/MazIcon.d.ts +64 -66
  46. package/components/MazIcon.mjs +161 -0
  47. package/components/MazIcon.umd.js +2 -0
  48. package/components/MazInput.d.ts +276 -276
  49. package/components/MazInput.mjs +750 -0
  50. package/components/MazInput.umd.js +2 -0
  51. package/components/MazInputNumber.d.ts +65 -67
  52. package/components/MazInputNumber.mjs +857 -0
  53. package/components/MazInputNumber.umd.js +2 -0
  54. package/components/MazInputPrice.d.ts +69 -64
  55. package/components/MazInputPrice.mjs +889 -0
  56. package/components/MazInputPrice.umd.js +2 -0
  57. package/components/MazInputTags.d.ts +94 -96
  58. package/components/MazInputTags.mjs +904 -0
  59. package/components/MazInputTags.umd.js +2 -0
  60. package/components/MazLazyImg.d.ts +85 -80
  61. package/components/MazLazyImg.mjs +376 -0
  62. package/components/MazLazyImg.umd.js +2 -0
  63. package/components/MazPhoneNumberInput/constantes/locales.d.ts +12 -12
  64. package/components/MazPhoneNumberInput/types.d.ts +21 -21
  65. package/components/MazPhoneNumberInput/utils/countries-name-list-by-iso-code.d.ts +2 -2
  66. package/components/MazPhoneNumberInput/utils/index.d.ts +12 -12
  67. package/components/MazPhoneNumberInput.d.ts +253 -255
  68. package/components/MazPhoneNumberInput.mjs +1904 -0
  69. package/components/MazPhoneNumberInput.umd.js +2 -0
  70. package/components/MazPicker/MazPickerCalendar.vue.d.ts +135 -137
  71. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarDays.vue.d.ts +20 -22
  72. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarGrid.vue.d.ts +112 -114
  73. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarMonth.vue.d.ts +122 -124
  74. package/components/MazPicker/MazPickerCalendarSwitcher.vue.d.ts +36 -38
  75. package/components/MazPicker/MazPickerContainer.vue.d.ts +210 -212
  76. package/components/MazPicker/MazPickerFooter.vue.d.ts +16 -0
  77. package/components/MazPicker/MazPickerHeader.vue.d.ts +82 -84
  78. package/components/MazPicker/MazPickerMonthSwitcher.vue.d.ts +41 -43
  79. package/components/MazPicker/MazPickerShortcuts.vue.d.ts +60 -62
  80. package/components/MazPicker/MazPickerTime.vue.d.ts +127 -129
  81. package/components/MazPicker/MazPickerYearSwitcher.vue.d.ts +33 -35
  82. package/components/MazPicker/types.d.ts +15 -15
  83. package/components/MazPicker/utils.d.ts +54 -54
  84. package/components/MazPicker.d.ts +311 -313
  85. package/components/MazPicker.mjs +2942 -0
  86. package/components/MazPicker.umd.js +2 -0
  87. package/components/MazRadioButtons.d.ts +77 -69
  88. package/components/MazRadioButtons.mjs +80 -0
  89. package/components/MazRadioButtons.umd.js +2 -0
  90. package/components/MazSelect.d.ts +185 -176
  91. package/components/MazSelect.mjs +1082 -0
  92. package/components/MazSelect.umd.js +2 -0
  93. package/components/MazSlider/utils.d.ts +15 -15
  94. package/components/MazSlider.d.ts +94 -96
  95. package/components/MazSlider.mjs +377 -0
  96. package/components/MazSlider.umd.js +2 -0
  97. package/components/MazSpinner.d.ts +28 -30
  98. package/components/MazSpinner.mjs +59 -0
  99. package/components/MazSpinner.umd.js +2 -0
  100. package/components/MazStepper.d.ts +71 -73
  101. package/components/MazStepper.mjs +227 -0
  102. package/components/MazStepper.umd.js +2 -0
  103. package/components/MazSwitch.d.ts +54 -56
  104. package/components/MazSwitch.mjs +61 -0
  105. package/components/MazSwitch.umd.js +2 -0
  106. package/components/MazTabsBar.d.ts +47 -49
  107. package/components/MazTabsBar.mjs +470 -0
  108. package/components/MazTabsBar.umd.js +2 -0
  109. package/components/MazTabsContent.d.ts +21 -16
  110. package/components/MazTabsContent.mjs +89 -0
  111. package/components/MazTabsContent.umd.js +2 -0
  112. package/components/MazTabsContentItem.d.ts +19 -14
  113. package/components/MazTabsContentItem.mjs +61 -0
  114. package/components/MazTabsContentItem.umd.js +2 -0
  115. package/components/MazTextarea/textarea-autogrow.d.ts +9 -9
  116. package/components/MazTextarea.d.ts +123 -125
  117. package/components/MazTextarea.mjs +260 -0
  118. package/components/MazTextarea.umd.js +2 -0
  119. package/components/MazTransitionExpand.d.ts +9 -4
  120. package/components/MazTransitionExpand.mjs +62 -0
  121. package/components/MazTransitionExpand.umd.js +2 -0
  122. package/components/index.d.ts +33 -33
  123. package/components/index.mjs +35 -0
  124. package/components/index.umd.js +35 -0
  125. package/components/no_photo-410a8f01.mjs +4 -0
  126. package/components/types.d.ts +17 -17
  127. package/css/main.css +1 -1
  128. package/maz-ui.d.ts +234 -232
  129. package/modules/maz-ui.mjs +1892 -0
  130. package/modules/maz-ui.umd.js +2 -0
  131. package/modules/no_photo-410a8f01.mjs +4 -0
  132. package/package.json +43 -52
  133. package/tailwindcss/tailwind.config.js +6 -7
  134. package/tailwindcss/utils/colors.js +1 -3
  135. package/tailwindcss/variables/breakpoints.js +1 -2
  136. package/tailwindcss/variables/utilities.js +1 -2
  137. package/tailwindcss/variables/z-indexes.js +1 -1
  138. package/components/MazAvatar.js +0 -3
  139. package/components/MazBackdrop.js +0 -3
  140. package/components/MazBadge.js +0 -1
  141. package/components/MazBottomSheet.js +0 -3
  142. package/components/MazBtn.js +0 -3
  143. package/components/MazCard.js +0 -3
  144. package/components/MazCarousel.js +0 -3
  145. package/components/MazChart.js +0 -1
  146. package/components/MazCheckbox.js +0 -1
  147. package/components/MazDialog.js +0 -3
  148. package/components/MazDialogPromise.js +0 -3
  149. package/components/MazDrawer.js +0 -3
  150. package/components/MazDropzone.js +0 -3
  151. package/components/MazGallery.js +0 -3
  152. package/components/MazIcon.js +0 -3
  153. package/components/MazInput.js +0 -3
  154. package/components/MazInputNumber.js +0 -3
  155. package/components/MazInputPrice.js +0 -3
  156. package/components/MazInputTags.js +0 -3
  157. package/components/MazLazyImg.js +0 -3
  158. package/components/MazPhoneNumberInput.js +0 -3
  159. package/components/MazPicker.js +0 -3
  160. package/components/MazRadioButtons.js +0 -1
  161. package/components/MazSelect.js +0 -3
  162. package/components/MazSlider.js +0 -3
  163. package/components/MazSpinner.js +0 -1
  164. package/components/MazStepper.js +0 -1
  165. package/components/MazSwitch.js +0 -1
  166. package/components/MazTabsBar.js +0 -3
  167. package/components/MazTabsContent.js +0 -1
  168. package/components/MazTabsContentItem.js +0 -3
  169. package/components/MazTextarea.js +0 -1
  170. package/components/MazTransitionExpand.js +0 -1
  171. package/components/index.js +0 -35
  172. package/components/no_photo-a72545e4.js +0 -1
  173. package/modules/index.js +0 -3
  174. package/modules/no_photo-a72545e4.js +0 -1
@@ -1,313 +1,311 @@
1
- import { type PropType, type StyleValue } from 'vue';
2
- import type { Color, Position } from './types';
3
- import type { PickerValue, PickerShortcut } from './MazPicker/types';
4
- export type { PickerValue, PickerShortcut } from './MazPicker/types';
5
- export type { Color, Position } from './types';
6
- declare const _default: import("vue").DefineComponent<{
7
- modelValue: {
8
- type: PropType<PickerValue>;
9
- default: undefined;
10
- };
11
- format: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- open: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- label: {
20
- type: StringConstructor;
21
- default: undefined;
22
- };
23
- placeholder: {
24
- type: StringConstructor;
25
- default: undefined;
26
- };
27
- inputDateStyle: {
28
- type: PropType<Intl.DateTimeFormatOptions>;
29
- default: () => {
30
- dateStyle: string;
31
- };
32
- };
33
- locale: {
34
- type: StringConstructor;
35
- default: undefined;
36
- };
37
- style: {
38
- type: PropType<StyleValue>;
39
- default: undefined;
40
- };
41
- noHeader: {
42
- type: BooleanConstructor;
43
- default: boolean;
44
- };
45
- disabled: {
46
- type: BooleanConstructor;
47
- default: boolean;
48
- };
49
- firstDayOfWeek: {
50
- type: NumberConstructor;
51
- default: number;
52
- validator: (value: number) => boolean;
53
- };
54
- autoClose: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- customElementSelector: {
59
- type: StringConstructor;
60
- default: undefined;
61
- };
62
- double: {
63
- type: BooleanConstructor;
64
- default: boolean;
65
- };
66
- inline: {
67
- type: BooleanConstructor;
68
- default: boolean;
69
- };
70
- color: {
71
- type: PropType<Color>;
72
- default: string;
73
- validator: (value: Color) => boolean;
74
- };
75
- pickerPosition: {
76
- type: PropType<Position>;
77
- default: undefined;
78
- validator: (value: Position) => boolean;
79
- };
80
- time: {
81
- type: BooleanConstructor;
82
- default: boolean;
83
- };
84
- onlyTime: {
85
- type: BooleanConstructor;
86
- default: boolean;
87
- };
88
- minuteInterval: {
89
- type: NumberConstructor;
90
- default: number;
91
- };
92
- noUseBrowserLocale: {
93
- type: BooleanConstructor;
94
- default: boolean;
95
- };
96
- noFetchLocal: {
97
- type: BooleanConstructor;
98
- default: boolean;
99
- };
100
- noShortcuts: {
101
- type: BooleanConstructor;
102
- default: boolean;
103
- };
104
- shortcuts: {
105
- type: PropType<PickerShortcut[]>;
106
- default: () => {
107
- label: string;
108
- identifier: string;
109
- value: {
110
- start: string;
111
- end: string;
112
- };
113
- }[];
114
- };
115
- shortcut: {
116
- type: StringConstructor;
117
- default: undefined;
118
- };
119
- minDate: {
120
- type: StringConstructor;
121
- default: undefined;
122
- };
123
- maxDate: {
124
- type: StringConstructor;
125
- default: undefined;
126
- };
127
- disabledWeekly: {
128
- type: PropType<number[]>;
129
- default: () => never[];
130
- validator: (value: number) => boolean;
131
- };
132
- disabledDates: {
133
- type: PropType<string[]>;
134
- default: () => never[];
135
- };
136
- disabledHours: {
137
- type: PropType<number[]>;
138
- default: () => never[];
139
- validator: (value: number) => boolean;
140
- };
141
- }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
142
- [key: string]: any;
143
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:model-value" | "close")[], "update:model-value" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
144
- modelValue: {
145
- type: PropType<PickerValue>;
146
- default: undefined;
147
- };
148
- format: {
149
- type: StringConstructor;
150
- default: string;
151
- };
152
- open: {
153
- type: BooleanConstructor;
154
- default: boolean;
155
- };
156
- label: {
157
- type: StringConstructor;
158
- default: undefined;
159
- };
160
- placeholder: {
161
- type: StringConstructor;
162
- default: undefined;
163
- };
164
- inputDateStyle: {
165
- type: PropType<Intl.DateTimeFormatOptions>;
166
- default: () => {
167
- dateStyle: string;
168
- };
169
- };
170
- locale: {
171
- type: StringConstructor;
172
- default: undefined;
173
- };
174
- style: {
175
- type: PropType<StyleValue>;
176
- default: undefined;
177
- };
178
- noHeader: {
179
- type: BooleanConstructor;
180
- default: boolean;
181
- };
182
- disabled: {
183
- type: BooleanConstructor;
184
- default: boolean;
185
- };
186
- firstDayOfWeek: {
187
- type: NumberConstructor;
188
- default: number;
189
- validator: (value: number) => boolean;
190
- };
191
- autoClose: {
192
- type: BooleanConstructor;
193
- default: boolean;
194
- };
195
- customElementSelector: {
196
- type: StringConstructor;
197
- default: undefined;
198
- };
199
- double: {
200
- type: BooleanConstructor;
201
- default: boolean;
202
- };
203
- inline: {
204
- type: BooleanConstructor;
205
- default: boolean;
206
- };
207
- color: {
208
- type: PropType<Color>;
209
- default: string;
210
- validator: (value: Color) => boolean;
211
- };
212
- pickerPosition: {
213
- type: PropType<Position>;
214
- default: undefined;
215
- validator: (value: Position) => boolean;
216
- };
217
- time: {
218
- type: BooleanConstructor;
219
- default: boolean;
220
- };
221
- onlyTime: {
222
- type: BooleanConstructor;
223
- default: boolean;
224
- };
225
- minuteInterval: {
226
- type: NumberConstructor;
227
- default: number;
228
- };
229
- noUseBrowserLocale: {
230
- type: BooleanConstructor;
231
- default: boolean;
232
- };
233
- noFetchLocal: {
234
- type: BooleanConstructor;
235
- default: boolean;
236
- };
237
- noShortcuts: {
238
- type: BooleanConstructor;
239
- default: boolean;
240
- };
241
- shortcuts: {
242
- type: PropType<PickerShortcut[]>;
243
- default: () => {
244
- label: string;
245
- identifier: string;
246
- value: {
247
- start: string;
248
- end: string;
249
- };
250
- }[];
251
- };
252
- shortcut: {
253
- type: StringConstructor;
254
- default: undefined;
255
- };
256
- minDate: {
257
- type: StringConstructor;
258
- default: undefined;
259
- };
260
- maxDate: {
261
- type: StringConstructor;
262
- default: undefined;
263
- };
264
- disabledWeekly: {
265
- type: PropType<number[]>;
266
- default: () => never[];
267
- validator: (value: number) => boolean;
268
- };
269
- disabledDates: {
270
- type: PropType<string[]>;
271
- default: () => never[];
272
- };
273
- disabledHours: {
274
- type: PropType<number[]>;
275
- default: () => never[];
276
- validator: (value: number) => boolean;
277
- };
278
- }>> & {
279
- "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
280
- onClose?: ((...args: any[]) => any) | undefined;
281
- }, {
282
- modelValue: PickerValue;
283
- format: string;
284
- open: boolean;
285
- label: string;
286
- placeholder: string;
287
- inputDateStyle: Intl.DateTimeFormatOptions;
288
- locale: string;
289
- style: StyleValue;
290
- noHeader: boolean;
291
- disabled: boolean;
292
- firstDayOfWeek: number;
293
- autoClose: boolean;
294
- customElementSelector: string;
295
- double: boolean;
296
- inline: boolean;
297
- color: Color;
298
- pickerPosition: Position;
299
- time: boolean;
300
- onlyTime: boolean;
301
- minuteInterval: number;
302
- noUseBrowserLocale: boolean;
303
- noFetchLocal: boolean;
304
- noShortcuts: boolean;
305
- shortcuts: PickerShortcut[];
306
- shortcut: string;
307
- minDate: string;
308
- maxDate: string;
309
- disabledWeekly: number[];
310
- disabledDates: string[];
311
- disabledHours: number[];
312
- }>;
313
- export default _default;
1
+ import { type PropType, type StyleValue } from 'vue';
2
+ import type { Color, Position } from './types';
3
+ import type { PickerValue, PickerShortcut } from './MazPicker/types';
4
+ export type { PickerValue, PickerShortcut } from './MazPicker/types';
5
+ export type { Color, Position } from './types';
6
+ declare const _default: import("vue").DefineComponent<{
7
+ modelValue: {
8
+ type: PropType<PickerValue>;
9
+ default: undefined;
10
+ };
11
+ format: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
15
+ open: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ label: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
23
+ placeholder: {
24
+ type: StringConstructor;
25
+ default: undefined;
26
+ };
27
+ inputDateStyle: {
28
+ type: PropType<Intl.DateTimeFormatOptions>;
29
+ default: () => {
30
+ dateStyle: string;
31
+ };
32
+ };
33
+ locale: {
34
+ type: StringConstructor;
35
+ default: undefined;
36
+ };
37
+ style: {
38
+ type: PropType<StyleValue>;
39
+ default: undefined;
40
+ };
41
+ noHeader: {
42
+ type: BooleanConstructor;
43
+ default: boolean;
44
+ };
45
+ disabled: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ firstDayOfWeek: {
50
+ type: NumberConstructor;
51
+ default: number;
52
+ validator: (value: number) => boolean;
53
+ };
54
+ autoClose: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ customElementSelector: {
59
+ type: StringConstructor;
60
+ default: undefined;
61
+ };
62
+ double: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ inline: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ color: {
71
+ type: PropType<Color>;
72
+ default: string;
73
+ validator: (value: Color) => boolean;
74
+ };
75
+ pickerPosition: {
76
+ type: PropType<Position>;
77
+ default: undefined;
78
+ validator: (value: Position) => boolean;
79
+ };
80
+ time: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
84
+ onlyTime: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ minuteInterval: {
89
+ type: NumberConstructor;
90
+ default: number;
91
+ };
92
+ noUseBrowserLocale: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ noFetchLocal: {
97
+ type: BooleanConstructor;
98
+ default: boolean;
99
+ };
100
+ noShortcuts: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
104
+ shortcuts: {
105
+ type: PropType<PickerShortcut[]>;
106
+ default: () => {
107
+ label: string;
108
+ identifier: string;
109
+ value: {
110
+ start: string;
111
+ end: string;
112
+ };
113
+ }[];
114
+ };
115
+ shortcut: {
116
+ type: StringConstructor;
117
+ default: undefined;
118
+ };
119
+ minDate: {
120
+ type: StringConstructor;
121
+ default: undefined;
122
+ };
123
+ maxDate: {
124
+ type: StringConstructor;
125
+ default: undefined;
126
+ };
127
+ disabledWeekly: {
128
+ type: PropType<number[]>;
129
+ default: () => never[];
130
+ validator: (value: number) => boolean;
131
+ };
132
+ disabledDates: {
133
+ type: PropType<string[]>;
134
+ default: () => never[];
135
+ };
136
+ disabledHours: {
137
+ type: PropType<number[]>;
138
+ default: () => never[];
139
+ validator: (value: number) => boolean;
140
+ };
141
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "update:model-value")[], "close" | "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
142
+ modelValue: {
143
+ type: PropType<PickerValue>;
144
+ default: undefined;
145
+ };
146
+ format: {
147
+ type: StringConstructor;
148
+ default: string;
149
+ };
150
+ open: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ label: {
155
+ type: StringConstructor;
156
+ default: undefined;
157
+ };
158
+ placeholder: {
159
+ type: StringConstructor;
160
+ default: undefined;
161
+ };
162
+ inputDateStyle: {
163
+ type: PropType<Intl.DateTimeFormatOptions>;
164
+ default: () => {
165
+ dateStyle: string;
166
+ };
167
+ };
168
+ locale: {
169
+ type: StringConstructor;
170
+ default: undefined;
171
+ };
172
+ style: {
173
+ type: PropType<StyleValue>;
174
+ default: undefined;
175
+ };
176
+ noHeader: {
177
+ type: BooleanConstructor;
178
+ default: boolean;
179
+ };
180
+ disabled: {
181
+ type: BooleanConstructor;
182
+ default: boolean;
183
+ };
184
+ firstDayOfWeek: {
185
+ type: NumberConstructor;
186
+ default: number;
187
+ validator: (value: number) => boolean;
188
+ };
189
+ autoClose: {
190
+ type: BooleanConstructor;
191
+ default: boolean;
192
+ };
193
+ customElementSelector: {
194
+ type: StringConstructor;
195
+ default: undefined;
196
+ };
197
+ double: {
198
+ type: BooleanConstructor;
199
+ default: boolean;
200
+ };
201
+ inline: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ color: {
206
+ type: PropType<Color>;
207
+ default: string;
208
+ validator: (value: Color) => boolean;
209
+ };
210
+ pickerPosition: {
211
+ type: PropType<Position>;
212
+ default: undefined;
213
+ validator: (value: Position) => boolean;
214
+ };
215
+ time: {
216
+ type: BooleanConstructor;
217
+ default: boolean;
218
+ };
219
+ onlyTime: {
220
+ type: BooleanConstructor;
221
+ default: boolean;
222
+ };
223
+ minuteInterval: {
224
+ type: NumberConstructor;
225
+ default: number;
226
+ };
227
+ noUseBrowserLocale: {
228
+ type: BooleanConstructor;
229
+ default: boolean;
230
+ };
231
+ noFetchLocal: {
232
+ type: BooleanConstructor;
233
+ default: boolean;
234
+ };
235
+ noShortcuts: {
236
+ type: BooleanConstructor;
237
+ default: boolean;
238
+ };
239
+ shortcuts: {
240
+ type: PropType<PickerShortcut[]>;
241
+ default: () => {
242
+ label: string;
243
+ identifier: string;
244
+ value: {
245
+ start: string;
246
+ end: string;
247
+ };
248
+ }[];
249
+ };
250
+ shortcut: {
251
+ type: StringConstructor;
252
+ default: undefined;
253
+ };
254
+ minDate: {
255
+ type: StringConstructor;
256
+ default: undefined;
257
+ };
258
+ maxDate: {
259
+ type: StringConstructor;
260
+ default: undefined;
261
+ };
262
+ disabledWeekly: {
263
+ type: PropType<number[]>;
264
+ default: () => never[];
265
+ validator: (value: number) => boolean;
266
+ };
267
+ disabledDates: {
268
+ type: PropType<string[]>;
269
+ default: () => never[];
270
+ };
271
+ disabledHours: {
272
+ type: PropType<number[]>;
273
+ default: () => never[];
274
+ validator: (value: number) => boolean;
275
+ };
276
+ }>> & {
277
+ onClose?: ((...args: any[]) => any) | undefined;
278
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
279
+ }, {
280
+ label: string;
281
+ style: StyleValue;
282
+ time: boolean;
283
+ color: Color;
284
+ open: boolean;
285
+ modelValue: PickerValue;
286
+ disabled: boolean;
287
+ locale: string;
288
+ placeholder: string;
289
+ inline: boolean;
290
+ noUseBrowserLocale: boolean;
291
+ minDate: string;
292
+ maxDate: string;
293
+ format: string;
294
+ disabledWeekly: number[];
295
+ disabledDates: string[];
296
+ noShortcuts: boolean;
297
+ double: boolean;
298
+ firstDayOfWeek: number;
299
+ shortcuts: PickerShortcut[];
300
+ shortcut: string;
301
+ minuteInterval: number;
302
+ disabledHours: number[];
303
+ noHeader: boolean;
304
+ inputDateStyle: Intl.DateTimeFormatOptions;
305
+ autoClose: boolean;
306
+ customElementSelector: string;
307
+ pickerPosition: Position;
308
+ onlyTime: boolean;
309
+ noFetchLocal: boolean;
310
+ }>;
311
+ export default _default;