@vonage/vivid-vue 3.59.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 +8 -8
  4. package/generated/components/VButton.vue3.d.ts +8 -8
  5. package/generated/components/VCheckbox.vue2.d.ts +10 -10
  6. package/generated/components/VCheckbox.vue3.d.ts +10 -10
  7. package/generated/components/VCombobox.vue2.d.ts +5 -5
  8. package/generated/components/VCombobox.vue3.d.ts +5 -5
  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 +9 -9
  12. package/generated/components/VDatePicker.vue3.d.ts +9 -9
  13. package/generated/components/VDateRangePicker.vue2.d.ts +25 -37
  14. package/generated/components/VDateRangePicker.vue3.d.ts +25 -37
  15. package/generated/components/VFab.vue2.d.ts +5 -5
  16. package/generated/components/VFab.vue3.d.ts +5 -5
  17. package/generated/components/VFilePicker.vue2.d.ts +5 -5
  18. package/generated/components/VFilePicker.vue3.d.ts +5 -5
  19. package/generated/components/VNumberField.vue2.d.ts +5 -5
  20. package/generated/components/VNumberField.vue3.d.ts +5 -5
  21. package/generated/components/VOption.vue2.d.ts +3 -3
  22. package/generated/components/VOption.vue3.d.ts +3 -3
  23. package/generated/components/VRadio.vue2.d.ts +10 -10
  24. package/generated/components/VRadio.vue3.d.ts +10 -10
  25. package/generated/components/VRangeSlider.vue2.d.ts +19 -31
  26. package/generated/components/VRangeSlider.vue3.d.ts +19 -31
  27. package/generated/components/VSelect.vue2.d.ts +6 -5
  28. package/generated/components/VSelect.vue3.d.ts +6 -5
  29. package/generated/components/VSlider.vue2.d.ts +5 -5
  30. package/generated/components/VSlider.vue3.d.ts +5 -5
  31. package/generated/components/VSwitch.vue2.d.ts +10 -10
  32. package/generated/components/VSwitch.vue3.d.ts +10 -10
  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 +5 -5
  36. package/generated/components/VTextArea.vue3.d.ts +5 -5
  37. package/generated/components/VTextField.vue2.d.ts +5 -5
  38. package/generated/components/VTextField.vue3.d.ts +5 -5
  39. package/generated/components/VTimePicker.vue2.d.ts +5 -5
  40. package/generated/components/VTimePicker.vue3.d.ts +5 -5
  41. package/index.cjs +717 -719
  42. package/index.js +717 -719
  43. package/package.json +2 -2
  44. package/web-types.json +52 -52
@@ -62,7 +62,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
62
62
  * The initial value of the form. This value sets the `value` property
63
63
  * only when the `value` property has not been explicitly set.
64
64
  */
65
- value: {
65
+ initialValue: {
66
66
  type: PropType<string>;
67
67
  default: undefined;
68
68
  };
@@ -73,7 +73,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
73
73
  * in UI libraries that bind data through the .setAttribute() API
74
74
  * and don't support IDL attribute binding.
75
75
  */
76
- currentValue: {
76
+ value: {
77
77
  type: PropType<string>;
78
78
  default: undefined;
79
79
  };
@@ -172,6 +172,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
172
172
  */
173
173
  selectFirstOption(): void;
174
174
  setDefaultSelectedOption(): void;
175
+ slottedOptionsChanged(prev: Element[] | undefined, next: Element[]): unknown;
175
176
  }, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
176
177
  /**
177
178
  * The success text for the form element.
@@ -234,7 +235,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
234
235
  * The initial value of the form. This value sets the `value` property
235
236
  * only when the `value` property has not been explicitly set.
236
237
  */
237
- value: {
238
+ initialValue: {
238
239
  type: PropType<string>;
239
240
  default: undefined;
240
241
  };
@@ -245,7 +246,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
245
246
  * in UI libraries that bind data through the .setAttribute() API
246
247
  * and don't support IDL attribute binding.
247
248
  */
248
- currentValue: {
249
+ value: {
249
250
  type: PropType<string>;
250
251
  default: undefined;
251
252
  };
@@ -333,7 +334,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
333
334
  appearance: "fieldset" | "ghost";
334
335
  open: boolean;
335
336
  disabled: boolean;
336
- currentValue: string;
337
+ initialValue: string;
337
338
  required: boolean;
338
339
  label: string;
339
340
  modelValue: string;
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
63
63
  * The initial value of the form. This value sets the `value` property
64
64
  * only when the `value` property has not been explicitly set.
65
65
  */
66
- value: {
66
+ initialValue: {
67
67
  type: PropType<string>;
68
68
  default: undefined;
69
69
  };
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
74
74
  * in UI libraries that bind data through the .setAttribute() API
75
75
  * and don't support IDL attribute binding.
76
76
  */
77
- currentValue: {
77
+ value: {
78
78
  type: PropType<string>;
79
79
  default: undefined;
80
80
  };
@@ -173,6 +173,7 @@ declare const _default: import("vue").DefineComponent<{
173
173
  */
174
174
  selectFirstOption(): void;
175
175
  setDefaultSelectedOption(): void;
176
+ slottedOptionsChanged(prev: Element[] | undefined, next: Element[]): unknown;
176
177
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
177
178
  /**
178
179
  * Fires when a pointing device button (such as a mouse's primary mouse button) is both pressed and released while the pointer is located inside the element.
@@ -276,7 +277,7 @@ declare const _default: import("vue").DefineComponent<{
276
277
  * The initial value of the form. This value sets the `value` property
277
278
  * only when the `value` property has not been explicitly set.
278
279
  */
279
- value: {
280
+ initialValue: {
280
281
  type: PropType<string>;
281
282
  default: undefined;
282
283
  };
@@ -287,7 +288,7 @@ declare const _default: import("vue").DefineComponent<{
287
288
  * in UI libraries that bind data through the .setAttribute() API
288
289
  * and don't support IDL attribute binding.
289
290
  */
290
- currentValue: {
291
+ value: {
291
292
  type: PropType<string>;
292
293
  default: undefined;
293
294
  };
@@ -384,7 +385,7 @@ declare const _default: import("vue").DefineComponent<{
384
385
  appearance: "fieldset" | "ghost";
385
386
  open: boolean;
386
387
  disabled: boolean;
387
- currentValue: string;
388
+ initialValue: string;
388
389
  required: boolean;
389
390
  label: string;
390
391
  modelValue: string;
@@ -19,7 +19,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
19
19
  * The initial value of the form. This value sets the `value` property
20
20
  * only when the `value` property has not been explicitly set.
21
21
  */
22
- value: {
22
+ initialValue: {
23
23
  type: PropType<string>;
24
24
  default: undefined;
25
25
  };
@@ -30,7 +30,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
30
30
  * in UI libraries that bind data through the .setAttribute() API
31
31
  * and don't support IDL attribute binding.
32
32
  */
33
- currentValue: {
33
+ value: {
34
34
  type: PropType<string>;
35
35
  default: undefined;
36
36
  };
@@ -158,7 +158,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
158
158
  * The initial value of the form. This value sets the `value` property
159
159
  * only when the `value` property has not been explicitly set.
160
160
  */
161
- value: {
161
+ initialValue: {
162
162
  type: PropType<string>;
163
163
  default: undefined;
164
164
  };
@@ -169,7 +169,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
169
169
  * in UI libraries that bind data through the .setAttribute() API
170
170
  * and don't support IDL attribute binding.
171
171
  */
172
- currentValue: {
172
+ value: {
173
173
  type: PropType<string>;
174
174
  default: undefined;
175
175
  };
@@ -270,7 +270,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
270
270
  ariaLabel: string;
271
271
  connotation: "accent" | "cta";
272
272
  disabled: boolean;
273
- currentValue: string;
273
+ initialValue: string;
274
274
  required: boolean;
275
275
  modelValue: string;
276
276
  readonly: boolean;
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<{
20
20
  * The initial value of the form. This value sets the `value` property
21
21
  * only when the `value` property has not been explicitly set.
22
22
  */
23
- value: {
23
+ initialValue: {
24
24
  type: PropType<string>;
25
25
  default: undefined;
26
26
  };
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
31
31
  * in UI libraries that bind data through the .setAttribute() API
32
32
  * and don't support IDL attribute binding.
33
33
  */
34
- currentValue: {
34
+ value: {
35
35
  type: PropType<string>;
36
36
  default: undefined;
37
37
  };
@@ -200,7 +200,7 @@ declare const _default: import("vue").DefineComponent<{
200
200
  * The initial value of the form. This value sets the `value` property
201
201
  * only when the `value` property has not been explicitly set.
202
202
  */
203
- value: {
203
+ initialValue: {
204
204
  type: PropType<string>;
205
205
  default: undefined;
206
206
  };
@@ -211,7 +211,7 @@ declare const _default: import("vue").DefineComponent<{
211
211
  * in UI libraries that bind data through the .setAttribute() API
212
212
  * and don't support IDL attribute binding.
213
213
  */
214
- currentValue: {
214
+ value: {
215
215
  type: PropType<string>;
216
216
  default: undefined;
217
217
  };
@@ -321,7 +321,7 @@ declare const _default: import("vue").DefineComponent<{
321
321
  ariaLabel: string;
322
322
  connotation: "accent" | "cta";
323
323
  disabled: boolean;
324
- currentValue: string;
324
+ initialValue: string;
325
325
  required: boolean;
326
326
  modelValue: string;
327
327
  readonly: boolean;
@@ -19,7 +19,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
19
19
  * The initial value of the form. This value sets the `value` property
20
20
  * only when the `value` property has not been explicitly set.
21
21
  */
22
- value: {
22
+ initialValue: {
23
23
  type: PropType<string>;
24
24
  default: undefined;
25
25
  };
@@ -30,7 +30,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
30
30
  * in UI libraries that bind data through the .setAttribute() API
31
31
  * and don't support IDL attribute binding.
32
32
  */
33
- currentValue: {
33
+ value: {
34
34
  type: PropType<string>;
35
35
  default: undefined;
36
36
  };
@@ -51,7 +51,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
51
51
  /**
52
52
  * Provides the default checkedness of the input element
53
53
  */
54
- checked: {
54
+ defaultChecked: {
55
55
  type: PropType<boolean>;
56
56
  default: undefined;
57
57
  };
@@ -62,7 +62,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
62
62
  * in UI libraries that bind data through the .setAttribute() API
63
63
  * and don't support IDL attribute binding.
64
64
  */
65
- currentChecked: {
65
+ checked: {
66
66
  type: PropType<boolean>;
67
67
  default: undefined;
68
68
  };
@@ -120,7 +120,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
120
120
  * The initial value of the form. This value sets the `value` property
121
121
  * only when the `value` property has not been explicitly set.
122
122
  */
123
- value: {
123
+ initialValue: {
124
124
  type: PropType<string>;
125
125
  default: undefined;
126
126
  };
@@ -131,7 +131,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
131
131
  * in UI libraries that bind data through the .setAttribute() API
132
132
  * and don't support IDL attribute binding.
133
133
  */
134
- currentValue: {
134
+ value: {
135
135
  type: PropType<string>;
136
136
  default: undefined;
137
137
  };
@@ -152,7 +152,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
152
152
  /**
153
153
  * Provides the default checkedness of the input element
154
154
  */
155
- checked: {
155
+ defaultChecked: {
156
156
  type: PropType<boolean>;
157
157
  default: undefined;
158
158
  };
@@ -163,7 +163,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
163
163
  * in UI libraries that bind data through the .setAttribute() API
164
164
  * and don't support IDL attribute binding.
165
165
  */
166
- currentChecked: {
166
+ checked: {
167
167
  type: PropType<boolean>;
168
168
  default: undefined;
169
169
  };
@@ -205,12 +205,12 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
205
205
  value: string;
206
206
  connotation: "accent" | "success" | "alert" | "cta";
207
207
  disabled: boolean;
208
- currentValue: string;
208
+ initialValue: string;
209
209
  required: boolean;
210
210
  label: string;
211
211
  modelValue: boolean;
212
+ defaultChecked: boolean;
212
213
  checked: boolean;
213
- currentChecked: boolean;
214
214
  readonly: boolean;
215
215
  }>;
216
216
  export default _default;
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<{
20
20
  * The initial value of the form. This value sets the `value` property
21
21
  * only when the `value` property has not been explicitly set.
22
22
  */
23
- value: {
23
+ initialValue: {
24
24
  type: PropType<string>;
25
25
  default: undefined;
26
26
  };
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
31
31
  * in UI libraries that bind data through the .setAttribute() API
32
32
  * and don't support IDL attribute binding.
33
33
  */
34
- currentValue: {
34
+ value: {
35
35
  type: PropType<string>;
36
36
  default: undefined;
37
37
  };
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
52
52
  /**
53
53
  * Provides the default checkedness of the input element
54
54
  */
55
- checked: {
55
+ defaultChecked: {
56
56
  type: PropType<boolean>;
57
57
  default: undefined;
58
58
  };
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
63
63
  * in UI libraries that bind data through the .setAttribute() API
64
64
  * and don't support IDL attribute binding.
65
65
  */
66
- currentChecked: {
66
+ checked: {
67
67
  type: PropType<boolean>;
68
68
  default: undefined;
69
69
  };
@@ -162,7 +162,7 @@ declare const _default: import("vue").DefineComponent<{
162
162
  * The initial value of the form. This value sets the `value` property
163
163
  * only when the `value` property has not been explicitly set.
164
164
  */
165
- value: {
165
+ initialValue: {
166
166
  type: PropType<string>;
167
167
  default: undefined;
168
168
  };
@@ -173,7 +173,7 @@ declare const _default: import("vue").DefineComponent<{
173
173
  * in UI libraries that bind data through the .setAttribute() API
174
174
  * and don't support IDL attribute binding.
175
175
  */
176
- currentValue: {
176
+ value: {
177
177
  type: PropType<string>;
178
178
  default: undefined;
179
179
  };
@@ -194,7 +194,7 @@ declare const _default: import("vue").DefineComponent<{
194
194
  /**
195
195
  * Provides the default checkedness of the input element
196
196
  */
197
- checked: {
197
+ defaultChecked: {
198
198
  type: PropType<boolean>;
199
199
  default: undefined;
200
200
  };
@@ -205,7 +205,7 @@ declare const _default: import("vue").DefineComponent<{
205
205
  * in UI libraries that bind data through the .setAttribute() API
206
206
  * and don't support IDL attribute binding.
207
207
  */
208
- currentChecked: {
208
+ checked: {
209
209
  type: PropType<boolean>;
210
210
  default: undefined;
211
211
  };
@@ -256,12 +256,12 @@ declare const _default: import("vue").DefineComponent<{
256
256
  value: string;
257
257
  connotation: "accent" | "success" | "alert" | "cta";
258
258
  disabled: boolean;
259
- currentValue: string;
259
+ initialValue: string;
260
260
  required: boolean;
261
261
  label: string;
262
262
  modelValue: boolean;
263
+ defaultChecked: boolean;
263
264
  checked: boolean;
264
- currentChecked: boolean;
265
265
  readonly: boolean;
266
266
  }, SlotsType<Record<string, never>>>;
267
267
  export default _default;
@@ -52,7 +52,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
52
52
  default: undefined;
53
53
  };
54
54
  tabIndex: {
55
- type: PropType<any>;
55
+ type: PropType<number>;
56
56
  default: undefined;
57
57
  };
58
58
  ariaSelected: {
@@ -114,7 +114,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
114
114
  default: undefined;
115
115
  };
116
116
  tabIndex: {
117
- type: PropType<any>;
117
+ type: PropType<number>;
118
118
  default: undefined;
119
119
  };
120
120
  ariaSelected: {
@@ -130,6 +130,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
130
130
  disabled: boolean;
131
131
  label: string;
132
132
  ariaSelected: string;
133
- tabIndex: any;
133
+ tabIndex: number;
134
134
  }>;
135
135
  export default _default;
@@ -53,7 +53,7 @@ declare const _default: import("vue").DefineComponent<{
53
53
  default: undefined;
54
54
  };
55
55
  tabIndex: {
56
- type: PropType<any>;
56
+ type: PropType<number>;
57
57
  default: undefined;
58
58
  };
59
59
  ariaSelected: {
@@ -146,7 +146,7 @@ declare const _default: import("vue").DefineComponent<{
146
146
  default: undefined;
147
147
  };
148
148
  tabIndex: {
149
- type: PropType<any>;
149
+ type: PropType<number>;
150
150
  default: undefined;
151
151
  };
152
152
  ariaSelected: {
@@ -169,7 +169,7 @@ declare const _default: import("vue").DefineComponent<{
169
169
  disabled: boolean;
170
170
  label: string;
171
171
  ariaSelected: string;
172
- tabIndex: any;
172
+ tabIndex: number;
173
173
  }, SlotsType<{
174
174
  /**
175
175
  * Slot to add an icon to tab.
@@ -54,7 +54,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
54
54
  * The initial value of the form. This value sets the `value` property
55
55
  * only when the `value` property has not been explicitly set.
56
56
  */
57
- value: {
57
+ initialValue: {
58
58
  type: PropType<string>;
59
59
  default: undefined;
60
60
  };
@@ -65,7 +65,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
65
65
  * in UI libraries that bind data through the .setAttribute() API
66
66
  * and don't support IDL attribute binding.
67
67
  */
68
- currentValue: {
68
+ value: {
69
69
  type: PropType<string>;
70
70
  default: undefined;
71
71
  };
@@ -245,7 +245,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
245
245
  * The initial value of the form. This value sets the `value` property
246
246
  * only when the `value` property has not been explicitly set.
247
247
  */
248
- value: {
248
+ initialValue: {
249
249
  type: PropType<string>;
250
250
  default: undefined;
251
251
  };
@@ -256,7 +256,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
256
256
  * in UI libraries that bind data through the .setAttribute() API
257
257
  * and don't support IDL attribute binding.
258
258
  */
259
- currentValue: {
259
+ value: {
260
260
  type: PropType<string>;
261
261
  default: undefined;
262
262
  };
@@ -375,7 +375,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
375
375
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
376
376
  value: string;
377
377
  disabled: boolean;
378
- currentValue: string;
378
+ initialValue: string;
379
379
  required: boolean;
380
380
  autofocus: boolean;
381
381
  form: string;
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<{
55
55
  * The initial value of the form. This value sets the `value` property
56
56
  * only when the `value` property has not been explicitly set.
57
57
  */
58
- value: {
58
+ initialValue: {
59
59
  type: PropType<string>;
60
60
  default: undefined;
61
61
  };
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
66
66
  * in UI libraries that bind data through the .setAttribute() API
67
67
  * and don't support IDL attribute binding.
68
68
  */
69
- currentValue: {
69
+ value: {
70
70
  type: PropType<string>;
71
71
  default: undefined;
72
72
  };
@@ -287,7 +287,7 @@ declare const _default: import("vue").DefineComponent<{
287
287
  * The initial value of the form. This value sets the `value` property
288
288
  * only when the `value` property has not been explicitly set.
289
289
  */
290
- value: {
290
+ initialValue: {
291
291
  type: PropType<string>;
292
292
  default: undefined;
293
293
  };
@@ -298,7 +298,7 @@ declare const _default: import("vue").DefineComponent<{
298
298
  * in UI libraries that bind data through the .setAttribute() API
299
299
  * and don't support IDL attribute binding.
300
300
  */
301
- currentValue: {
301
+ value: {
302
302
  type: PropType<string>;
303
303
  default: undefined;
304
304
  };
@@ -426,7 +426,7 @@ declare const _default: import("vue").DefineComponent<{
426
426
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
427
427
  value: string;
428
428
  disabled: boolean;
429
- currentValue: string;
429
+ initialValue: string;
430
430
  required: boolean;
431
431
  autofocus: boolean;
432
432
  form: string;
@@ -65,7 +65,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
65
65
  * The initial value of the form. This value sets the `value` property
66
66
  * only when the `value` property has not been explicitly set.
67
67
  */
68
- value: {
68
+ initialValue: {
69
69
  type: PropType<string>;
70
70
  default: undefined;
71
71
  };
@@ -76,7 +76,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
76
76
  * in UI libraries that bind data through the .setAttribute() API
77
77
  * and don't support IDL attribute binding.
78
78
  */
79
- currentValue: {
79
+ value: {
80
80
  type: PropType<string>;
81
81
  default: undefined;
82
82
  };
@@ -262,7 +262,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
262
262
  * The initial value of the form. This value sets the `value` property
263
263
  * only when the `value` property has not been explicitly set.
264
264
  */
265
- value: {
265
+ initialValue: {
266
266
  type: PropType<string>;
267
267
  default: undefined;
268
268
  };
@@ -273,7 +273,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
273
273
  * in UI libraries that bind data through the .setAttribute() API
274
274
  * and don't support IDL attribute binding.
275
275
  */
276
- currentValue: {
276
+ value: {
277
277
  type: PropType<string>;
278
278
  default: undefined;
279
279
  };
@@ -394,7 +394,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
394
394
  shape: "rounded" | "pill";
395
395
  appearance: "fieldset" | "ghost";
396
396
  disabled: boolean;
397
- currentValue: string;
397
+ initialValue: string;
398
398
  required: boolean;
399
399
  autofocus: boolean;
400
400
  label: string;
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
66
66
  * The initial value of the form. This value sets the `value` property
67
67
  * only when the `value` property has not been explicitly set.
68
68
  */
69
- value: {
69
+ initialValue: {
70
70
  type: PropType<string>;
71
71
  default: undefined;
72
72
  };
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
77
77
  * in UI libraries that bind data through the .setAttribute() API
78
78
  * and don't support IDL attribute binding.
79
79
  */
80
- currentValue: {
80
+ value: {
81
81
  type: PropType<string>;
82
82
  default: undefined;
83
83
  };
@@ -304,7 +304,7 @@ declare const _default: import("vue").DefineComponent<{
304
304
  * The initial value of the form. This value sets the `value` property
305
305
  * only when the `value` property has not been explicitly set.
306
306
  */
307
- value: {
307
+ initialValue: {
308
308
  type: PropType<string>;
309
309
  default: undefined;
310
310
  };
@@ -315,7 +315,7 @@ declare const _default: import("vue").DefineComponent<{
315
315
  * in UI libraries that bind data through the .setAttribute() API
316
316
  * and don't support IDL attribute binding.
317
317
  */
318
- currentValue: {
318
+ value: {
319
319
  type: PropType<string>;
320
320
  default: undefined;
321
321
  };
@@ -445,7 +445,7 @@ declare const _default: import("vue").DefineComponent<{
445
445
  shape: "rounded" | "pill";
446
446
  appearance: "fieldset" | "ghost";
447
447
  disabled: boolean;
448
- currentValue: string;
448
+ initialValue: string;
449
449
  required: boolean;
450
450
  autofocus: boolean;
451
451
  label: string;
@@ -40,7 +40,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
40
40
  * The initial value of the form. This value sets the `value` property
41
41
  * only when the `value` property has not been explicitly set.
42
42
  */
43
- value: {
43
+ initialValue: {
44
44
  type: PropType<string>;
45
45
  default: undefined;
46
46
  };
@@ -51,7 +51,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
51
51
  * in UI libraries that bind data through the .setAttribute() API
52
52
  * and don't support IDL attribute binding.
53
53
  */
54
- currentValue: {
54
+ value: {
55
55
  type: PropType<string>;
56
56
  default: undefined;
57
57
  };
@@ -165,7 +165,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
165
165
  * The initial value of the form. This value sets the `value` property
166
166
  * only when the `value` property has not been explicitly set.
167
167
  */
168
- value: {
168
+ initialValue: {
169
169
  type: PropType<string>;
170
170
  default: undefined;
171
171
  };
@@ -176,7 +176,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
176
176
  * in UI libraries that bind data through the .setAttribute() API
177
177
  * and don't support IDL attribute binding.
178
178
  */
179
- currentValue: {
179
+ value: {
180
180
  type: PropType<string>;
181
181
  default: undefined;
182
182
  };
@@ -252,7 +252,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
252
252
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
253
253
  value: string;
254
254
  disabled: boolean;
255
- currentValue: string;
255
+ initialValue: string;
256
256
  required: boolean;
257
257
  label: string;
258
258
  modelValue: string;