@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
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
41
41
  * The initial value of the form. This value sets the `value` property
42
42
  * only when the `value` property has not been explicitly set.
43
43
  */
44
- value: {
44
+ initialValue: {
45
45
  type: PropType<string>;
46
46
  default: undefined;
47
47
  };
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
52
52
  * in UI libraries that bind data through the .setAttribute() API
53
53
  * and don't support IDL attribute binding.
54
54
  */
55
- currentValue: {
55
+ value: {
56
56
  type: PropType<string>;
57
57
  default: undefined;
58
58
  };
@@ -207,7 +207,7 @@ declare const _default: import("vue").DefineComponent<{
207
207
  * The initial value of the form. This value sets the `value` property
208
208
  * only when the `value` property has not been explicitly set.
209
209
  */
210
- value: {
210
+ initialValue: {
211
211
  type: PropType<string>;
212
212
  default: undefined;
213
213
  };
@@ -218,7 +218,7 @@ declare const _default: import("vue").DefineComponent<{
218
218
  * in UI libraries that bind data through the .setAttribute() API
219
219
  * and don't support IDL attribute binding.
220
220
  */
221
- currentValue: {
221
+ value: {
222
222
  type: PropType<string>;
223
223
  default: undefined;
224
224
  };
@@ -303,7 +303,7 @@ declare const _default: import("vue").DefineComponent<{
303
303
  ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
304
304
  value: string;
305
305
  disabled: boolean;
306
- currentValue: string;
306
+ initialValue: string;
307
307
  required: boolean;
308
308
  label: string;
309
309
  modelValue: string;