@vonage/vivid-vue 3.4.0 → 3.6.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/VCheckbox.vue2.d.ts +15 -0
- package/dist/generated/components/VCheckbox.vue3.d.ts +15 -0
- package/dist/generated/components/VDataGrid.vue2.d.ts +47 -0
- package/dist/generated/components/VDataGrid.vue3.d.ts +47 -0
- package/dist/generated/components/VMenu.vue2.d.ts +17 -0
- package/dist/generated/components/VMenu.vue3.d.ts +17 -0
- package/dist/generated/components/VSelect.vue2.d.ts +9 -0
- package/dist/generated/components/VSelect.vue3.d.ts +9 -0
- package/dist/index.es.js +70 -31
- package/dist/index.umd.js +1 -1
- package/dist/web-types.json +48 -1
- package/package.json +2 -2
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "@vonage/vivid-vue",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.0",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1521,6 +1521,14 @@
|
|
|
1521
1521
|
"kind": "expression",
|
|
1522
1522
|
"type": "boolean"
|
|
1523
1523
|
}
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"name": "connotation",
|
|
1527
|
+
"description": "The connotation the checklist should have.",
|
|
1528
|
+
"value": {
|
|
1529
|
+
"kind": "expression",
|
|
1530
|
+
"type": "'accent' | 'cta'"
|
|
1531
|
+
}
|
|
1524
1532
|
}
|
|
1525
1533
|
],
|
|
1526
1534
|
"events": [
|
|
@@ -1707,6 +1715,30 @@
|
|
|
1707
1715
|
"type": "'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false'"
|
|
1708
1716
|
}
|
|
1709
1717
|
},
|
|
1718
|
+
{
|
|
1719
|
+
"name": "noTabbing",
|
|
1720
|
+
"description": "When true the component will not add itself to the tab queue.\nDefault is false.",
|
|
1721
|
+
"value": {
|
|
1722
|
+
"kind": "expression",
|
|
1723
|
+
"type": "boolean"
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"name": "generateHeader",
|
|
1728
|
+
"description": "Whether the grid should automatically generate a header row and its type",
|
|
1729
|
+
"value": {
|
|
1730
|
+
"kind": "expression",
|
|
1731
|
+
"type": "'none' | 'default' | 'sticky'"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"name": "gridTemplateColumns",
|
|
1736
|
+
"description": "String that gets applied to the the css gridTemplateColumns attribute of child rows",
|
|
1737
|
+
"value": {
|
|
1738
|
+
"kind": "expression",
|
|
1739
|
+
"type": "string"
|
|
1740
|
+
}
|
|
1741
|
+
},
|
|
1710
1742
|
{
|
|
1711
1743
|
"name": "selectionMode",
|
|
1712
1744
|
"value": {
|
|
@@ -2487,6 +2519,14 @@
|
|
|
2487
2519
|
"kind": "expression",
|
|
2488
2520
|
"type": "HTMLElement | string"
|
|
2489
2521
|
}
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"name": "autoDismiss",
|
|
2525
|
+
"description": "indicates whether the menu will automatically close when\nthe user clicks outside the menu",
|
|
2526
|
+
"value": {
|
|
2527
|
+
"kind": "expression",
|
|
2528
|
+
"type": "boolean"
|
|
2529
|
+
}
|
|
2490
2530
|
}
|
|
2491
2531
|
],
|
|
2492
2532
|
"events": [
|
|
@@ -3991,6 +4031,13 @@
|
|
|
3991
4031
|
"kind": "expression",
|
|
3992
4032
|
"type": "'rounded' | 'pill'"
|
|
3993
4033
|
}
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"name": "fixedDropdown",
|
|
4037
|
+
"value": {
|
|
4038
|
+
"kind": "expression",
|
|
4039
|
+
"type": "boolean"
|
|
4040
|
+
}
|
|
3994
4041
|
}
|
|
3995
4042
|
],
|
|
3996
4043
|
"events": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vonage/vivid-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "A Vue wrapper library for Vivid components.",
|
|
5
5
|
"author": "Vonage",
|
|
6
6
|
"license": "ISC",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"vue": "^2.7.0 || >=3.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@vonage/vivid": "^3.
|
|
30
|
+
"@vonage/vivid": "^3.18.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^18.15.11",
|