@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
@@ -34,14 +34,6 @@ declare const _default: import("vue").DefineComponent<{
34
34
  type: PropType<string>;
35
35
  default: undefined;
36
36
  };
37
- /**
38
- * The initial value of the form. This value sets the `value` property
39
- * only when the `value` property has not been explicitly set.
40
- */
41
- value: {
42
- type: PropType<string>;
43
- default: undefined;
44
- };
45
37
  /**
46
38
  * The current value of the element. This property serves as a mechanism
47
39
  * to set the `value` property through both property assignment and the
@@ -49,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
49
41
  * in UI libraries that bind data through the .setAttribute() API
50
42
  * and don't support IDL attribute binding.
51
43
  */
52
- currentValue: {
44
+ value: {
53
45
  type: PropType<string>;
54
46
  default: undefined;
55
47
  };
@@ -75,17 +67,6 @@ declare const _default: import("vue").DefineComponent<{
75
67
  type: PropType<string>;
76
68
  default: undefined;
77
69
  };
78
- /**
79
- * The current start value of the element. This property serves as a mechanism
80
- * to set the `start` property through both property assignment and the
81
- * .setAttribute() method. This is useful for setting the field's value
82
- * in UI libraries that bind data through the .setAttribute() API
83
- * and don't support IDL attribute binding.
84
- */
85
- currentStart: {
86
- type: PropType<string>;
87
- default: undefined;
88
- };
89
70
  /**
90
71
  * The current start value of the element. This property serves as a mechanism
91
72
  * to set the `start` property through both property assignment and the
@@ -105,17 +86,6 @@ declare const _default: import("vue").DefineComponent<{
105
86
  type: PropType<string>;
106
87
  default: undefined;
107
88
  };
108
- /**
109
- * The current end value of the element. This property serves as a mechanism
110
- * to set the `end` property through both property assignment and the
111
- * .setAttribute() method. This is useful for setting the field's value
112
- * in UI libraries that bind data through the .setAttribute() API
113
- * and don't support IDL attribute binding.
114
- */
115
- currentEnd: {
116
- type: PropType<string>;
117
- default: undefined;
118
- };
119
89
  /**
120
90
  * The current end value of the element. This property serves as a mechanism
121
91
  * to set the `end` property through both property assignment and the
@@ -274,14 +244,6 @@ declare const _default: import("vue").DefineComponent<{
274
244
  type: PropType<string>;
275
245
  default: undefined;
276
246
  };
277
- /**
278
- * The initial value of the form. This value sets the `value` property
279
- * only when the `value` property has not been explicitly set.
280
- */
281
- value: {
282
- type: PropType<string>;
283
- default: undefined;
284
- };
285
247
  /**
286
248
  * The current value of the element. This property serves as a mechanism
287
249
  * to set the `value` property through both property assignment and the
@@ -289,7 +251,7 @@ declare const _default: import("vue").DefineComponent<{
289
251
  * in UI libraries that bind data through the .setAttribute() API
290
252
  * and don't support IDL attribute binding.
291
253
  */
292
- currentValue: {
254
+ value: {
293
255
  type: PropType<string>;
294
256
  default: undefined;
295
257
  };
@@ -315,17 +277,6 @@ declare const _default: import("vue").DefineComponent<{
315
277
  type: PropType<string>;
316
278
  default: undefined;
317
279
  };
318
- /**
319
- * The current start value of the element. This property serves as a mechanism
320
- * to set the `start` property through both property assignment and the
321
- * .setAttribute() method. This is useful for setting the field's value
322
- * in UI libraries that bind data through the .setAttribute() API
323
- * and don't support IDL attribute binding.
324
- */
325
- currentStart: {
326
- type: PropType<string>;
327
- default: undefined;
328
- };
329
280
  /**
330
281
  * The current start value of the element. This property serves as a mechanism
331
282
  * to set the `start` property through both property assignment and the
@@ -345,17 +296,6 @@ declare const _default: import("vue").DefineComponent<{
345
296
  type: PropType<string>;
346
297
  default: undefined;
347
298
  };
348
- /**
349
- * The current end value of the element. This property serves as a mechanism
350
- * to set the `end` property through both property assignment and the
351
- * .setAttribute() method. This is useful for setting the field's value
352
- * in UI libraries that bind data through the .setAttribute() API
353
- * and don't support IDL attribute binding.
354
- */
355
- currentEnd: {
356
- type: PropType<string>;
357
- default: undefined;
358
- };
359
299
  /**
360
300
  * The current end value of the element. This property serves as a mechanism
361
301
  * to set the `end` property through both property assignment and the
@@ -443,7 +383,6 @@ declare const _default: import("vue").DefineComponent<{
443
383
  connotation: "accent" | "cta";
444
384
  disabled: boolean;
445
385
  initialValue: string;
446
- currentValue: string;
447
386
  required: boolean;
448
387
  label: string;
449
388
  start: string;
@@ -451,8 +390,6 @@ declare const _default: import("vue").DefineComponent<{
451
390
  min: number;
452
391
  initialStart: string;
453
392
  initialEnd: string;
454
- currentStart: string;
455
- currentEnd: string;
456
393
  end: string;
457
394
  orientation: "horizontal" | "vertical";
458
395
  ariaStartLabel: string;
@@ -66,14 +66,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
66
66
  type: PropType<string>;
67
67
  default: undefined;
68
68
  };
69
- /**
70
- * The initial value of the form. This value sets the `value` property
71
- * only when the `value` property has not been explicitly set.
72
- */
73
- value: {
74
- type: PropType<string>;
75
- default: undefined;
76
- };
77
69
  /**
78
70
  * The current value of the element. This property serves as a mechanism
79
71
  * to set the `value` property through both property assignment and the
@@ -81,7 +73,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
81
73
  * in UI libraries that bind data through the .setAttribute() API
82
74
  * and don't support IDL attribute binding.
83
75
  */
84
- currentValue: {
76
+ value: {
85
77
  type: PropType<string>;
86
78
  default: undefined;
87
79
  };
@@ -247,14 +239,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
247
239
  type: PropType<string>;
248
240
  default: undefined;
249
241
  };
250
- /**
251
- * The initial value of the form. This value sets the `value` property
252
- * only when the `value` property has not been explicitly set.
253
- */
254
- value: {
255
- type: PropType<string>;
256
- default: undefined;
257
- };
258
242
  /**
259
243
  * The current value of the element. This property serves as a mechanism
260
244
  * to set the `value` property through both property assignment and the
@@ -262,7 +246,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
262
246
  * in UI libraries that bind data through the .setAttribute() API
263
247
  * and don't support IDL attribute binding.
264
248
  */
265
- currentValue: {
249
+ value: {
266
250
  type: PropType<string>;
267
251
  default: undefined;
268
252
  };
@@ -351,7 +335,6 @@ declare const _default: import("vue/types/v3-define-component").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;
@@ -67,14 +67,6 @@ declare const _default: import("vue").DefineComponent<{
67
67
  type: PropType<string>;
68
68
  default: undefined;
69
69
  };
70
- /**
71
- * The initial value of the form. This value sets the `value` property
72
- * only when the `value` property has not been explicitly set.
73
- */
74
- value: {
75
- type: PropType<string>;
76
- default: undefined;
77
- };
78
70
  /**
79
71
  * The current value of the element. This property serves as a mechanism
80
72
  * to set the `value` property through both property assignment and the
@@ -82,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
82
74
  * in UI libraries that bind data through the .setAttribute() API
83
75
  * and don't support IDL attribute binding.
84
76
  */
85
- currentValue: {
77
+ value: {
86
78
  type: PropType<string>;
87
79
  default: undefined;
88
80
  };
@@ -289,14 +281,6 @@ declare const _default: import("vue").DefineComponent<{
289
281
  type: PropType<string>;
290
282
  default: undefined;
291
283
  };
292
- /**
293
- * The initial value of the form. This value sets the `value` property
294
- * only when the `value` property has not been explicitly set.
295
- */
296
- value: {
297
- type: PropType<string>;
298
- default: undefined;
299
- };
300
284
  /**
301
285
  * The current value of the element. This property serves as a mechanism
302
286
  * to set the `value` property through both property assignment and the
@@ -304,7 +288,7 @@ declare const _default: import("vue").DefineComponent<{
304
288
  * in UI libraries that bind data through the .setAttribute() API
305
289
  * and don't support IDL attribute binding.
306
290
  */
307
- currentValue: {
291
+ value: {
308
292
  type: PropType<string>;
309
293
  default: undefined;
310
294
  };
@@ -402,7 +386,6 @@ declare const _default: import("vue").DefineComponent<{
402
386
  open: boolean;
403
387
  disabled: boolean;
404
388
  initialValue: string;
405
- currentValue: string;
406
389
  required: boolean;
407
390
  label: string;
408
391
  modelValue: string;
@@ -23,14 +23,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
23
23
  type: PropType<string>;
24
24
  default: undefined;
25
25
  };
26
- /**
27
- * The initial value of the form. This value sets the `value` property
28
- * only when the `value` property has not been explicitly set.
29
- */
30
- value: {
31
- type: PropType<string>;
32
- default: undefined;
33
- };
34
26
  /**
35
27
  * The current value of the element. This property serves as a mechanism
36
28
  * to set the `value` property through both property assignment and the
@@ -38,7 +30,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
38
30
  * in UI libraries that bind data through the .setAttribute() API
39
31
  * and don't support IDL attribute binding.
40
32
  */
41
- currentValue: {
33
+ value: {
42
34
  type: PropType<string>;
43
35
  default: undefined;
44
36
  };
@@ -170,14 +162,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
170
162
  type: PropType<string>;
171
163
  default: undefined;
172
164
  };
173
- /**
174
- * The initial value of the form. This value sets the `value` property
175
- * only when the `value` property has not been explicitly set.
176
- */
177
- value: {
178
- type: PropType<string>;
179
- default: undefined;
180
- };
181
165
  /**
182
166
  * The current value of the element. This property serves as a mechanism
183
167
  * to set the `value` property through both property assignment and the
@@ -185,7 +169,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
185
169
  * in UI libraries that bind data through the .setAttribute() API
186
170
  * and don't support IDL attribute binding.
187
171
  */
188
- currentValue: {
172
+ value: {
189
173
  type: PropType<string>;
190
174
  default: undefined;
191
175
  };
@@ -287,7 +271,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
287
271
  connotation: "accent" | "cta";
288
272
  disabled: boolean;
289
273
  initialValue: string;
290
- currentValue: string;
291
274
  required: boolean;
292
275
  modelValue: string;
293
276
  readonly: boolean;
@@ -24,14 +24,6 @@ declare const _default: import("vue").DefineComponent<{
24
24
  type: PropType<string>;
25
25
  default: undefined;
26
26
  };
27
- /**
28
- * The initial value of the form. This value sets the `value` property
29
- * only when the `value` property has not been explicitly set.
30
- */
31
- value: {
32
- type: PropType<string>;
33
- default: undefined;
34
- };
35
27
  /**
36
28
  * The current value of the element. This property serves as a mechanism
37
29
  * to set the `value` property through both property assignment and the
@@ -39,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
39
31
  * in UI libraries that bind data through the .setAttribute() API
40
32
  * and don't support IDL attribute binding.
41
33
  */
42
- currentValue: {
34
+ value: {
43
35
  type: PropType<string>;
44
36
  default: undefined;
45
37
  };
@@ -212,14 +204,6 @@ declare const _default: import("vue").DefineComponent<{
212
204
  type: PropType<string>;
213
205
  default: undefined;
214
206
  };
215
- /**
216
- * The initial value of the form. This value sets the `value` property
217
- * only when the `value` property has not been explicitly set.
218
- */
219
- value: {
220
- type: PropType<string>;
221
- default: undefined;
222
- };
223
207
  /**
224
208
  * The current value of the element. This property serves as a mechanism
225
209
  * to set the `value` property through both property assignment and the
@@ -227,7 +211,7 @@ declare const _default: import("vue").DefineComponent<{
227
211
  * in UI libraries that bind data through the .setAttribute() API
228
212
  * and don't support IDL attribute binding.
229
213
  */
230
- currentValue: {
214
+ value: {
231
215
  type: PropType<string>;
232
216
  default: undefined;
233
217
  };
@@ -338,7 +322,6 @@ declare const _default: import("vue").DefineComponent<{
338
322
  connotation: "accent" | "cta";
339
323
  disabled: boolean;
340
324
  initialValue: string;
341
- currentValue: string;
342
325
  required: boolean;
343
326
  modelValue: string;
344
327
  readonly: boolean;
@@ -23,14 +23,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
23
23
  type: PropType<string>;
24
24
  default: undefined;
25
25
  };
26
- /**
27
- * The initial value of the form. This value sets the `value` property
28
- * only when the `value` property has not been explicitly set.
29
- */
30
- value: {
31
- type: PropType<string>;
32
- default: undefined;
33
- };
34
26
  /**
35
27
  * The current value of the element. This property serves as a mechanism
36
28
  * to set the `value` property through both property assignment and the
@@ -38,7 +30,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
38
30
  * in UI libraries that bind data through the .setAttribute() API
39
31
  * and don't support IDL attribute binding.
40
32
  */
41
- currentValue: {
33
+ value: {
42
34
  type: PropType<string>;
43
35
  default: undefined;
44
36
  };
@@ -63,13 +55,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
63
55
  type: PropType<boolean>;
64
56
  default: undefined;
65
57
  };
66
- /**
67
- * Provides the default checkedness of the input element
68
- */
69
- checked: {
70
- type: PropType<boolean>;
71
- default: undefined;
72
- };
73
58
  /**
74
59
  * The current checkedness of the element. This property serves as a mechanism
75
60
  * to set the `checked` property through both property assignment and the
@@ -77,7 +62,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
77
62
  * in UI libraries that bind data through the .setAttribute() API
78
63
  * and don't support IDL attribute binding.
79
64
  */
80
- currentChecked: {
65
+ checked: {
81
66
  type: PropType<boolean>;
82
67
  default: undefined;
83
68
  };
@@ -139,14 +124,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
139
124
  type: PropType<string>;
140
125
  default: undefined;
141
126
  };
142
- /**
143
- * The initial value of the form. This value sets the `value` property
144
- * only when the `value` property has not been explicitly set.
145
- */
146
- value: {
147
- type: PropType<string>;
148
- default: undefined;
149
- };
150
127
  /**
151
128
  * The current value of the element. This property serves as a mechanism
152
129
  * to set the `value` property through both property assignment and the
@@ -154,7 +131,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
154
131
  * in UI libraries that bind data through the .setAttribute() API
155
132
  * and don't support IDL attribute binding.
156
133
  */
157
- currentValue: {
134
+ value: {
158
135
  type: PropType<string>;
159
136
  default: undefined;
160
137
  };
@@ -179,13 +156,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
179
156
  type: PropType<boolean>;
180
157
  default: undefined;
181
158
  };
182
- /**
183
- * Provides the default checkedness of the input element
184
- */
185
- checked: {
186
- type: PropType<boolean>;
187
- default: undefined;
188
- };
189
159
  /**
190
160
  * The current checkedness of the element. This property serves as a mechanism
191
161
  * to set the `checked` property through both property assignment and the
@@ -193,7 +163,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
193
163
  * in UI libraries that bind data through the .setAttribute() API
194
164
  * and don't support IDL attribute binding.
195
165
  */
196
- currentChecked: {
166
+ checked: {
197
167
  type: PropType<boolean>;
198
168
  default: undefined;
199
169
  };
@@ -236,13 +206,11 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
236
206
  connotation: "accent" | "success" | "alert" | "cta";
237
207
  disabled: boolean;
238
208
  initialValue: string;
239
- currentValue: string;
240
209
  required: boolean;
241
210
  label: string;
242
211
  modelValue: boolean;
243
212
  defaultChecked: boolean;
244
213
  checked: boolean;
245
- currentChecked: boolean;
246
214
  readonly: boolean;
247
215
  }>;
248
216
  export default _default;
@@ -24,14 +24,6 @@ declare const _default: import("vue").DefineComponent<{
24
24
  type: PropType<string>;
25
25
  default: undefined;
26
26
  };
27
- /**
28
- * The initial value of the form. This value sets the `value` property
29
- * only when the `value` property has not been explicitly set.
30
- */
31
- value: {
32
- type: PropType<string>;
33
- default: undefined;
34
- };
35
27
  /**
36
28
  * The current value of the element. This property serves as a mechanism
37
29
  * to set the `value` property through both property assignment and the
@@ -39,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
39
31
  * in UI libraries that bind data through the .setAttribute() API
40
32
  * and don't support IDL attribute binding.
41
33
  */
42
- currentValue: {
34
+ value: {
43
35
  type: PropType<string>;
44
36
  default: undefined;
45
37
  };
@@ -64,13 +56,6 @@ declare const _default: import("vue").DefineComponent<{
64
56
  type: PropType<boolean>;
65
57
  default: undefined;
66
58
  };
67
- /**
68
- * Provides the default checkedness of the input element
69
- */
70
- checked: {
71
- type: PropType<boolean>;
72
- default: undefined;
73
- };
74
59
  /**
75
60
  * The current checkedness of the element. This property serves as a mechanism
76
61
  * to set the `checked` property through both property assignment and the
@@ -78,7 +63,7 @@ declare const _default: import("vue").DefineComponent<{
78
63
  * in UI libraries that bind data through the .setAttribute() API
79
64
  * and don't support IDL attribute binding.
80
65
  */
81
- currentChecked: {
66
+ checked: {
82
67
  type: PropType<boolean>;
83
68
  default: undefined;
84
69
  };
@@ -181,14 +166,6 @@ declare const _default: import("vue").DefineComponent<{
181
166
  type: PropType<string>;
182
167
  default: undefined;
183
168
  };
184
- /**
185
- * The initial value of the form. This value sets the `value` property
186
- * only when the `value` property has not been explicitly set.
187
- */
188
- value: {
189
- type: PropType<string>;
190
- default: undefined;
191
- };
192
169
  /**
193
170
  * The current value of the element. This property serves as a mechanism
194
171
  * to set the `value` property through both property assignment and the
@@ -196,7 +173,7 @@ declare const _default: import("vue").DefineComponent<{
196
173
  * in UI libraries that bind data through the .setAttribute() API
197
174
  * and don't support IDL attribute binding.
198
175
  */
199
- currentValue: {
176
+ value: {
200
177
  type: PropType<string>;
201
178
  default: undefined;
202
179
  };
@@ -221,13 +198,6 @@ declare const _default: import("vue").DefineComponent<{
221
198
  type: PropType<boolean>;
222
199
  default: undefined;
223
200
  };
224
- /**
225
- * Provides the default checkedness of the input element
226
- */
227
- checked: {
228
- type: PropType<boolean>;
229
- default: undefined;
230
- };
231
201
  /**
232
202
  * The current checkedness of the element. This property serves as a mechanism
233
203
  * to set the `checked` property through both property assignment and the
@@ -235,7 +205,7 @@ declare const _default: import("vue").DefineComponent<{
235
205
  * in UI libraries that bind data through the .setAttribute() API
236
206
  * and don't support IDL attribute binding.
237
207
  */
238
- currentChecked: {
208
+ checked: {
239
209
  type: PropType<boolean>;
240
210
  default: undefined;
241
211
  };
@@ -287,13 +257,11 @@ declare const _default: import("vue").DefineComponent<{
287
257
  connotation: "accent" | "success" | "alert" | "cta";
288
258
  disabled: boolean;
289
259
  initialValue: string;
290
- currentValue: string;
291
260
  required: boolean;
292
261
  label: string;
293
262
  modelValue: boolean;
294
263
  defaultChecked: boolean;
295
264
  checked: boolean;
296
- currentChecked: boolean;
297
265
  readonly: boolean;
298
266
  }, SlotsType<Record<string, never>>>;
299
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.
@@ -58,14 +58,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
58
58
  type: PropType<string>;
59
59
  default: undefined;
60
60
  };
61
- /**
62
- * The initial value of the form. This value sets the `value` property
63
- * only when the `value` property has not been explicitly set.
64
- */
65
- value: {
66
- type: PropType<string>;
67
- default: undefined;
68
- };
69
61
  /**
70
62
  * The current value of the element. This property serves as a mechanism
71
63
  * to set the `value` property through both property assignment and the
@@ -73,7 +65,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
73
65
  * in UI libraries that bind data through the .setAttribute() API
74
66
  * and don't support IDL attribute binding.
75
67
  */
76
- currentValue: {
68
+ value: {
77
69
  type: PropType<string>;
78
70
  default: undefined;
79
71
  };
@@ -257,14 +249,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
257
249
  type: PropType<string>;
258
250
  default: undefined;
259
251
  };
260
- /**
261
- * The initial value of the form. This value sets the `value` property
262
- * only when the `value` property has not been explicitly set.
263
- */
264
- value: {
265
- type: PropType<string>;
266
- default: undefined;
267
- };
268
252
  /**
269
253
  * The current value of the element. This property serves as a mechanism
270
254
  * to set the `value` property through both property assignment and the
@@ -272,7 +256,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
272
256
  * in UI libraries that bind data through the .setAttribute() API
273
257
  * and don't support IDL attribute binding.
274
258
  */
275
- currentValue: {
259
+ value: {
276
260
  type: PropType<string>;
277
261
  default: undefined;
278
262
  };
@@ -392,7 +376,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
392
376
  value: string;
393
377
  disabled: boolean;
394
378
  initialValue: string;
395
- currentValue: string;
396
379
  required: boolean;
397
380
  autofocus: boolean;
398
381
  form: string;