@citruslime/ui 2.7.0-beta.2 → 3.0.0-beta.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 (57) hide show
  1. package/README.md +3 -3
  2. package/dist/citrus-lime-ui.es.js +3590 -3507
  3. package/dist/citrus-lime-ui.umd.js +8 -8
  4. package/dist/components/accordion/cl-ui-accordion.vue.d.ts +33 -13
  5. package/dist/components/accordion/header/cl-ui-accordion-header.vue.d.ts +1 -1
  6. package/dist/components/accordion/item/cl-ui-accordion-item.vue.d.ts +37 -25
  7. package/dist/components/app/cl-ui-app.vue.d.ts +34 -15
  8. package/dist/components/button/cl-ui-button.vue.d.ts +43 -38
  9. package/dist/components/calendar/cl-ui-calendar-input.vue.d.ts +30 -54
  10. package/dist/components/calendar/cl-ui-calendar.vue.d.ts +73 -98
  11. package/dist/components/calendar/cl-ui-quick-dates-group.vue.d.ts +19 -22
  12. package/dist/components/calendar/cl-ui-quick-dates.vue.d.ts +20 -34
  13. package/dist/components/card/cl-ui-card.vue.d.ts +40 -24
  14. package/dist/components/combo-box/cl-ui-combo-box.vue.d.ts +97 -146
  15. package/dist/components/combo-box/search-container/cl-ui-combo-box-search.vue.d.ts +70 -95
  16. package/dist/components/combo-box/search-container/header/cl-ui-combo-box-header.vue.d.ts +37 -30
  17. package/dist/components/combo-box/search-container/selectable/cl-ui-combo-box-selectable.vue.d.ts +47 -50
  18. package/dist/components/currency/cl-ui-currency-input.vue.d.ts +51 -78
  19. package/dist/components/file-uploader/cl-ui-file-uploader.vue.d.ts +39 -38
  20. package/dist/components/footer/cl-ui-footer.vue.d.ts +1 -1
  21. package/dist/components/grid/action-row/cl-ui-grid-action-row.vue.d.ts +38 -59
  22. package/dist/components/grid/body/cl-ui-grid-body.vue.d.ts +60 -83
  23. package/dist/components/grid/body/cl-ui-grid-cell-value.vue.d.ts +20 -35
  24. package/dist/components/grid/body/cl-ui-grid-cell.vue.d.ts +37 -46
  25. package/dist/components/grid/body/cl-ui-grid-row.vue.d.ts +40 -58
  26. package/dist/components/grid/cl-ui-grid.vue.d.ts +83 -88
  27. package/dist/components/grid/footer/cl-ui-grid-footer.vue.d.ts +33 -30
  28. package/dist/components/grid/header/cl-ui-grid-filter.vue.d.ts +41 -61
  29. package/dist/components/grid/header/cl-ui-grid-header.vue.d.ts +30 -65
  30. package/dist/components/grid/header/cl-ui-grid-method-selector.vue.d.ts +37 -46
  31. package/dist/components/grid/header/cl-ui-grid-search.vue.d.ts +10 -3
  32. package/dist/components/grid/view-manager/cl-ui-grid-view-manager.vue.d.ts +19 -22
  33. package/dist/components/header/cl-ui-header.vue.d.ts +23 -14
  34. package/dist/components/header/menu/cl-ui-header-menu.vue.d.ts +44 -45
  35. package/dist/components/header/menu/index.d.ts +1 -0
  36. package/dist/components/input/cl-ui-input.vue.d.ts +225 -333
  37. package/dist/components/input-v2/input-checkbox/cl-ui-input-checkbox.vue.d.ts +60 -0
  38. package/dist/components/input-v2/input-checkbox/index.d.ts +1 -0
  39. package/dist/components/input-v2/input-layout-wrapper/cl-ui-input-layout-wrapper.vue.d.ts +21 -21
  40. package/dist/components/input-v2/input-number/cl-ui-input-number.vue.d.ts +29 -25
  41. package/dist/components/input-v2/input-text/cl-ui-input-text.vue.d.ts +26 -22
  42. package/dist/components/language-switcher/cl-ui-language-switcher.vue.d.ts +33 -28
  43. package/dist/components/loading-spinner/cl-ui-loading-spinner.vue.d.ts +1 -1
  44. package/dist/components/login/cl-ui-login.vue.d.ts +44 -28
  45. package/dist/components/modal/cl-ui-modal.vue.d.ts +54 -40
  46. package/dist/components/navigation/cl-ui-navigation.vue.d.ts +39 -15
  47. package/dist/components/navigation/group/cl-ui-navigation-group.vue.d.ts +19 -13
  48. package/dist/components/navigation/icon/cl-ui-navigation-icon.vue.d.ts +30 -27
  49. package/dist/components/navigation/item/cl-ui-navigation-item.vue.d.ts +1 -1
  50. package/dist/components/navigation/section/cl-ui-navigation-section.vue.d.ts +1 -1
  51. package/dist/components/notification/cl-ui-notification.vue.d.ts +32 -20
  52. package/dist/components/slider/cl-ui-slider.vue.d.ts +19 -24
  53. package/dist/components/tab/cl-ui-tab.vue.d.ts +44 -23
  54. package/dist/components/tab/content/cl-ui-tab-content.vue.d.ts +32 -20
  55. package/dist/components/tab/header/cl-ui-tab-header.vue.d.ts +43 -44
  56. package/dist/style.css +1 -1
  57. package/package.json +12 -11
@@ -1,140 +1,76 @@
1
1
  import type { CurrencyInputOptions } from 'vue-currency-input';
2
- import type { InputValidationState, InputValueType, DateRange } from './types';
3
- declare const _default: import("vue").DefineComponent<{
4
- label: {
5
- type: import("vue").PropType<string>;
6
- default: string;
7
- };
8
- disabled: {
9
- type: import("vue").PropType<boolean>;
10
- default: boolean;
11
- };
12
- autocomplete: {
13
- type: import("vue").PropType<string>;
14
- default: string;
15
- };
16
- max: {
17
- type: import("vue").PropType<string | number | null>;
18
- default: null;
19
- };
20
- min: {
21
- type: import("vue").PropType<string | number | null>;
22
- default: null;
23
- };
24
- step: {
25
- type: import("vue").PropType<number>;
26
- default: number;
27
- };
28
- group: {
29
- type: import("vue").PropType<string>;
30
- default: string;
31
- };
32
- timeZone: {
33
- type: import("vue").PropType<string | null>;
34
- default: null;
35
- };
36
- initialDate: {
37
- type: import("vue").PropType<string | null>;
38
- default: null;
39
- };
40
- quickDateScope: {
41
- type: import("vue").PropType<"past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null>;
42
- default: null;
43
- };
44
- dateFormatLocale: {
45
- type: import("vue").PropType<string | null>;
46
- default: null;
47
- };
48
- modelValue: {
49
- type: import("vue").PropType<string | number | boolean | DateRange | null>;
50
- default: undefined;
51
- };
52
- isRequired: {
53
- type: import("vue").PropType<boolean>;
54
- default: boolean;
55
- };
56
- placeholderText: {
57
- type: import("vue").PropType<string>;
58
- default: string;
59
- };
60
- currencyOptions: {
61
- type: import("vue").PropType<CurrencyInputOptions>;
62
- default: undefined;
63
- };
64
- highlightWhenValid: {
65
- type: import("vue").PropType<boolean>;
66
- default: boolean;
67
- };
68
- inputSpecificClasses: {
69
- type: import("vue").PropType<string>;
70
- default: string;
71
- };
72
- showArrows: {
73
- type: import("vue").PropType<boolean>;
74
- default: boolean;
75
- };
76
- inputType: {
77
- type: import("vue").PropType<"number" | "button" | "time" | "text" | "color" | "search" | "date" | "datetime" | "dateRange" | "reset" | "checkbox" | "currency" | "email" | "file" | "password" | "radio" | "range" | "submit" | "tel" | "url">;
78
- required: true;
79
- default: string;
80
- };
81
- customValidationFunction: {
82
- type: import("vue").PropType<(_name: string, _value: InputValueType) => InputValidationState>;
83
- default: undefined;
84
- };
85
- onInputFunction: {
86
- type: import("vue").PropType<(_value: InputValueType) => InputValueType>;
87
- default: undefined;
88
- };
89
- validateImmediately: {
90
- type: import("vue").PropType<boolean>;
91
- default: boolean;
92
- };
93
- validateOn: {
94
- type: import("vue").PropType<"input" | "disabled" | "change">;
95
- default: string;
96
- };
97
- externalErrors: {
98
- type: import("vue").PropType<string[]>;
99
- default: () => never[];
100
- };
101
- requiredText: {
102
- type: import("vue").PropType<string>;
103
- default: string;
104
- };
105
- showLabel: {
106
- type: import("vue").PropType<boolean>;
107
- default: boolean;
108
- };
109
- messageWhenValid: {
110
- type: import("vue").PropType<string>;
111
- default: string;
112
- };
113
- showValidationMessages: {
114
- type: import("vue").PropType<boolean>;
115
- default: boolean;
116
- };
117
- hideRequiredAsterisk: {
118
- type: import("vue").PropType<boolean>;
119
- default: boolean;
120
- };
121
- }, {
2
+ import type { QuickDateName } from '../calendar/quick-dates';
3
+ import type { InputValidationState, InputType, InputValueType, DateRange } from './types';
4
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
5
+ inputType?: "number" | "search" | "button" | "time" | "text" | "color" | "email" | "tel" | "password" | "checkbox" | "date" | "file" | "radio" | "range" | "reset" | "submit" | "url" | "datetime" | "dateRange" | "currency" | undefined;
6
+ modelValue?: InputValueType;
7
+ label?: string | undefined;
8
+ isRequired?: boolean | undefined;
9
+ customValidationFunction?: ((_name: string, _value: InputValueType) => InputValidationState) | undefined;
10
+ onInputFunction?: ((_value: InputValueType) => InputValueType) | undefined;
11
+ min?: string | number | null | undefined;
12
+ max?: string | number | null | undefined;
13
+ step?: number | undefined;
14
+ validateImmediately?: boolean | undefined;
15
+ validateOn?: "input" | "disabled" | "change" | undefined;
16
+ externalErrors?: string[] | undefined;
17
+ disabled?: boolean | undefined;
18
+ timeZone?: string | null | undefined;
19
+ requiredText?: string | undefined;
20
+ placeholderText?: string | undefined;
21
+ group?: string | undefined;
22
+ showLabel?: boolean | undefined;
23
+ showArrows?: boolean | undefined;
24
+ autocomplete?: string | undefined;
25
+ highlightWhenValid?: boolean | undefined;
26
+ messageWhenValid?: string | undefined;
27
+ inputSpecificClasses?: string | undefined;
28
+ showValidationMessages?: boolean | undefined;
29
+ hideRequiredAsterisk?: boolean | undefined;
30
+ initialDate?: string | null | undefined;
31
+ quickDateScope?: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null | undefined;
32
+ dateFormatLocale?: string | null | undefined;
33
+ currencyOptions?: CurrencyInputOptions | undefined;
34
+ }>, {
35
+ inputType: string;
36
+ modelValue: undefined;
37
+ label: string;
38
+ isRequired: boolean;
39
+ customValidationFunction: undefined;
40
+ onInputFunction: undefined;
41
+ min: null;
42
+ max: null;
43
+ step: number;
44
+ validateImmediately: boolean;
45
+ validateOn: string;
46
+ externalErrors: () => never[];
47
+ disabled: boolean;
48
+ timeZone: null;
49
+ requiredText: string;
50
+ placeholderText: string;
51
+ group: string;
52
+ showLabel: boolean;
53
+ showArrows: boolean;
54
+ autocomplete: string;
55
+ highlightWhenValid: boolean;
56
+ messageWhenValid: string;
57
+ inputSpecificClasses: string;
58
+ showValidationMessages: boolean;
59
+ hideRequiredAsterisk: boolean;
60
+ initialDate: null;
61
+ quickDateScope: null;
62
+ dateFormatLocale: null;
63
+ currencyOptions: undefined;
64
+ }>, {
122
65
  focus(): void;
123
66
  blur(): void;
124
67
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
125
- 'update:model-value': (args_0: InputValueType) => void;
126
- click: (event: MouseEvent) => void;
127
- focus: () => void;
128
68
  input: (args_0: {
129
69
  target: EventTarget | import("vue").DefineComponent<{
130
70
  type: {
131
71
  type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
132
72
  default: string;
133
73
  };
134
- placeholder: {
135
- type: import("vue").PropType<string | null>;
136
- default: null;
137
- };
138
74
  disabled: {
139
75
  type: import("vue").PropType<boolean>;
140
76
  default: boolean;
@@ -143,15 +79,19 @@ declare const _default: import("vue").DefineComponent<{
143
79
  type: import("vue").PropType<boolean>;
144
80
  default: boolean;
145
81
  };
82
+ placeholder: {
83
+ type: import("vue").PropType<string | null>;
84
+ default: null;
85
+ };
146
86
  date: {
147
87
  type: import("vue").PropType<string | DateRange | null>;
148
88
  required: true;
149
89
  };
150
- max: {
90
+ min: {
151
91
  type: import("vue").PropType<string | null>;
152
92
  default: null;
153
93
  };
154
- min: {
94
+ max: {
155
95
  type: import("vue").PropType<string | null>;
156
96
  default: null;
157
97
  };
@@ -174,16 +114,12 @@ declare const _default: import("vue").DefineComponent<{
174
114
  }, {
175
115
  focus(): void;
176
116
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
177
- "update:date": (value: string | DateRange | null) => void;
178
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
117
+ "update:date": (args_0: string | DateRange | null) => void;
118
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
179
119
  type: {
180
120
  type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
181
121
  default: string;
182
122
  };
183
- placeholder: {
184
- type: import("vue").PropType<string | null>;
185
- default: null;
186
- };
187
123
  disabled: {
188
124
  type: import("vue").PropType<boolean>;
189
125
  default: boolean;
@@ -192,15 +128,19 @@ declare const _default: import("vue").DefineComponent<{
192
128
  type: import("vue").PropType<boolean>;
193
129
  default: boolean;
194
130
  };
131
+ placeholder: {
132
+ type: import("vue").PropType<string | null>;
133
+ default: null;
134
+ };
195
135
  date: {
196
136
  type: import("vue").PropType<string | DateRange | null>;
197
137
  required: true;
198
138
  };
199
- max: {
139
+ min: {
200
140
  type: import("vue").PropType<string | null>;
201
141
  default: null;
202
142
  };
203
- min: {
143
+ max: {
204
144
  type: import("vue").PropType<string | null>;
205
145
  default: null;
206
146
  };
@@ -221,14 +161,14 @@ declare const _default: import("vue").DefineComponent<{
221
161
  default: null;
222
162
  };
223
163
  }>> & {
224
- "onUpdate:date"?: ((value: string | DateRange | null) => any) | undefined;
164
+ "onUpdate:date"?: ((args_0: string | DateRange | null) => any) | undefined;
225
165
  }, {
226
166
  type: "time" | "date" | "datetime" | "dateRange";
227
- placeholder: string | null;
228
167
  disabled: boolean;
229
168
  required: boolean;
230
- max: string | null;
169
+ placeholder: string | null;
231
170
  min: string | null;
171
+ max: string | null;
232
172
  timeZone: string | null;
233
173
  initialDate: string | null;
234
174
  quickDateScope: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null;
@@ -238,19 +178,19 @@ declare const _default: import("vue").DefineComponent<{
238
178
  required: true;
239
179
  type: import("vue").PropType<number>;
240
180
  };
241
- placeholder: {
242
- type: import("vue").PropType<string>;
243
- default: string;
244
- };
245
181
  disabled: {
246
182
  type: import("vue").PropType<boolean>;
247
183
  default: boolean;
248
184
  };
249
- max: {
185
+ placeholder: {
186
+ type: import("vue").PropType<string>;
187
+ default: string;
188
+ };
189
+ min: {
250
190
  type: import("vue").PropType<number>;
251
191
  required: true;
252
192
  };
253
- min: {
193
+ max: {
254
194
  type: import("vue").PropType<number>;
255
195
  required: true;
256
196
  };
@@ -258,30 +198,28 @@ declare const _default: import("vue").DefineComponent<{
258
198
  type: import("vue").PropType<number>;
259
199
  default: number;
260
200
  };
261
- enforceStep: {
262
- type: import("vue").PropType<boolean>;
263
- default: boolean;
264
- };
265
201
  }, {
266
202
  focus(): void;
267
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
203
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
204
+ "update:value": (value: number) => void;
205
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
268
206
  value: {
269
207
  required: true;
270
208
  type: import("vue").PropType<number>;
271
209
  };
272
- placeholder: {
273
- type: import("vue").PropType<string>;
274
- default: string;
275
- };
276
210
  disabled: {
277
211
  type: import("vue").PropType<boolean>;
278
212
  default: boolean;
279
213
  };
280
- max: {
214
+ placeholder: {
215
+ type: import("vue").PropType<string>;
216
+ default: string;
217
+ };
218
+ min: {
281
219
  type: import("vue").PropType<number>;
282
220
  required: true;
283
221
  };
284
- min: {
222
+ max: {
285
223
  type: import("vue").PropType<number>;
286
224
  required: true;
287
225
  };
@@ -289,138 +227,80 @@ declare const _default: import("vue").DefineComponent<{
289
227
  type: import("vue").PropType<number>;
290
228
  default: number;
291
229
  };
292
- enforceStep: {
293
- type: import("vue").PropType<boolean>;
294
- default: boolean;
295
- };
296
- }>>, {
297
- placeholder: string;
230
+ }>> & {
231
+ "onUpdate:value"?: ((value: number) => any) | undefined;
232
+ }, {
298
233
  disabled: boolean;
234
+ placeholder: string;
299
235
  step: number;
300
- enforceStep: boolean;
301
236
  }, {}> | null;
302
237
  }, args_1: InputValueType) => void;
238
+ click: (event: MouseEvent) => void;
239
+ focus: () => void;
303
240
  change: (args_0: Event, args_1: InputValueType) => void;
241
+ "update:model-value": (args_0: InputValueType) => void;
304
242
  validated: (args_0: boolean, args_1: InputValueType) => void;
305
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
306
- label: {
307
- type: import("vue").PropType<string>;
308
- default: string;
309
- };
310
- disabled: {
311
- type: import("vue").PropType<boolean>;
312
- default: boolean;
313
- };
314
- autocomplete: {
315
- type: import("vue").PropType<string>;
316
- default: string;
317
- };
318
- max: {
319
- type: import("vue").PropType<string | number | null>;
320
- default: null;
321
- };
322
- min: {
323
- type: import("vue").PropType<string | number | null>;
324
- default: null;
325
- };
326
- step: {
327
- type: import("vue").PropType<number>;
328
- default: number;
329
- };
330
- group: {
331
- type: import("vue").PropType<string>;
332
- default: string;
333
- };
334
- timeZone: {
335
- type: import("vue").PropType<string | null>;
336
- default: null;
337
- };
338
- initialDate: {
339
- type: import("vue").PropType<string | null>;
340
- default: null;
341
- };
342
- quickDateScope: {
343
- type: import("vue").PropType<"past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null>;
344
- default: null;
345
- };
346
- dateFormatLocale: {
347
- type: import("vue").PropType<string | null>;
348
- default: null;
349
- };
350
- modelValue: {
351
- type: import("vue").PropType<string | number | boolean | DateRange | null>;
352
- default: undefined;
353
- };
354
- isRequired: {
355
- type: import("vue").PropType<boolean>;
356
- default: boolean;
357
- };
358
- placeholderText: {
359
- type: import("vue").PropType<string>;
360
- default: string;
361
- };
362
- currencyOptions: {
363
- type: import("vue").PropType<CurrencyInputOptions>;
364
- default: undefined;
365
- };
366
- highlightWhenValid: {
367
- type: import("vue").PropType<boolean>;
368
- default: boolean;
369
- };
370
- inputSpecificClasses: {
371
- type: import("vue").PropType<string>;
372
- default: string;
373
- };
374
- showArrows: {
375
- type: import("vue").PropType<boolean>;
376
- default: boolean;
377
- };
378
- inputType: {
379
- type: import("vue").PropType<"number" | "button" | "time" | "text" | "color" | "search" | "date" | "datetime" | "dateRange" | "reset" | "checkbox" | "currency" | "email" | "file" | "password" | "radio" | "range" | "submit" | "tel" | "url">;
380
- required: true;
381
- default: string;
382
- };
383
- customValidationFunction: {
384
- type: import("vue").PropType<(_name: string, _value: InputValueType) => InputValidationState>;
385
- default: undefined;
386
- };
387
- onInputFunction: {
388
- type: import("vue").PropType<(_value: InputValueType) => InputValueType>;
389
- default: undefined;
390
- };
391
- validateImmediately: {
392
- type: import("vue").PropType<boolean>;
393
- default: boolean;
394
- };
395
- validateOn: {
396
- type: import("vue").PropType<"input" | "disabled" | "change">;
397
- default: string;
398
- };
399
- externalErrors: {
400
- type: import("vue").PropType<string[]>;
401
- default: () => never[];
402
- };
403
- requiredText: {
404
- type: import("vue").PropType<string>;
405
- default: string;
406
- };
407
- showLabel: {
408
- type: import("vue").PropType<boolean>;
409
- default: boolean;
410
- };
411
- messageWhenValid: {
412
- type: import("vue").PropType<string>;
413
- default: string;
414
- };
415
- showValidationMessages: {
416
- type: import("vue").PropType<boolean>;
417
- default: boolean;
418
- };
419
- hideRequiredAsterisk: {
420
- type: import("vue").PropType<boolean>;
421
- default: boolean;
422
- };
423
- }>> & {
243
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
244
+ inputType?: "number" | "search" | "button" | "time" | "text" | "color" | "email" | "tel" | "password" | "checkbox" | "date" | "file" | "radio" | "range" | "reset" | "submit" | "url" | "datetime" | "dateRange" | "currency" | undefined;
245
+ modelValue?: InputValueType;
246
+ label?: string | undefined;
247
+ isRequired?: boolean | undefined;
248
+ customValidationFunction?: ((_name: string, _value: InputValueType) => InputValidationState) | undefined;
249
+ onInputFunction?: ((_value: InputValueType) => InputValueType) | undefined;
250
+ min?: string | number | null | undefined;
251
+ max?: string | number | null | undefined;
252
+ step?: number | undefined;
253
+ validateImmediately?: boolean | undefined;
254
+ validateOn?: "input" | "disabled" | "change" | undefined;
255
+ externalErrors?: string[] | undefined;
256
+ disabled?: boolean | undefined;
257
+ timeZone?: string | null | undefined;
258
+ requiredText?: string | undefined;
259
+ placeholderText?: string | undefined;
260
+ group?: string | undefined;
261
+ showLabel?: boolean | undefined;
262
+ showArrows?: boolean | undefined;
263
+ autocomplete?: string | undefined;
264
+ highlightWhenValid?: boolean | undefined;
265
+ messageWhenValid?: string | undefined;
266
+ inputSpecificClasses?: string | undefined;
267
+ showValidationMessages?: boolean | undefined;
268
+ hideRequiredAsterisk?: boolean | undefined;
269
+ initialDate?: string | null | undefined;
270
+ quickDateScope?: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null | undefined;
271
+ dateFormatLocale?: string | null | undefined;
272
+ currencyOptions?: CurrencyInputOptions | undefined;
273
+ }>, {
274
+ inputType: string;
275
+ modelValue: undefined;
276
+ label: string;
277
+ isRequired: boolean;
278
+ customValidationFunction: undefined;
279
+ onInputFunction: undefined;
280
+ min: null;
281
+ max: null;
282
+ step: number;
283
+ validateImmediately: boolean;
284
+ validateOn: string;
285
+ externalErrors: () => never[];
286
+ disabled: boolean;
287
+ timeZone: null;
288
+ requiredText: string;
289
+ placeholderText: string;
290
+ group: string;
291
+ showLabel: boolean;
292
+ showArrows: boolean;
293
+ autocomplete: string;
294
+ highlightWhenValid: boolean;
295
+ messageWhenValid: string;
296
+ inputSpecificClasses: string;
297
+ showValidationMessages: boolean;
298
+ hideRequiredAsterisk: boolean;
299
+ initialDate: null;
300
+ quickDateScope: null;
301
+ dateFormatLocale: null;
302
+ currencyOptions: undefined;
303
+ }>>> & {
424
304
  onFocus?: (() => any) | undefined;
425
305
  onChange?: ((args_0: Event, args_1: InputValueType) => any) | undefined;
426
306
  onInput?: ((args_0: {
@@ -429,10 +309,6 @@ declare const _default: import("vue").DefineComponent<{
429
309
  type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
430
310
  default: string;
431
311
  };
432
- placeholder: {
433
- type: import("vue").PropType<string | null>;
434
- default: null;
435
- };
436
312
  disabled: {
437
313
  type: import("vue").PropType<boolean>;
438
314
  default: boolean;
@@ -441,15 +317,19 @@ declare const _default: import("vue").DefineComponent<{
441
317
  type: import("vue").PropType<boolean>;
442
318
  default: boolean;
443
319
  };
320
+ placeholder: {
321
+ type: import("vue").PropType<string | null>;
322
+ default: null;
323
+ };
444
324
  date: {
445
325
  type: import("vue").PropType<string | DateRange | null>;
446
326
  required: true;
447
327
  };
448
- max: {
328
+ min: {
449
329
  type: import("vue").PropType<string | null>;
450
330
  default: null;
451
331
  };
452
- min: {
332
+ max: {
453
333
  type: import("vue").PropType<string | null>;
454
334
  default: null;
455
335
  };
@@ -472,16 +352,12 @@ declare const _default: import("vue").DefineComponent<{
472
352
  }, {
473
353
  focus(): void;
474
354
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
475
- "update:date": (value: string | DateRange | null) => void;
476
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
355
+ "update:date": (args_0: string | DateRange | null) => void;
356
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
477
357
  type: {
478
358
  type: import("vue").PropType<"time" | "date" | "datetime" | "dateRange">;
479
359
  default: string;
480
360
  };
481
- placeholder: {
482
- type: import("vue").PropType<string | null>;
483
- default: null;
484
- };
485
361
  disabled: {
486
362
  type: import("vue").PropType<boolean>;
487
363
  default: boolean;
@@ -490,15 +366,19 @@ declare const _default: import("vue").DefineComponent<{
490
366
  type: import("vue").PropType<boolean>;
491
367
  default: boolean;
492
368
  };
369
+ placeholder: {
370
+ type: import("vue").PropType<string | null>;
371
+ default: null;
372
+ };
493
373
  date: {
494
374
  type: import("vue").PropType<string | DateRange | null>;
495
375
  required: true;
496
376
  };
497
- max: {
377
+ min: {
498
378
  type: import("vue").PropType<string | null>;
499
379
  default: null;
500
380
  };
501
- min: {
381
+ max: {
502
382
  type: import("vue").PropType<string | null>;
503
383
  default: null;
504
384
  };
@@ -519,14 +399,14 @@ declare const _default: import("vue").DefineComponent<{
519
399
  default: null;
520
400
  };
521
401
  }>> & {
522
- "onUpdate:date"?: ((value: string | DateRange | null) => any) | undefined;
402
+ "onUpdate:date"?: ((args_0: string | DateRange | null) => any) | undefined;
523
403
  }, {
524
404
  type: "time" | "date" | "datetime" | "dateRange";
525
- placeholder: string | null;
526
405
  disabled: boolean;
527
406
  required: boolean;
528
- max: string | null;
407
+ placeholder: string | null;
529
408
  min: string | null;
409
+ max: string | null;
530
410
  timeZone: string | null;
531
411
  initialDate: string | null;
532
412
  quickDateScope: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null;
@@ -536,19 +416,19 @@ declare const _default: import("vue").DefineComponent<{
536
416
  required: true;
537
417
  type: import("vue").PropType<number>;
538
418
  };
539
- placeholder: {
540
- type: import("vue").PropType<string>;
541
- default: string;
542
- };
543
419
  disabled: {
544
420
  type: import("vue").PropType<boolean>;
545
421
  default: boolean;
546
422
  };
547
- max: {
423
+ placeholder: {
424
+ type: import("vue").PropType<string>;
425
+ default: string;
426
+ };
427
+ min: {
548
428
  type: import("vue").PropType<number>;
549
429
  required: true;
550
430
  };
551
- min: {
431
+ max: {
552
432
  type: import("vue").PropType<number>;
553
433
  required: true;
554
434
  };
@@ -556,30 +436,28 @@ declare const _default: import("vue").DefineComponent<{
556
436
  type: import("vue").PropType<number>;
557
437
  default: number;
558
438
  };
559
- enforceStep: {
560
- type: import("vue").PropType<boolean>;
561
- default: boolean;
562
- };
563
439
  }, {
564
440
  focus(): void;
565
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
441
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
442
+ "update:value": (value: number) => void;
443
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
566
444
  value: {
567
445
  required: true;
568
446
  type: import("vue").PropType<number>;
569
447
  };
570
- placeholder: {
571
- type: import("vue").PropType<string>;
572
- default: string;
573
- };
574
448
  disabled: {
575
449
  type: import("vue").PropType<boolean>;
576
450
  default: boolean;
577
451
  };
578
- max: {
452
+ placeholder: {
453
+ type: import("vue").PropType<string>;
454
+ default: string;
455
+ };
456
+ min: {
579
457
  type: import("vue").PropType<number>;
580
458
  required: true;
581
459
  };
582
- min: {
460
+ max: {
583
461
  type: import("vue").PropType<number>;
584
462
  required: true;
585
463
  };
@@ -587,15 +465,12 @@ declare const _default: import("vue").DefineComponent<{
587
465
  type: import("vue").PropType<number>;
588
466
  default: number;
589
467
  };
590
- enforceStep: {
591
- type: import("vue").PropType<boolean>;
592
- default: boolean;
593
- };
594
- }>>, {
595
- placeholder: string;
468
+ }>> & {
469
+ "onUpdate:value"?: ((value: number) => any) | undefined;
470
+ }, {
596
471
  disabled: boolean;
472
+ placeholder: string;
597
473
  step: number;
598
- enforceStep: boolean;
599
474
  }, {}> | null;
600
475
  }, args_1: InputValueType) => any) | undefined;
601
476
  onClick?: ((event: MouseEvent) => any) | undefined;
@@ -604,32 +479,49 @@ declare const _default: import("vue").DefineComponent<{
604
479
  }, {
605
480
  label: string;
606
481
  disabled: boolean;
607
- autocomplete: string;
608
- max: string | number | null;
609
- min: string | number | null;
610
- step: number;
482
+ modelValue: string | number | boolean | DateRange | null;
483
+ placeholderText: string;
611
484
  group: string;
485
+ min: number | string | null;
486
+ max: number | string | null;
612
487
  timeZone: string | null;
613
488
  initialDate: string | null;
614
- quickDateScope: "past" | "future" | ("today" | "this week" | "this month" | "this year" | "yesterday" | "last week" | "last month" | "last year" | "tomorrow" | "next week" | "next month" | "next year")[] | "none" | null;
489
+ quickDateScope: 'past' | 'future' | 'none' | QuickDateName[] | null;
615
490
  dateFormatLocale: string | null;
616
- modelValue: string | number | boolean | DateRange | null;
617
491
  isRequired: boolean;
618
- placeholderText: string;
619
492
  currencyOptions: CurrencyInputOptions;
620
493
  highlightWhenValid: boolean;
621
494
  inputSpecificClasses: string;
495
+ step: number;
622
496
  showArrows: boolean;
623
- inputType: "number" | "button" | "time" | "text" | "color" | "search" | "date" | "datetime" | "dateRange" | "reset" | "checkbox" | "currency" | "email" | "file" | "password" | "radio" | "range" | "submit" | "tel" | "url";
497
+ inputType: InputType;
624
498
  customValidationFunction: (_name: string, _value: InputValueType) => InputValidationState;
625
499
  onInputFunction: (_value: InputValueType) => InputValueType;
626
500
  validateImmediately: boolean;
627
- validateOn: "input" | "disabled" | "change";
501
+ validateOn: 'disabled' | 'input' | 'change';
628
502
  externalErrors: string[];
629
503
  requiredText: string;
630
504
  showLabel: boolean;
505
+ autocomplete: string;
631
506
  messageWhenValid: string;
632
507
  showValidationMessages: boolean;
633
508
  hideRequiredAsterisk: boolean;
634
509
  }, {}>;
635
510
  export default _default;
511
+ type __VLS_WithDefaults<P, D> = {
512
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
513
+ default: D[K];
514
+ }> : P[K];
515
+ };
516
+ type __VLS_Prettify<T> = {
517
+ [K in keyof T]: T[K];
518
+ } & {};
519
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
520
+ type __VLS_TypePropsToOption<T> = {
521
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
522
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
523
+ } : {
524
+ type: import('vue').PropType<T[K]>;
525
+ required: true;
526
+ };
527
+ };