@vonage/vivid-vue 3.60.0 → 4.0.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 (44) hide show
  1. package/generated/components/VBanner.vue2.d.ts +3 -3
  2. package/generated/components/VBanner.vue3.d.ts +3 -3
  3. package/generated/components/VButton.vue2.d.ts +2 -19
  4. package/generated/components/VButton.vue3.d.ts +2 -19
  5. package/generated/components/VCheckbox.vue2.d.ts +4 -36
  6. package/generated/components/VCheckbox.vue3.d.ts +4 -36
  7. package/generated/components/VCombobox.vue2.d.ts +2 -19
  8. package/generated/components/VCombobox.vue3.d.ts +2 -19
  9. package/generated/components/VDataGridCell.vue2.d.ts +3 -3
  10. package/generated/components/VDataGridCell.vue3.d.ts +3 -3
  11. package/generated/components/VDatePicker.vue2.d.ts +4 -19
  12. package/generated/components/VDatePicker.vue3.d.ts +4 -19
  13. package/generated/components/VDateRangePicker.vue2.d.ts +2 -63
  14. package/generated/components/VDateRangePicker.vue3.d.ts +2 -63
  15. package/generated/components/VFab.vue2.d.ts +2 -19
  16. package/generated/components/VFab.vue3.d.ts +2 -19
  17. package/generated/components/VFilePicker.vue2.d.ts +2 -19
  18. package/generated/components/VFilePicker.vue3.d.ts +2 -19
  19. package/generated/components/VNumberField.vue2.d.ts +2 -19
  20. package/generated/components/VNumberField.vue3.d.ts +2 -19
  21. package/generated/components/VOption.vue2.d.ts +0 -17
  22. package/generated/components/VOption.vue3.d.ts +0 -17
  23. package/generated/components/VRadio.vue2.d.ts +4 -36
  24. package/generated/components/VRadio.vue3.d.ts +4 -36
  25. package/generated/components/VRangeSlider.vue2.d.ts +2 -65
  26. package/generated/components/VRangeSlider.vue3.d.ts +2 -65
  27. package/generated/components/VSelect.vue2.d.ts +2 -19
  28. package/generated/components/VSelect.vue3.d.ts +2 -19
  29. package/generated/components/VSlider.vue2.d.ts +2 -19
  30. package/generated/components/VSlider.vue3.d.ts +2 -19
  31. package/generated/components/VSwitch.vue2.d.ts +4 -36
  32. package/generated/components/VSwitch.vue3.d.ts +4 -36
  33. package/generated/components/VTab.vue2.d.ts +3 -3
  34. package/generated/components/VTab.vue3.d.ts +3 -3
  35. package/generated/components/VTextArea.vue2.d.ts +2 -19
  36. package/generated/components/VTextArea.vue3.d.ts +2 -19
  37. package/generated/components/VTextField.vue2.d.ts +2 -19
  38. package/generated/components/VTextField.vue3.d.ts +2 -19
  39. package/generated/components/VTimePicker.vue2.d.ts +2 -19
  40. package/generated/components/VTimePicker.vue3.d.ts +2 -19
  41. package/index.cjs +679 -881
  42. package/index.js +679 -881
  43. package/package.json +2 -2
  44. package/web-types.json +6 -198
@@ -37,7 +37,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
37
37
  default: undefined;
38
38
  };
39
39
  ariaLive: {
40
- type: PropType<any>;
40
+ type: PropType<string>;
41
41
  default: undefined;
42
42
  };
43
43
  text: {
@@ -90,7 +90,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
90
90
  default: undefined;
91
91
  };
92
92
  ariaLive: {
93
- type: PropType<any>;
93
+ type: PropType<string>;
94
94
  default: undefined;
95
95
  };
96
96
  text: {
@@ -111,6 +111,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
111
111
  dismissAriaLabel: string;
112
112
  actionHref: string;
113
113
  actionText: string;
114
- ariaLive: any;
114
+ ariaLive: string;
115
115
  }>;
116
116
  export default _default;
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<{
38
38
  default: undefined;
39
39
  };
40
40
  ariaLive: {
41
- type: PropType<any>;
41
+ type: PropType<string>;
42
42
  default: undefined;
43
43
  };
44
44
  text: {
@@ -122,7 +122,7 @@ declare const _default: import("vue").DefineComponent<{
122
122
  default: undefined;
123
123
  };
124
124
  ariaLive: {
125
- type: PropType<any>;
125
+ type: PropType<string>;
126
126
  default: undefined;
127
127
  };
128
128
  text: {
@@ -150,7 +150,7 @@ declare const _default: import("vue").DefineComponent<{
150
150
  dismissAriaLabel: string;
151
151
  actionHref: string;
152
152
  actionText: string;
153
- ariaLive: any;
153
+ ariaLive: string;
154
154
  }, SlotsType<{
155
155
  /**
156
156
  * Add action items to banner using this slot.
@@ -38,14 +38,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
38
38
  type: PropType<string>;
39
39
  default: undefined;
40
40
  };
41
- /**
42
- * The initial value of the form. This value sets the `value` property
43
- * only when the `value` property has not been explicitly set.
44
- */
45
- value: {
46
- type: PropType<string>;
47
- default: undefined;
48
- };
49
41
  /**
50
42
  * The current value of the element. This property serves as a mechanism
51
43
  * to set the `value` property through both property assignment and the
@@ -53,7 +45,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
53
45
  * in UI libraries that bind data through the .setAttribute() API
54
46
  * and don't support IDL attribute binding.
55
47
  */
56
- currentValue: {
48
+ value: {
57
49
  type: PropType<string>;
58
50
  default: undefined;
59
51
  };
@@ -282,14 +274,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
282
274
  type: PropType<string>;
283
275
  default: undefined;
284
276
  };
285
- /**
286
- * The initial value of the form. This value sets the `value` property
287
- * only when the `value` property has not been explicitly set.
288
- */
289
- value: {
290
- type: PropType<string>;
291
- default: undefined;
292
- };
293
277
  /**
294
278
  * The current value of the element. This property serves as a mechanism
295
279
  * to set the `value` property through both property assignment and the
@@ -297,7 +281,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
297
281
  * in UI libraries that bind data through the .setAttribute() API
298
282
  * and don't support IDL attribute binding.
299
283
  */
300
- currentValue: {
284
+ value: {
301
285
  type: PropType<string>;
302
286
  default: undefined;
303
287
  };
@@ -500,7 +484,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
500
484
  rel: string;
501
485
  target: "_self" | "_blank" | "_parent" | "_top";
502
486
  initialValue: string;
503
- currentValue: string;
504
487
  required: boolean;
505
488
  autofocus: boolean;
506
489
  form: string;
@@ -39,14 +39,6 @@ declare const _default: import("vue").DefineComponent<{
39
39
  type: PropType<string>;
40
40
  default: undefined;
41
41
  };
42
- /**
43
- * The initial value of the form. This value sets the `value` property
44
- * only when the `value` property has not been explicitly set.
45
- */
46
- value: {
47
- type: PropType<string>;
48
- default: undefined;
49
- };
50
42
  /**
51
43
  * The current value of the element. This property serves as a mechanism
52
44
  * to set the `value` property through both property assignment and the
@@ -54,7 +46,7 @@ declare const _default: import("vue").DefineComponent<{
54
46
  * in UI libraries that bind data through the .setAttribute() API
55
47
  * and don't support IDL attribute binding.
56
48
  */
57
- currentValue: {
49
+ value: {
58
50
  type: PropType<string>;
59
51
  default: undefined;
60
52
  };
@@ -314,14 +306,6 @@ declare const _default: import("vue").DefineComponent<{
314
306
  type: PropType<string>;
315
307
  default: undefined;
316
308
  };
317
- /**
318
- * The initial value of the form. This value sets the `value` property
319
- * only when the `value` property has not been explicitly set.
320
- */
321
- value: {
322
- type: PropType<string>;
323
- default: undefined;
324
- };
325
309
  /**
326
310
  * The current value of the element. This property serves as a mechanism
327
311
  * to set the `value` property through both property assignment and the
@@ -329,7 +313,7 @@ declare const _default: import("vue").DefineComponent<{
329
313
  * in UI libraries that bind data through the .setAttribute() API
330
314
  * and don't support IDL attribute binding.
331
315
  */
332
- currentValue: {
316
+ value: {
333
317
  type: PropType<string>;
334
318
  default: undefined;
335
319
  };
@@ -539,7 +523,6 @@ declare const _default: import("vue").DefineComponent<{
539
523
  rel: string;
540
524
  target: "_self" | "_blank" | "_parent" | "_top";
541
525
  initialValue: string;
542
- currentValue: string;
543
526
  required: boolean;
544
527
  autofocus: boolean;
545
528
  form: string;
@@ -51,14 +51,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
51
51
  type: PropType<string>;
52
52
  default: undefined;
53
53
  };
54
- /**
55
- * The initial value of the form. This value sets the `value` property
56
- * only when the `value` property has not been explicitly set.
57
- */
58
- value: {
59
- type: PropType<string>;
60
- default: undefined;
61
- };
62
54
  /**
63
55
  * The current value of the element. This property serves as a mechanism
64
56
  * to set the `value` property through both property assignment and the
@@ -66,7 +58,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
66
58
  * in UI libraries that bind data through the .setAttribute() API
67
59
  * and don't support IDL attribute binding.
68
60
  */
69
- currentValue: {
61
+ value: {
70
62
  type: PropType<string>;
71
63
  default: undefined;
72
64
  };
@@ -91,13 +83,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
91
83
  type: PropType<boolean>;
92
84
  default: undefined;
93
85
  };
94
- /**
95
- * Provides the default checkedness of the input element
96
- */
97
- checked: {
98
- type: PropType<boolean>;
99
- default: undefined;
100
- };
101
86
  /**
102
87
  * The current checkedness of the element. This property serves as a mechanism
103
88
  * to set the `checked` property through both property assignment and the
@@ -105,7 +90,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
105
90
  * in UI libraries that bind data through the .setAttribute() API
106
91
  * and don't support IDL attribute binding.
107
92
  */
108
- currentChecked: {
93
+ checked: {
109
94
  type: PropType<boolean>;
110
95
  default: undefined;
111
96
  };
@@ -196,14 +181,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
196
181
  type: PropType<string>;
197
182
  default: undefined;
198
183
  };
199
- /**
200
- * The initial value of the form. This value sets the `value` property
201
- * only when the `value` property has not been explicitly set.
202
- */
203
- value: {
204
- type: PropType<string>;
205
- default: undefined;
206
- };
207
184
  /**
208
185
  * The current value of the element. This property serves as a mechanism
209
186
  * to set the `value` property through both property assignment and the
@@ -211,7 +188,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
211
188
  * in UI libraries that bind data through the .setAttribute() API
212
189
  * and don't support IDL attribute binding.
213
190
  */
214
- currentValue: {
191
+ value: {
215
192
  type: PropType<string>;
216
193
  default: undefined;
217
194
  };
@@ -236,13 +213,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
236
213
  type: PropType<boolean>;
237
214
  default: undefined;
238
215
  };
239
- /**
240
- * Provides the default checkedness of the input element
241
- */
242
- checked: {
243
- type: PropType<boolean>;
244
- default: undefined;
245
- };
246
216
  /**
247
217
  * The current checkedness of the element. This property serves as a mechanism
248
218
  * to set the `checked` property through both property assignment and the
@@ -250,7 +220,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
250
220
  * in UI libraries that bind data through the .setAttribute() API
251
221
  * and don't support IDL attribute binding.
252
222
  */
253
- currentChecked: {
223
+ checked: {
254
224
  type: PropType<boolean>;
255
225
  default: undefined;
256
226
  };
@@ -295,7 +265,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
295
265
  connotation: "accent" | "cta";
296
266
  disabled: boolean;
297
267
  initialValue: string;
298
- currentValue: string;
299
268
  required: boolean;
300
269
  label: string;
301
270
  modelValue: boolean;
@@ -304,7 +273,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
304
273
  helperText: string;
305
274
  defaultChecked: boolean;
306
275
  checked: boolean;
307
- currentChecked: boolean;
308
276
  readonly: boolean;
309
277
  tabindex: string;
310
278
  }>;
@@ -52,14 +52,6 @@ declare const _default: import("vue").DefineComponent<{
52
52
  type: PropType<string>;
53
53
  default: undefined;
54
54
  };
55
- /**
56
- * The initial value of the form. This value sets the `value` property
57
- * only when the `value` property has not been explicitly set.
58
- */
59
- value: {
60
- type: PropType<string>;
61
- default: undefined;
62
- };
63
55
  /**
64
56
  * The current value of the element. This property serves as a mechanism
65
57
  * to set the `value` property through both property assignment and the
@@ -67,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
67
59
  * in UI libraries that bind data through the .setAttribute() API
68
60
  * and don't support IDL attribute binding.
69
61
  */
70
- currentValue: {
62
+ value: {
71
63
  type: PropType<string>;
72
64
  default: undefined;
73
65
  };
@@ -92,13 +84,6 @@ declare const _default: import("vue").DefineComponent<{
92
84
  type: PropType<boolean>;
93
85
  default: undefined;
94
86
  };
95
- /**
96
- * Provides the default checkedness of the input element
97
- */
98
- checked: {
99
- type: PropType<boolean>;
100
- default: undefined;
101
- };
102
87
  /**
103
88
  * The current checkedness of the element. This property serves as a mechanism
104
89
  * to set the `checked` property through both property assignment and the
@@ -106,7 +91,7 @@ declare const _default: import("vue").DefineComponent<{
106
91
  * in UI libraries that bind data through the .setAttribute() API
107
92
  * and don't support IDL attribute binding.
108
93
  */
109
- currentChecked: {
94
+ checked: {
110
95
  type: PropType<boolean>;
111
96
  default: undefined;
112
97
  };
@@ -238,14 +223,6 @@ declare const _default: import("vue").DefineComponent<{
238
223
  type: PropType<string>;
239
224
  default: undefined;
240
225
  };
241
- /**
242
- * The initial value of the form. This value sets the `value` property
243
- * only when the `value` property has not been explicitly set.
244
- */
245
- value: {
246
- type: PropType<string>;
247
- default: undefined;
248
- };
249
226
  /**
250
227
  * The current value of the element. This property serves as a mechanism
251
228
  * to set the `value` property through both property assignment and the
@@ -253,7 +230,7 @@ declare const _default: import("vue").DefineComponent<{
253
230
  * in UI libraries that bind data through the .setAttribute() API
254
231
  * and don't support IDL attribute binding.
255
232
  */
256
- currentValue: {
233
+ value: {
257
234
  type: PropType<string>;
258
235
  default: undefined;
259
236
  };
@@ -278,13 +255,6 @@ declare const _default: import("vue").DefineComponent<{
278
255
  type: PropType<boolean>;
279
256
  default: undefined;
280
257
  };
281
- /**
282
- * Provides the default checkedness of the input element
283
- */
284
- checked: {
285
- type: PropType<boolean>;
286
- default: undefined;
287
- };
288
258
  /**
289
259
  * The current checkedness of the element. This property serves as a mechanism
290
260
  * to set the `checked` property through both property assignment and the
@@ -292,7 +262,7 @@ declare const _default: import("vue").DefineComponent<{
292
262
  * in UI libraries that bind data through the .setAttribute() API
293
263
  * and don't support IDL attribute binding.
294
264
  */
295
- currentChecked: {
265
+ checked: {
296
266
  type: PropType<boolean>;
297
267
  default: undefined;
298
268
  };
@@ -346,7 +316,6 @@ declare const _default: import("vue").DefineComponent<{
346
316
  connotation: "accent" | "cta";
347
317
  disabled: boolean;
348
318
  initialValue: string;
349
- currentValue: string;
350
319
  required: boolean;
351
320
  label: string;
352
321
  modelValue: boolean;
@@ -355,7 +324,6 @@ declare const _default: import("vue").DefineComponent<{
355
324
  helperText: string;
356
325
  defaultChecked: boolean;
357
326
  checked: boolean;
358
- currentChecked: boolean;
359
327
  readonly: boolean;
360
328
  tabindex: string;
361
329
  }, SlotsType<{
@@ -31,14 +31,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
31
31
  type: PropType<string>;
32
32
  default: undefined;
33
33
  };
34
- /**
35
- * The initial value of the form. This value sets the `value` property
36
- * only when the `value` property has not been explicitly set.
37
- */
38
- value: {
39
- type: PropType<string>;
40
- default: undefined;
41
- };
42
34
  /**
43
35
  * The current value of the element. This property serves as a mechanism
44
36
  * to set the `value` property through both property assignment and the
@@ -46,7 +38,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
46
38
  * in UI libraries that bind data through the .setAttribute() API
47
39
  * and don't support IDL attribute binding.
48
40
  */
49
- currentValue: {
41
+ value: {
50
42
  type: PropType<string>;
51
43
  default: undefined;
52
44
  };
@@ -188,14 +180,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
188
180
  type: PropType<string>;
189
181
  default: undefined;
190
182
  };
191
- /**
192
- * The initial value of the form. This value sets the `value` property
193
- * only when the `value` property has not been explicitly set.
194
- */
195
- value: {
196
- type: PropType<string>;
197
- default: undefined;
198
- };
199
183
  /**
200
184
  * The current value of the element. This property serves as a mechanism
201
185
  * to set the `value` property through both property assignment and the
@@ -203,7 +187,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
203
187
  * in UI libraries that bind data through the .setAttribute() API
204
188
  * and don't support IDL attribute binding.
205
189
  */
206
- currentValue: {
190
+ value: {
207
191
  type: PropType<string>;
208
192
  default: undefined;
209
193
  };
@@ -300,7 +284,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
300
284
  open: boolean;
301
285
  disabled: boolean;
302
286
  initialValue: string;
303
- currentValue: string;
304
287
  required: boolean;
305
288
  label: string;
306
289
  modelValue: string;
@@ -32,14 +32,6 @@ declare const _default: import("vue").DefineComponent<{
32
32
  type: PropType<string>;
33
33
  default: undefined;
34
34
  };
35
- /**
36
- * The initial value of the form. This value sets the `value` property
37
- * only when the `value` property has not been explicitly set.
38
- */
39
- value: {
40
- type: PropType<string>;
41
- default: undefined;
42
- };
43
35
  /**
44
36
  * The current value of the element. This property serves as a mechanism
45
37
  * to set the `value` property through both property assignment and the
@@ -47,7 +39,7 @@ declare const _default: import("vue").DefineComponent<{
47
39
  * in UI libraries that bind data through the .setAttribute() API
48
40
  * and don't support IDL attribute binding.
49
41
  */
50
- currentValue: {
42
+ value: {
51
43
  type: PropType<string>;
52
44
  default: undefined;
53
45
  };
@@ -230,14 +222,6 @@ declare const _default: import("vue").DefineComponent<{
230
222
  type: PropType<string>;
231
223
  default: undefined;
232
224
  };
233
- /**
234
- * The initial value of the form. This value sets the `value` property
235
- * only when the `value` property has not been explicitly set.
236
- */
237
- value: {
238
- type: PropType<string>;
239
- default: undefined;
240
- };
241
225
  /**
242
226
  * The current value of the element. This property serves as a mechanism
243
227
  * to set the `value` property through both property assignment and the
@@ -245,7 +229,7 @@ declare const _default: import("vue").DefineComponent<{
245
229
  * in UI libraries that bind data through the .setAttribute() API
246
230
  * and don't support IDL attribute binding.
247
231
  */
248
- currentValue: {
232
+ value: {
249
233
  type: PropType<string>;
250
234
  default: undefined;
251
235
  };
@@ -351,7 +335,6 @@ declare const _default: import("vue").DefineComponent<{
351
335
  open: boolean;
352
336
  disabled: boolean;
353
337
  initialValue: string;
354
- currentValue: string;
355
338
  required: boolean;
356
339
  label: string;
357
340
  modelValue: string;
@@ -5,7 +5,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
5
5
  * Extends the data grid cell definition to hold more options.
6
6
  */
7
7
  columnDefinition: {
8
- type: PropType<any>;
8
+ type: PropType<object>;
9
9
  default: undefined;
10
10
  };
11
11
  /**
@@ -58,7 +58,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
58
58
  * Extends the data grid cell definition to hold more options.
59
59
  */
60
60
  columnDefinition: {
61
- type: PropType<any>;
61
+ type: PropType<object>;
62
62
  default: undefined;
63
63
  };
64
64
  /**
@@ -100,7 +100,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
100
100
  };
101
101
  }>>, {
102
102
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
103
- columnDefinition: any;
103
+ columnDefinition: object;
104
104
  cellType: "default" | "columnheader" | "rowheader";
105
105
  gridColumn: string;
106
106
  ariaSelected: string;
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
6
6
  * Extends the data grid cell definition to hold more options.
7
7
  */
8
8
  columnDefinition: {
9
- type: PropType<any>;
9
+ type: PropType<object>;
10
10
  default: undefined;
11
11
  };
12
12
  /**
@@ -113,7 +113,7 @@ declare const _default: import("vue").DefineComponent<{
113
113
  * Extends the data grid cell definition to hold more options.
114
114
  */
115
115
  columnDefinition: {
116
- type: PropType<any>;
116
+ type: PropType<object>;
117
117
  default: undefined;
118
118
  };
119
119
  /**
@@ -173,7 +173,7 @@ declare const _default: import("vue").DefineComponent<{
173
173
  "onCell-focused"?: ((event: CustomEvent<HTMLElement>) => any) | undefined;
174
174
  }, {
175
175
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
176
- columnDefinition: any;
176
+ columnDefinition: object;
177
177
  cellType: "default" | "columnheader" | "rowheader";
178
178
  gridColumn: string;
179
179
  ariaSelected: string;
@@ -68,23 +68,16 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
68
68
  default: undefined;
69
69
  };
70
70
  /**
71
- * The initial value of the date-picker.
71
+ * The current value of the date-picker.
72
72
  */
73
73
  value: {
74
74
  type: PropType<string>;
75
75
  default: undefined;
76
76
  };
77
- /**
78
- * The initial value of the date-picker.
79
- */
80
- modelValue: {
81
- type: PropType<string>;
82
- default: undefined;
83
- };
84
77
  /**
85
78
  * The current value of the date-picker.
86
79
  */
87
- currentValue: {
80
+ modelValue: {
88
81
  type: PropType<string>;
89
82
  default: undefined;
90
83
  };
@@ -163,23 +156,16 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
163
156
  default: undefined;
164
157
  };
165
158
  /**
166
- * The initial value of the date-picker.
159
+ * The current value of the date-picker.
167
160
  */
168
161
  value: {
169
162
  type: PropType<string>;
170
163
  default: undefined;
171
164
  };
172
- /**
173
- * The initial value of the date-picker.
174
- */
175
- modelValue: {
176
- type: PropType<string>;
177
- default: undefined;
178
- };
179
165
  /**
180
166
  * The current value of the date-picker.
181
167
  */
182
- currentValue: {
168
+ modelValue: {
183
169
  type: PropType<string>;
184
170
  default: undefined;
185
171
  };
@@ -196,7 +182,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
196
182
  value: string;
197
183
  disabled: boolean;
198
184
  initialValue: string;
199
- currentValue: string;
200
185
  required: boolean;
201
186
  label: string;
202
187
  modelValue: string;
@@ -69,23 +69,16 @@ declare const _default: import("vue").DefineComponent<{
69
69
  default: undefined;
70
70
  };
71
71
  /**
72
- * The initial value of the date-picker.
72
+ * The current value of the date-picker.
73
73
  */
74
74
  value: {
75
75
  type: PropType<string>;
76
76
  default: undefined;
77
77
  };
78
- /**
79
- * The initial value of the date-picker.
80
- */
81
- modelValue: {
82
- type: PropType<string>;
83
- default: undefined;
84
- };
85
78
  /**
86
79
  * The current value of the date-picker.
87
80
  */
88
- currentValue: {
81
+ modelValue: {
89
82
  type: PropType<string>;
90
83
  default: undefined;
91
84
  };
@@ -210,23 +203,16 @@ declare const _default: import("vue").DefineComponent<{
210
203
  default: undefined;
211
204
  };
212
205
  /**
213
- * The initial value of the date-picker.
206
+ * The current value of the date-picker.
214
207
  */
215
208
  value: {
216
209
  type: PropType<string>;
217
210
  default: undefined;
218
211
  };
219
- /**
220
- * The initial value of the date-picker.
221
- */
222
- modelValue: {
223
- type: PropType<string>;
224
- default: undefined;
225
- };
226
212
  /**
227
213
  * The current value of the date-picker.
228
214
  */
229
- currentValue: {
215
+ modelValue: {
230
216
  type: PropType<string>;
231
217
  default: undefined;
232
218
  };
@@ -253,7 +239,6 @@ declare const _default: import("vue").DefineComponent<{
253
239
  value: string;
254
240
  disabled: boolean;
255
241
  initialValue: string;
256
- currentValue: string;
257
242
  required: boolean;
258
243
  label: string;
259
244
  modelValue: string;