@vonage/vivid-vue 5.2.0 → 5.3.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 (28) hide show
  1. package/dist/generated/components/VColorPicker.d.ts +7 -0
  2. package/dist/generated/components/VColorPicker.types.d.ts +54 -0
  3. package/dist/generated/components/VColorPicker.vue2.d.ts +166 -0
  4. package/dist/generated/components/VColorPicker.vue3.d.ts +217 -0
  5. package/dist/generated/components/VCombobox.vue2.d.ts +1 -1
  6. package/dist/generated/components/VCombobox.vue3.d.ts +1 -1
  7. package/dist/generated/components/VDialPad.types.d.ts +1 -0
  8. package/dist/generated/components/VDialPad.vue2.d.ts +9 -0
  9. package/dist/generated/components/VDialPad.vue3.d.ts +9 -0
  10. package/dist/generated/components/VNumberField.vue2.d.ts +1 -1
  11. package/dist/generated/components/VNumberField.vue3.d.ts +1 -1
  12. package/dist/generated/components/VSearchableSelect.vue2.d.ts +1 -1
  13. package/dist/generated/components/VSearchableSelect.vue3.d.ts +1 -1
  14. package/dist/generated/components/VSelect.vue2.d.ts +1 -1
  15. package/dist/generated/components/VSelect.vue3.d.ts +1 -1
  16. package/dist/generated/components/VSimpleColorPicker.types.d.ts +4 -0
  17. package/dist/generated/components/VSimpleColorPicker.vue2.d.ts +18 -0
  18. package/dist/generated/components/VSimpleColorPicker.vue3.d.ts +18 -0
  19. package/dist/generated/components/VTextArea.vue2.d.ts +1 -1
  20. package/dist/generated/components/VTextArea.vue3.d.ts +1 -1
  21. package/dist/generated/components/VTextField.vue2.d.ts +1 -1
  22. package/dist/generated/components/VTextField.vue3.d.ts +1 -1
  23. package/dist/generated/components/index.d.ts +1 -0
  24. package/dist/generated/types.d.ts +5 -0
  25. package/dist/index.cjs +288 -6
  26. package/dist/index.js +289 -8
  27. package/package.json +2 -2
  28. package/web-types.json +163 -1
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "@vonage/vivid-vue",
4
- "version": "5.2.0",
4
+ "version": "5.3.0",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -1505,6 +1505,152 @@
1505
1505
  },
1506
1506
  "priority": "highest"
1507
1507
  },
1508
+ {
1509
+ "name": "VColorPicker",
1510
+ "description": "",
1511
+ "attributes": [
1512
+ {
1513
+ "name": "disableSavedColors",
1514
+ "description": "Disables the saving colors functionality",
1515
+ "value": {
1516
+ "kind": "expression",
1517
+ "type": "boolean"
1518
+ }
1519
+ },
1520
+ {
1521
+ "name": "disabled",
1522
+ "description": "Sets the element's disabled state. A disabled element will not be included during form submission.",
1523
+ "value": {
1524
+ "kind": "expression",
1525
+ "type": "boolean"
1526
+ }
1527
+ },
1528
+ {
1529
+ "name": "errorText",
1530
+ "description": "Provides a custom error message. Any current error state will be overridden.",
1531
+ "value": {
1532
+ "kind": "expression",
1533
+ "type": "string"
1534
+ }
1535
+ },
1536
+ {
1537
+ "name": "helperText",
1538
+ "description": "Provides additional information to help the user enter the correct information.\nTo add HTML to the helper text, use the helper-text slot instead.",
1539
+ "value": {
1540
+ "kind": "expression",
1541
+ "type": "string"
1542
+ }
1543
+ },
1544
+ {
1545
+ "name": "initialValue",
1546
+ "description": "The default value of the element. This value sets the `value` property\nonly when the `value` property has not been explicitly set.",
1547
+ "value": {
1548
+ "kind": "expression",
1549
+ "type": "string"
1550
+ }
1551
+ },
1552
+ {
1553
+ "name": "label",
1554
+ "description": "The label for the form element.",
1555
+ "value": {
1556
+ "kind": "expression",
1557
+ "type": "string"
1558
+ }
1559
+ },
1560
+ {
1561
+ "name": "maxSwatches",
1562
+ "description": "Limits number of swatches that can be saved.",
1563
+ "value": {
1564
+ "kind": "expression",
1565
+ "type": "number"
1566
+ }
1567
+ },
1568
+ {
1569
+ "name": "name",
1570
+ "description": "The name of the element. This element's value will be surfaced during form submission under the provided name.",
1571
+ "value": {
1572
+ "kind": "expression",
1573
+ "type": "string"
1574
+ }
1575
+ },
1576
+ {
1577
+ "name": "open",
1578
+ "description": "Indicates whether the popup is open",
1579
+ "value": {
1580
+ "kind": "expression",
1581
+ "type": "boolean"
1582
+ }
1583
+ },
1584
+ {
1585
+ "name": "placeholder",
1586
+ "description": "Sets the placeholder value of the element, generally used to provide a hint to the user.",
1587
+ "value": {
1588
+ "kind": "expression",
1589
+ "type": "string"
1590
+ }
1591
+ },
1592
+ {
1593
+ "name": "required",
1594
+ "description": "Require the field to be completed prior to form submission.",
1595
+ "value": {
1596
+ "kind": "expression",
1597
+ "type": "boolean"
1598
+ }
1599
+ },
1600
+ {
1601
+ "name": "savedColorsKey",
1602
+ "description": "Sets the localStorage saved colors key explicitly.",
1603
+ "value": {
1604
+ "kind": "expression",
1605
+ "type": "string"
1606
+ }
1607
+ },
1608
+ {
1609
+ "name": "successText",
1610
+ "description": "Provides a custom success message. Any current error state will be overridden.",
1611
+ "value": {
1612
+ "kind": "expression",
1613
+ "type": "string"
1614
+ }
1615
+ },
1616
+ {
1617
+ "name": "swatches",
1618
+ "description": "List of color swatches, has to be an array of objects.",
1619
+ "value": {
1620
+ "kind": "expression",
1621
+ "type": "Array<{ value: string; label?: string }>"
1622
+ }
1623
+ },
1624
+ {
1625
+ "name": "value",
1626
+ "description": "The current value of the element.",
1627
+ "value": {
1628
+ "kind": "expression",
1629
+ "type": "string"
1630
+ }
1631
+ }
1632
+ ],
1633
+ "events": [],
1634
+ "slots": [
1635
+ {
1636
+ "name": "helper-text",
1637
+ "description": "Describes how to use the text-field. Alternative to the `helper-text` attribute."
1638
+ },
1639
+ {
1640
+ "name": "popup-text",
1641
+ "description": "Overrides the default \"Color Picker\" title of the Popup window."
1642
+ },
1643
+ {
1644
+ "name": "swatches-text",
1645
+ "description": " Overrides the default \"Saved colors:\" text above color swatches."
1646
+ }
1647
+ ],
1648
+ "source": {
1649
+ "module": "@vonage/vivid-vue",
1650
+ "symbol": "VColorPicker"
1651
+ },
1652
+ "priority": "highest"
1653
+ },
1508
1654
  {
1509
1655
  "name": "VCombobox",
1510
1656
  "description": "",
@@ -2278,6 +2424,14 @@
2278
2424
  "type": "string"
2279
2425
  }
2280
2426
  },
2427
+ {
2428
+ "name": "deleteAriaLabel",
2429
+ "description": "The aria-label for the delete button",
2430
+ "value": {
2431
+ "kind": "expression",
2432
+ "type": "string"
2433
+ }
2434
+ },
2281
2435
  {
2282
2436
  "name": "disabled",
2283
2437
  "description": "Indicates the disabled state of the dial-pad.",
@@ -5005,6 +5159,14 @@
5005
5159
  "type": "boolean"
5006
5160
  }
5007
5161
  },
5162
+ {
5163
+ "name": "swatches",
5164
+ "description": "List of color swatches, has to be an array of objects.",
5165
+ "value": {
5166
+ "kind": "expression",
5167
+ "type": "Array<{ value: string; label?: string }>"
5168
+ }
5169
+ },
5008
5170
  {
5009
5171
  "name": "swatchesPerRow",
5010
5172
  "description": "Number of swatches per row for grid layout",