@vonage/vivid-vue 5.0.0 → 5.2.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/dist/generated/components/VButton.vue2.d.ts +1 -0
- package/dist/generated/components/VButton.vue3.d.ts +1 -0
- package/dist/generated/components/VFab.vue2.d.ts +1 -0
- package/dist/generated/components/VFab.vue3.d.ts +1 -0
- package/dist/generated/components/VFilePicker.vue2.d.ts +0 -10
- package/dist/generated/components/VFilePicker.vue3.d.ts +0 -10
- package/dist/generated/components/VMenu.types.d.ts +1 -0
- package/dist/generated/components/VMenu.vue2.d.ts +9 -0
- package/dist/generated/components/VMenu.vue3.d.ts +9 -0
- package/dist/generated/components/VOption.types.d.ts +1 -0
- package/dist/generated/components/VOption.vue2.d.ts +9 -0
- package/dist/generated/components/VOption.vue3.d.ts +10 -0
- package/dist/generated/components/VPagination.types.d.ts +3 -0
- package/dist/generated/components/VPagination.vue2.d.ts +10 -1
- package/dist/generated/components/VPagination.vue3.d.ts +11 -0
- package/dist/generated/components/VRangeSlider.types.d.ts +6 -0
- package/dist/generated/components/VRangeSlider.vue2.d.ts +19 -1
- package/dist/generated/components/VRangeSlider.vue3.d.ts +22 -0
- package/dist/generated/components/VSimpleColorPicker.d.ts +7 -0
- package/dist/generated/components/VSimpleColorPicker.types.d.ts +46 -0
- package/dist/generated/components/VSimpleColorPicker.vue2.d.ts +112 -0
- package/dist/generated/components/VSimpleColorPicker.vue3.d.ts +161 -0
- package/dist/generated/components/VSlider.types.d.ts +3 -0
- package/dist/generated/components/VSlider.vue2.d.ts +10 -1
- package/dist/generated/components/VSlider.vue3.d.ts +11 -0
- package/dist/generated/components/VSplitButton.vue2.d.ts +4 -1
- package/dist/generated/components/VSplitButton.vue3.d.ts +4 -1
- package/dist/generated/components/index.d.ts +1 -0
- package/dist/generated/types.d.ts +5 -0
- package/dist/index.cjs +353 -58
- package/dist/index.js +354 -60
- package/package.json +2 -2
- package/web-types.json +145 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vonage/vivid-vue",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "A Vue wrapper library for Vivid components.",
|
|
5
5
|
"author": "Vonage",
|
|
6
6
|
"license": "ISC",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"vue": "^2.7.0 || >=3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@vonage/vivid": "^5.
|
|
38
|
+
"@vonage/vivid": "^5.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@repo/wrapper-gen": "*",
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "@vonage/vivid-vue",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.2.0",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -2809,7 +2809,7 @@
|
|
|
2809
2809
|
},
|
|
2810
2810
|
{
|
|
2811
2811
|
"name": "maxFileSize",
|
|
2812
|
-
"description": "The
|
|
2812
|
+
"description": "The maximum file size (in megabytes) for each file.",
|
|
2813
2813
|
"value": {
|
|
2814
2814
|
"kind": "expression",
|
|
2815
2815
|
"type": "number"
|
|
@@ -2817,7 +2817,7 @@
|
|
|
2817
2817
|
},
|
|
2818
2818
|
{
|
|
2819
2819
|
"name": "maxFiles",
|
|
2820
|
-
"description": "The max files that can be selected.",
|
|
2820
|
+
"description": "The max number of files that can be selected. Additional files will be rejected.",
|
|
2821
2821
|
"value": {
|
|
2822
2822
|
"kind": "expression",
|
|
2823
2823
|
"type": "number"
|
|
@@ -2849,7 +2849,7 @@
|
|
|
2849
2849
|
},
|
|
2850
2850
|
{
|
|
2851
2851
|
"name": "singleFile",
|
|
2852
|
-
"description": "
|
|
2852
|
+
"description": "Whether to allow only a single file. Subsequent added file will replace the current file.",
|
|
2853
2853
|
"value": {
|
|
2854
2854
|
"kind": "expression",
|
|
2855
2855
|
"type": "boolean"
|
|
@@ -3054,6 +3054,14 @@
|
|
|
3054
3054
|
"type": "boolean"
|
|
3055
3055
|
}
|
|
3056
3056
|
},
|
|
3057
|
+
{
|
|
3058
|
+
"name": "offset",
|
|
3059
|
+
"description": "Adds offset to the popup",
|
|
3060
|
+
"value": {
|
|
3061
|
+
"kind": "expression",
|
|
3062
|
+
"type": "number"
|
|
3063
|
+
}
|
|
3064
|
+
},
|
|
3057
3065
|
{
|
|
3058
3066
|
"name": "open",
|
|
3059
3067
|
"description": "indicates whether the menu is open",
|
|
@@ -3790,6 +3798,13 @@
|
|
|
3790
3798
|
"type": "string"
|
|
3791
3799
|
}
|
|
3792
3800
|
},
|
|
3801
|
+
{
|
|
3802
|
+
"name": "textSecondary",
|
|
3803
|
+
"value": {
|
|
3804
|
+
"kind": "expression",
|
|
3805
|
+
"type": "string"
|
|
3806
|
+
}
|
|
3807
|
+
},
|
|
3793
3808
|
{
|
|
3794
3809
|
"name": "value",
|
|
3795
3810
|
"description": "The value of the option.",
|
|
@@ -3804,6 +3819,10 @@
|
|
|
3804
3819
|
{
|
|
3805
3820
|
"name": "icon",
|
|
3806
3821
|
"description": "The preferred way to add an icon to the component."
|
|
3822
|
+
},
|
|
3823
|
+
{
|
|
3824
|
+
"name": "trailing-meta",
|
|
3825
|
+
"description": "For additional elements at the end of the Option."
|
|
3807
3826
|
}
|
|
3808
3827
|
],
|
|
3809
3828
|
"source": {
|
|
@@ -4228,6 +4247,14 @@
|
|
|
4228
4247
|
"type": "string"
|
|
4229
4248
|
}
|
|
4230
4249
|
},
|
|
4250
|
+
{
|
|
4251
|
+
"name": "endAsNumber",
|
|
4252
|
+
"description": "The end property, typed as a number.",
|
|
4253
|
+
"value": {
|
|
4254
|
+
"kind": "expression",
|
|
4255
|
+
"type": "number"
|
|
4256
|
+
}
|
|
4257
|
+
},
|
|
4231
4258
|
{
|
|
4232
4259
|
"name": "initialEnd",
|
|
4233
4260
|
"description": "The initial end value. This value sets the `end` property\nonly when the `end` property has not been explicitly set.",
|
|
@@ -4324,6 +4351,14 @@
|
|
|
4324
4351
|
"type": "string"
|
|
4325
4352
|
}
|
|
4326
4353
|
},
|
|
4354
|
+
{
|
|
4355
|
+
"name": "startAsNumber",
|
|
4356
|
+
"description": "The start property, typed as a number.",
|
|
4357
|
+
"value": {
|
|
4358
|
+
"kind": "expression",
|
|
4359
|
+
"type": "number"
|
|
4360
|
+
}
|
|
4361
|
+
},
|
|
4327
4362
|
{
|
|
4328
4363
|
"name": "step",
|
|
4329
4364
|
"description": "Value to increment or decrement via arrow keys, mouse click or drag.",
|
|
@@ -4902,6 +4937,104 @@
|
|
|
4902
4937
|
},
|
|
4903
4938
|
"priority": "highest"
|
|
4904
4939
|
},
|
|
4940
|
+
{
|
|
4941
|
+
"name": "VSimpleColorPicker",
|
|
4942
|
+
"description": "",
|
|
4943
|
+
"attributes": [
|
|
4944
|
+
{
|
|
4945
|
+
"name": "anchor",
|
|
4946
|
+
"description": "ID or direct reference to the component's anchor element.",
|
|
4947
|
+
"value": {
|
|
4948
|
+
"kind": "expression",
|
|
4949
|
+
"type": "string | HTMLElement"
|
|
4950
|
+
}
|
|
4951
|
+
},
|
|
4952
|
+
{
|
|
4953
|
+
"name": "disabled",
|
|
4954
|
+
"description": "Sets the element's disabled state. A disabled element will not be included during form submission.",
|
|
4955
|
+
"value": {
|
|
4956
|
+
"kind": "expression",
|
|
4957
|
+
"type": "boolean"
|
|
4958
|
+
}
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"name": "initialValue",
|
|
4962
|
+
"description": "The default value of the element. This value sets the `value` property\nonly when the `value` property has not been explicitly set.",
|
|
4963
|
+
"value": {
|
|
4964
|
+
"kind": "expression",
|
|
4965
|
+
"type": "string"
|
|
4966
|
+
}
|
|
4967
|
+
},
|
|
4968
|
+
{
|
|
4969
|
+
"name": "label",
|
|
4970
|
+
"description": "The label for the form element.",
|
|
4971
|
+
"value": {
|
|
4972
|
+
"kind": "expression",
|
|
4973
|
+
"type": "string"
|
|
4974
|
+
}
|
|
4975
|
+
},
|
|
4976
|
+
{
|
|
4977
|
+
"name": "name",
|
|
4978
|
+
"description": "The name of the element. This element's value will be surfaced during form submission under the provided name.",
|
|
4979
|
+
"value": {
|
|
4980
|
+
"kind": "expression",
|
|
4981
|
+
"type": "string"
|
|
4982
|
+
}
|
|
4983
|
+
},
|
|
4984
|
+
{
|
|
4985
|
+
"name": "open",
|
|
4986
|
+
"description": "Indicates whether the popup is open",
|
|
4987
|
+
"value": {
|
|
4988
|
+
"kind": "expression",
|
|
4989
|
+
"type": "boolean"
|
|
4990
|
+
}
|
|
4991
|
+
},
|
|
4992
|
+
{
|
|
4993
|
+
"name": "placement",
|
|
4994
|
+
"description": "Placement of the popup with color swatches",
|
|
4995
|
+
"value": {
|
|
4996
|
+
"kind": "expression",
|
|
4997
|
+
"type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'"
|
|
4998
|
+
}
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
"name": "required",
|
|
5002
|
+
"description": "Require the field to be completed prior to form submission.",
|
|
5003
|
+
"value": {
|
|
5004
|
+
"kind": "expression",
|
|
5005
|
+
"type": "boolean"
|
|
5006
|
+
}
|
|
5007
|
+
},
|
|
5008
|
+
{
|
|
5009
|
+
"name": "swatchesPerRow",
|
|
5010
|
+
"description": "Number of swatches per row for grid layout",
|
|
5011
|
+
"value": {
|
|
5012
|
+
"kind": "expression",
|
|
5013
|
+
"type": "number"
|
|
5014
|
+
}
|
|
5015
|
+
},
|
|
5016
|
+
{
|
|
5017
|
+
"name": "value",
|
|
5018
|
+
"description": "The current value of the element.",
|
|
5019
|
+
"value": {
|
|
5020
|
+
"kind": "expression",
|
|
5021
|
+
"type": "string"
|
|
5022
|
+
}
|
|
5023
|
+
}
|
|
5024
|
+
],
|
|
5025
|
+
"events": [],
|
|
5026
|
+
"slots": [
|
|
5027
|
+
{
|
|
5028
|
+
"name": "anchor",
|
|
5029
|
+
"description": "Slot for attaching the toggle button"
|
|
5030
|
+
}
|
|
5031
|
+
],
|
|
5032
|
+
"source": {
|
|
5033
|
+
"module": "@vonage/vivid-vue",
|
|
5034
|
+
"symbol": "VSimpleColorPicker"
|
|
5035
|
+
},
|
|
5036
|
+
"priority": "highest"
|
|
5037
|
+
},
|
|
4905
5038
|
{
|
|
4906
5039
|
"name": "VSlider",
|
|
4907
5040
|
"description": "",
|
|
@@ -5017,6 +5150,14 @@
|
|
|
5017
5150
|
"kind": "expression",
|
|
5018
5151
|
"type": "string"
|
|
5019
5152
|
}
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"name": "valueAsNumber",
|
|
5156
|
+
"description": "The value property, typed as a number.",
|
|
5157
|
+
"value": {
|
|
5158
|
+
"kind": "expression",
|
|
5159
|
+
"type": "number"
|
|
5160
|
+
}
|
|
5020
5161
|
}
|
|
5021
5162
|
],
|
|
5022
5163
|
"events": [],
|