@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.
- package/generated/components/VBanner.vue2.d.ts +3 -3
- package/generated/components/VBanner.vue3.d.ts +3 -3
- package/generated/components/VButton.vue2.d.ts +2 -19
- package/generated/components/VButton.vue3.d.ts +2 -19
- package/generated/components/VCheckbox.vue2.d.ts +4 -36
- package/generated/components/VCheckbox.vue3.d.ts +4 -36
- package/generated/components/VCombobox.vue2.d.ts +2 -19
- package/generated/components/VCombobox.vue3.d.ts +2 -19
- package/generated/components/VDataGridCell.vue2.d.ts +3 -3
- package/generated/components/VDataGridCell.vue3.d.ts +3 -3
- package/generated/components/VDatePicker.vue2.d.ts +4 -19
- package/generated/components/VDatePicker.vue3.d.ts +4 -19
- package/generated/components/VDateRangePicker.vue2.d.ts +2 -63
- package/generated/components/VDateRangePicker.vue3.d.ts +2 -63
- package/generated/components/VFab.vue2.d.ts +2 -19
- package/generated/components/VFab.vue3.d.ts +2 -19
- package/generated/components/VFilePicker.vue2.d.ts +2 -19
- package/generated/components/VFilePicker.vue3.d.ts +2 -19
- package/generated/components/VNumberField.vue2.d.ts +2 -19
- package/generated/components/VNumberField.vue3.d.ts +2 -19
- package/generated/components/VOption.vue2.d.ts +0 -17
- package/generated/components/VOption.vue3.d.ts +0 -17
- package/generated/components/VRadio.vue2.d.ts +4 -36
- package/generated/components/VRadio.vue3.d.ts +4 -36
- package/generated/components/VRangeSlider.vue2.d.ts +2 -65
- package/generated/components/VRangeSlider.vue3.d.ts +2 -65
- package/generated/components/VSelect.vue2.d.ts +2 -19
- package/generated/components/VSelect.vue3.d.ts +2 -19
- package/generated/components/VSlider.vue2.d.ts +2 -19
- package/generated/components/VSlider.vue3.d.ts +2 -19
- package/generated/components/VSwitch.vue2.d.ts +4 -36
- package/generated/components/VSwitch.vue3.d.ts +4 -36
- package/generated/components/VTab.vue2.d.ts +3 -3
- package/generated/components/VTab.vue3.d.ts +3 -3
- package/generated/components/VTextArea.vue2.d.ts +2 -19
- package/generated/components/VTextArea.vue3.d.ts +2 -19
- package/generated/components/VTextField.vue2.d.ts +2 -19
- package/generated/components/VTextField.vue3.d.ts +2 -19
- package/generated/components/VTimePicker.vue2.d.ts +2 -19
- package/generated/components/VTimePicker.vue3.d.ts +2 -19
- package/index.cjs +679 -881
- package/index.js +679 -881
- package/package.json +2 -2
- package/web-types.json +6 -198
|
@@ -59,14 +59,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
type: PropType<string>;
|
|
60
60
|
default: undefined;
|
|
61
61
|
};
|
|
62
|
-
/**
|
|
63
|
-
* The initial value of the form. This value sets the `value` property
|
|
64
|
-
* only when the `value` property has not been explicitly set.
|
|
65
|
-
*/
|
|
66
|
-
value: {
|
|
67
|
-
type: PropType<string>;
|
|
68
|
-
default: undefined;
|
|
69
|
-
};
|
|
70
62
|
/**
|
|
71
63
|
* The current value of the element. This property serves as a mechanism
|
|
72
64
|
* to set the `value` property through both property assignment and the
|
|
@@ -74,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
66
|
* in UI libraries that bind data through the .setAttribute() API
|
|
75
67
|
* and don't support IDL attribute binding.
|
|
76
68
|
*/
|
|
77
|
-
|
|
69
|
+
value: {
|
|
78
70
|
type: PropType<string>;
|
|
79
71
|
default: undefined;
|
|
80
72
|
};
|
|
@@ -299,14 +291,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
299
291
|
type: PropType<string>;
|
|
300
292
|
default: undefined;
|
|
301
293
|
};
|
|
302
|
-
/**
|
|
303
|
-
* The initial value of the form. This value sets the `value` property
|
|
304
|
-
* only when the `value` property has not been explicitly set.
|
|
305
|
-
*/
|
|
306
|
-
value: {
|
|
307
|
-
type: PropType<string>;
|
|
308
|
-
default: undefined;
|
|
309
|
-
};
|
|
310
294
|
/**
|
|
311
295
|
* The current value of the element. This property serves as a mechanism
|
|
312
296
|
* to set the `value` property through both property assignment and the
|
|
@@ -314,7 +298,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
314
298
|
* in UI libraries that bind data through the .setAttribute() API
|
|
315
299
|
* and don't support IDL attribute binding.
|
|
316
300
|
*/
|
|
317
|
-
|
|
301
|
+
value: {
|
|
318
302
|
type: PropType<string>;
|
|
319
303
|
default: undefined;
|
|
320
304
|
};
|
|
@@ -443,7 +427,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
443
427
|
value: string;
|
|
444
428
|
disabled: boolean;
|
|
445
429
|
initialValue: string;
|
|
446
|
-
currentValue: string;
|
|
447
430
|
required: boolean;
|
|
448
431
|
autofocus: boolean;
|
|
449
432
|
form: string;
|
|
@@ -69,14 +69,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
69
69
|
type: PropType<string>;
|
|
70
70
|
default: undefined;
|
|
71
71
|
};
|
|
72
|
-
/**
|
|
73
|
-
* The initial value of the form. This value sets the `value` property
|
|
74
|
-
* only when the `value` property has not been explicitly set.
|
|
75
|
-
*/
|
|
76
|
-
value: {
|
|
77
|
-
type: PropType<string>;
|
|
78
|
-
default: undefined;
|
|
79
|
-
};
|
|
80
72
|
/**
|
|
81
73
|
* The current value of the element. This property serves as a mechanism
|
|
82
74
|
* to set the `value` property through both property assignment and the
|
|
@@ -84,7 +76,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
84
76
|
* in UI libraries that bind data through the .setAttribute() API
|
|
85
77
|
* and don't support IDL attribute binding.
|
|
86
78
|
*/
|
|
87
|
-
|
|
79
|
+
value: {
|
|
88
80
|
type: PropType<string>;
|
|
89
81
|
default: undefined;
|
|
90
82
|
};
|
|
@@ -274,14 +266,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
274
266
|
type: PropType<string>;
|
|
275
267
|
default: undefined;
|
|
276
268
|
};
|
|
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
269
|
/**
|
|
286
270
|
* The current value of the element. This property serves as a mechanism
|
|
287
271
|
* to set the `value` property through both property assignment and the
|
|
@@ -289,7 +273,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
289
273
|
* in UI libraries that bind data through the .setAttribute() API
|
|
290
274
|
* and don't support IDL attribute binding.
|
|
291
275
|
*/
|
|
292
|
-
|
|
276
|
+
value: {
|
|
293
277
|
type: PropType<string>;
|
|
294
278
|
default: undefined;
|
|
295
279
|
};
|
|
@@ -411,7 +395,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
411
395
|
appearance: "fieldset" | "ghost";
|
|
412
396
|
disabled: boolean;
|
|
413
397
|
initialValue: string;
|
|
414
|
-
currentValue: string;
|
|
415
398
|
required: boolean;
|
|
416
399
|
autofocus: boolean;
|
|
417
400
|
label: string;
|
|
@@ -70,14 +70,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
70
|
type: PropType<string>;
|
|
71
71
|
default: undefined;
|
|
72
72
|
};
|
|
73
|
-
/**
|
|
74
|
-
* The initial value of the form. This value sets the `value` property
|
|
75
|
-
* only when the `value` property has not been explicitly set.
|
|
76
|
-
*/
|
|
77
|
-
value: {
|
|
78
|
-
type: PropType<string>;
|
|
79
|
-
default: undefined;
|
|
80
|
-
};
|
|
81
73
|
/**
|
|
82
74
|
* The current value of the element. This property serves as a mechanism
|
|
83
75
|
* to set the `value` property through both property assignment and the
|
|
@@ -85,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
77
|
* in UI libraries that bind data through the .setAttribute() API
|
|
86
78
|
* and don't support IDL attribute binding.
|
|
87
79
|
*/
|
|
88
|
-
|
|
80
|
+
value: {
|
|
89
81
|
type: PropType<string>;
|
|
90
82
|
default: undefined;
|
|
91
83
|
};
|
|
@@ -316,14 +308,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
316
308
|
type: PropType<string>;
|
|
317
309
|
default: undefined;
|
|
318
310
|
};
|
|
319
|
-
/**
|
|
320
|
-
* The initial value of the form. This value sets the `value` property
|
|
321
|
-
* only when the `value` property has not been explicitly set.
|
|
322
|
-
*/
|
|
323
|
-
value: {
|
|
324
|
-
type: PropType<string>;
|
|
325
|
-
default: undefined;
|
|
326
|
-
};
|
|
327
311
|
/**
|
|
328
312
|
* The current value of the element. This property serves as a mechanism
|
|
329
313
|
* to set the `value` property through both property assignment and the
|
|
@@ -331,7 +315,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
331
315
|
* in UI libraries that bind data through the .setAttribute() API
|
|
332
316
|
* and don't support IDL attribute binding.
|
|
333
317
|
*/
|
|
334
|
-
|
|
318
|
+
value: {
|
|
335
319
|
type: PropType<string>;
|
|
336
320
|
default: undefined;
|
|
337
321
|
};
|
|
@@ -462,7 +446,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
462
446
|
appearance: "fieldset" | "ghost";
|
|
463
447
|
disabled: boolean;
|
|
464
448
|
initialValue: string;
|
|
465
|
-
currentValue: string;
|
|
466
449
|
required: boolean;
|
|
467
450
|
autofocus: boolean;
|
|
468
451
|
label: string;
|
|
@@ -44,14 +44,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
44
44
|
type: PropType<string>;
|
|
45
45
|
default: undefined;
|
|
46
46
|
};
|
|
47
|
-
/**
|
|
48
|
-
* The initial value of the form. This value sets the `value` property
|
|
49
|
-
* only when the `value` property has not been explicitly set.
|
|
50
|
-
*/
|
|
51
|
-
value: {
|
|
52
|
-
type: PropType<string>;
|
|
53
|
-
default: undefined;
|
|
54
|
-
};
|
|
55
47
|
/**
|
|
56
48
|
* The current value of the element. This property serves as a mechanism
|
|
57
49
|
* to set the `value` property through both property assignment and the
|
|
@@ -59,7 +51,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
59
51
|
* in UI libraries that bind data through the .setAttribute() API
|
|
60
52
|
* and don't support IDL attribute binding.
|
|
61
53
|
*/
|
|
62
|
-
|
|
54
|
+
value: {
|
|
63
55
|
type: PropType<string>;
|
|
64
56
|
default: undefined;
|
|
65
57
|
};
|
|
@@ -177,14 +169,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
177
169
|
type: PropType<string>;
|
|
178
170
|
default: undefined;
|
|
179
171
|
};
|
|
180
|
-
/**
|
|
181
|
-
* The initial value of the form. This value sets the `value` property
|
|
182
|
-
* only when the `value` property has not been explicitly set.
|
|
183
|
-
*/
|
|
184
|
-
value: {
|
|
185
|
-
type: PropType<string>;
|
|
186
|
-
default: undefined;
|
|
187
|
-
};
|
|
188
172
|
/**
|
|
189
173
|
* The current value of the element. This property serves as a mechanism
|
|
190
174
|
* to set the `value` property through both property assignment and the
|
|
@@ -192,7 +176,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
192
176
|
* in UI libraries that bind data through the .setAttribute() API
|
|
193
177
|
* and don't support IDL attribute binding.
|
|
194
178
|
*/
|
|
195
|
-
|
|
179
|
+
value: {
|
|
196
180
|
type: PropType<string>;
|
|
197
181
|
default: undefined;
|
|
198
182
|
};
|
|
@@ -269,7 +253,6 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
269
253
|
value: string;
|
|
270
254
|
disabled: boolean;
|
|
271
255
|
initialValue: string;
|
|
272
|
-
currentValue: string;
|
|
273
256
|
required: boolean;
|
|
274
257
|
label: string;
|
|
275
258
|
modelValue: string;
|
|
@@ -45,14 +45,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
45
|
type: PropType<string>;
|
|
46
46
|
default: undefined;
|
|
47
47
|
};
|
|
48
|
-
/**
|
|
49
|
-
* The initial value of the form. This value sets the `value` property
|
|
50
|
-
* only when the `value` property has not been explicitly set.
|
|
51
|
-
*/
|
|
52
|
-
value: {
|
|
53
|
-
type: PropType<string>;
|
|
54
|
-
default: undefined;
|
|
55
|
-
};
|
|
56
48
|
/**
|
|
57
49
|
* The current value of the element. This property serves as a mechanism
|
|
58
50
|
* to set the `value` property through both property assignment and the
|
|
@@ -60,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
52
|
* in UI libraries that bind data through the .setAttribute() API
|
|
61
53
|
* and don't support IDL attribute binding.
|
|
62
54
|
*/
|
|
63
|
-
|
|
55
|
+
value: {
|
|
64
56
|
type: PropType<string>;
|
|
65
57
|
default: undefined;
|
|
66
58
|
};
|
|
@@ -219,14 +211,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
219
211
|
type: PropType<string>;
|
|
220
212
|
default: undefined;
|
|
221
213
|
};
|
|
222
|
-
/**
|
|
223
|
-
* The initial value of the form. This value sets the `value` property
|
|
224
|
-
* only when the `value` property has not been explicitly set.
|
|
225
|
-
*/
|
|
226
|
-
value: {
|
|
227
|
-
type: PropType<string>;
|
|
228
|
-
default: undefined;
|
|
229
|
-
};
|
|
230
214
|
/**
|
|
231
215
|
* The current value of the element. This property serves as a mechanism
|
|
232
216
|
* to set the `value` property through both property assignment and the
|
|
@@ -234,7 +218,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
234
218
|
* in UI libraries that bind data through the .setAttribute() API
|
|
235
219
|
* and don't support IDL attribute binding.
|
|
236
220
|
*/
|
|
237
|
-
|
|
221
|
+
value: {
|
|
238
222
|
type: PropType<string>;
|
|
239
223
|
default: undefined;
|
|
240
224
|
};
|
|
@@ -320,7 +304,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
320
304
|
value: string;
|
|
321
305
|
disabled: boolean;
|
|
322
306
|
initialValue: string;
|
|
323
|
-
currentValue: string;
|
|
324
307
|
required: boolean;
|
|
325
308
|
label: string;
|
|
326
309
|
modelValue: string;
|