@vonage/vivid-vue 5.27.0 → 5.28.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/index.cjs CHANGED
@@ -232,7 +232,7 @@ var VAccordionItem_default = (0, vue.defineComponent)({
232
232
  default: void 0
233
233
  },
234
234
  /**
235
- * Indicates whether the accordion-item has indicator
235
+ * Whether to hide the indicator on the Accordion Item.
236
236
  */
237
237
  noIndicator: {
238
238
  type: Boolean,
@@ -875,7 +875,7 @@ var VAvatar_default = (0, vue.defineComponent)({
875
875
  default: void 0
876
876
  },
877
877
  /**
878
- * Indicates whether avatar should be a clickable <button> element.
878
+ * Indicates whether the avatar should be a clickable button element.
879
879
  */
880
880
  clickable: {
881
881
  type: Boolean,
@@ -889,21 +889,21 @@ var VAvatar_default = (0, vue.defineComponent)({
889
889
  default: void 0
890
890
  },
891
891
  /**
892
- * Prompts the user to save the linked URL. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
892
+ * Prompts the user to save the linked URL. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
893
893
  */
894
894
  download: {
895
895
  type: String,
896
896
  default: void 0
897
897
  },
898
898
  /**
899
- * The URL the hyperlink references. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
899
+ * The URL the hyperlink references. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
900
900
  */
901
901
  href: {
902
902
  type: String,
903
903
  default: void 0
904
904
  },
905
905
  /**
906
- * Hints at the language of the referenced resource. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
906
+ * Hints at the language of the referenced resource. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
907
907
  */
908
908
  hreflang: {
909
909
  type: String,
@@ -925,21 +925,21 @@ var VAvatar_default = (0, vue.defineComponent)({
925
925
  default: void 0
926
926
  },
927
927
  /**
928
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
928
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
929
929
  */
930
930
  ping: {
931
931
  type: String,
932
932
  default: void 0
933
933
  },
934
934
  /**
935
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
935
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
936
936
  */
937
937
  referrerpolicy: {
938
938
  type: String,
939
939
  default: void 0
940
940
  },
941
941
  /**
942
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
942
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
943
943
  */
944
944
  rel: {
945
945
  type: String,
@@ -960,14 +960,14 @@ var VAvatar_default = (0, vue.defineComponent)({
960
960
  default: void 0
961
961
  },
962
962
  /**
963
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
963
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
964
964
  */
965
965
  target: {
966
966
  type: String,
967
967
  default: void 0
968
968
  },
969
969
  /**
970
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
970
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
971
971
  */
972
972
  type: {
973
973
  type: String,
@@ -1134,11 +1134,18 @@ var VBadge_default = (0, vue.defineComponent)({
1134
1134
  default: void 0
1135
1135
  },
1136
1136
  /**
1137
- * Sets a text on the badge
1137
+ * Sets the text on the badge.
1138
1138
  */
1139
1139
  text: {
1140
1140
  type: String,
1141
1141
  default: void 0
1142
+ },
1143
+ /**
1144
+ * Sets secondary text on the badge, displayed with less emphasis after the text.
1145
+ */
1146
+ textSecondary: {
1147
+ type: String,
1148
+ default: void 0
1142
1149
  }
1143
1150
  },
1144
1151
  emits: [
@@ -1167,7 +1174,8 @@ var VBadge_default = (0, vue.defineComponent)({
1167
1174
  ...this.iconTrailing !== void 0 ? { "icon-trailing": this.iconTrailing } : {},
1168
1175
  ...this.shape !== void 0 ? { "shape": this.shape } : {},
1169
1176
  ...this.size !== void 0 ? { "size": this.size } : {},
1170
- ...this.text !== void 0 ? { "text": this.text } : {}
1177
+ ...this.text !== void 0 ? { "text": this.text } : {},
1178
+ ...this.textSecondary !== void 0 ? { "text-secondary": this.textSecondary } : {}
1171
1179
  },
1172
1180
  class: "vvd-component",
1173
1181
  on: {
@@ -1202,7 +1210,8 @@ var VBadge_default = (0, vue.defineComponent)({
1202
1210
  ...this.iconTrailing !== void 0 && this.iconTrailing !== false ? { "^icon-trailing": this.iconTrailing } : {},
1203
1211
  ...this.shape !== void 0 ? { "^shape": this.shape } : {},
1204
1212
  ...this.size !== void 0 ? { "^size": this.size } : {},
1205
- ...this.text !== void 0 ? { "^text": this.text } : {}
1213
+ ...this.text !== void 0 ? { "^text": this.text } : {},
1214
+ ...this.textSecondary !== void 0 ? { "^text-secondary": this.textSecondary } : {}
1206
1215
  }),
1207
1216
  "onBlur": (event) => {
1208
1217
  this.$emit("blur", event);
@@ -1424,42 +1433,42 @@ var VBreadcrumbItem_default = (0, vue.defineComponent)({
1424
1433
  default: void 0
1425
1434
  },
1426
1435
  /**
1427
- * The URL the hyperlink references. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1436
+ * The URL the hyperlink references. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1428
1437
  */
1429
1438
  href: {
1430
1439
  type: String,
1431
1440
  default: void 0
1432
1441
  },
1433
1442
  /**
1434
- * Hints at the language of the referenced resource. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1443
+ * Hints at the language of the referenced resource. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1435
1444
  */
1436
1445
  hreflang: {
1437
1446
  type: String,
1438
1447
  default: void 0
1439
1448
  },
1440
1449
  /**
1441
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1450
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1442
1451
  */
1443
1452
  ping: {
1444
1453
  type: String,
1445
1454
  default: void 0
1446
1455
  },
1447
1456
  /**
1448
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1457
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1449
1458
  */
1450
1459
  referrerpolicy: {
1451
1460
  type: String,
1452
1461
  default: void 0
1453
1462
  },
1454
1463
  /**
1455
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1464
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1456
1465
  */
1457
1466
  rel: {
1458
1467
  type: String,
1459
1468
  default: void 0
1460
1469
  },
1461
1470
  /**
1462
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1471
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1463
1472
  */
1464
1473
  target: {
1465
1474
  type: String,
@@ -1470,7 +1479,7 @@ var VBreadcrumbItem_default = (0, vue.defineComponent)({
1470
1479
  default: void 0
1471
1480
  },
1472
1481
  /**
1473
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1482
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1474
1483
  */
1475
1484
  type: {
1476
1485
  type: String,
@@ -1601,7 +1610,7 @@ var VButton_default = (0, vue.defineComponent)({
1601
1610
  default: void 0
1602
1611
  },
1603
1612
  /**
1604
- * Prompts the user to save the linked URL. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1613
+ * Prompts the user to save the linked URL. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1605
1614
  */
1606
1615
  download: {
1607
1616
  type: String,
@@ -1657,14 +1666,14 @@ var VButton_default = (0, vue.defineComponent)({
1657
1666
  default: void 0
1658
1667
  },
1659
1668
  /**
1660
- * The URL the hyperlink references. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1669
+ * The URL the hyperlink references. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1661
1670
  */
1662
1671
  href: {
1663
1672
  type: String,
1664
1673
  default: void 0
1665
1674
  },
1666
1675
  /**
1667
- * Hints at the language of the referenced resource. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1676
+ * Hints at the language of the referenced resource. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1668
1677
  */
1669
1678
  hreflang: {
1670
1679
  type: String,
@@ -1716,7 +1725,7 @@ var VButton_default = (0, vue.defineComponent)({
1716
1725
  default: void 0
1717
1726
  },
1718
1727
  /**
1719
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1728
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1720
1729
  */
1721
1730
  ping: {
1722
1731
  type: String,
@@ -1731,14 +1740,14 @@ var VButton_default = (0, vue.defineComponent)({
1731
1740
  default: void 0
1732
1741
  },
1733
1742
  /**
1734
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1743
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1735
1744
  */
1736
1745
  referrerpolicy: {
1737
1746
  type: String,
1738
1747
  default: void 0
1739
1748
  },
1740
1749
  /**
1741
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1750
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1742
1751
  */
1743
1752
  rel: {
1744
1753
  type: String,
@@ -1773,7 +1782,7 @@ var VButton_default = (0, vue.defineComponent)({
1773
1782
  default: void 0
1774
1783
  },
1775
1784
  /**
1776
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1785
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1777
1786
  */
1778
1787
  target: {
1779
1788
  type: String,
@@ -1787,7 +1796,7 @@ var VButton_default = (0, vue.defineComponent)({
1787
1796
  default: void 0
1788
1797
  },
1789
1798
  /**
1790
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
1799
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
1791
1800
  */
1792
1801
  type: {
1793
1802
  type: String,
@@ -2242,7 +2251,7 @@ var VCard_default = (0, vue.defineComponent)({
2242
2251
  default: void 0
2243
2252
  },
2244
2253
  /**
2245
- * Prompts the user to save the linked URL. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2254
+ * Prompts the user to save the linked URL. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2246
2255
  */
2247
2256
  download: {
2248
2257
  type: String,
@@ -2263,14 +2272,14 @@ var VCard_default = (0, vue.defineComponent)({
2263
2272
  default: void 0
2264
2273
  },
2265
2274
  /**
2266
- * The URL the hyperlink references. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2275
+ * The URL the hyperlink references. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2267
2276
  */
2268
2277
  href: {
2269
2278
  type: String,
2270
2279
  default: void 0
2271
2280
  },
2272
2281
  /**
2273
- * Hints at the language of the referenced resource. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2282
+ * Hints at the language of the referenced resource. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2274
2283
  */
2275
2284
  hreflang: {
2276
2285
  type: String,
@@ -2285,21 +2294,21 @@ var VCard_default = (0, vue.defineComponent)({
2285
2294
  default: void 0
2286
2295
  },
2287
2296
  /**
2288
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2297
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2289
2298
  */
2290
2299
  ping: {
2291
2300
  type: String,
2292
2301
  default: void 0
2293
2302
  },
2294
2303
  /**
2295
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2304
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2296
2305
  */
2297
2306
  referrerpolicy: {
2298
2307
  type: String,
2299
2308
  default: void 0
2300
2309
  },
2301
2310
  /**
2302
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2311
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2303
2312
  */
2304
2313
  rel: {
2305
2314
  type: String,
@@ -2313,7 +2322,7 @@ var VCard_default = (0, vue.defineComponent)({
2313
2322
  default: void 0
2314
2323
  },
2315
2324
  /**
2316
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2325
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2317
2326
  */
2318
2327
  target: {
2319
2328
  type: String,
@@ -2327,7 +2336,7 @@ var VCard_default = (0, vue.defineComponent)({
2327
2336
  default: void 0
2328
2337
  },
2329
2338
  /**
2330
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
2339
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
2331
2340
  */
2332
2341
  type: {
2333
2342
  type: String,
@@ -7607,21 +7616,21 @@ var VNavItem_default = (0, vue.defineComponent)({
7607
7616
  default: void 0
7608
7617
  },
7609
7618
  /**
7610
- * Prompts the user to save the linked URL. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7619
+ * Prompts the user to save the linked URL. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7611
7620
  */
7612
7621
  download: {
7613
7622
  type: String,
7614
7623
  default: void 0
7615
7624
  },
7616
7625
  /**
7617
- * The URL the hyperlink references. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7626
+ * The URL the hyperlink references. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7618
7627
  */
7619
7628
  href: {
7620
7629
  type: String,
7621
7630
  default: void 0
7622
7631
  },
7623
7632
  /**
7624
- * Hints at the language of the referenced resource. See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7633
+ * Hints at the language of the referenced resource. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7625
7634
  */
7626
7635
  hreflang: {
7627
7636
  type: String,
@@ -7637,28 +7646,28 @@ var VNavItem_default = (0, vue.defineComponent)({
7637
7646
  default: void 0
7638
7647
  },
7639
7648
  /**
7640
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7649
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7641
7650
  */
7642
7651
  ping: {
7643
7652
  type: String,
7644
7653
  default: void 0
7645
7654
  },
7646
7655
  /**
7647
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7656
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7648
7657
  */
7649
7658
  referrerpolicy: {
7650
7659
  type: String,
7651
7660
  default: void 0
7652
7661
  },
7653
7662
  /**
7654
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7663
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7655
7664
  */
7656
7665
  rel: {
7657
7666
  type: String,
7658
7667
  default: void 0
7659
7668
  },
7660
7669
  /**
7661
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7670
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7662
7671
  */
7663
7672
  target: {
7664
7673
  type: String,
@@ -7672,7 +7681,7 @@ var VNavItem_default = (0, vue.defineComponent)({
7672
7681
  default: void 0
7673
7682
  },
7674
7683
  /**
7675
- * See [`<a>` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) for more information.
7684
+ * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a for more information.
7676
7685
  */
7677
7686
  type: {
7678
7687
  type: String,
@@ -9991,6 +10000,13 @@ var VRichTextEditor_default = (0, vue.defineComponent)({
9991
10000
  instance: {
9992
10001
  type: null,
9993
10002
  default: void 0
10003
+ },
10004
+ /**
10005
+ * The validation state of the editor, displayed by the `fieldset` appearance.
10006
+ */
10007
+ state: {
10008
+ type: String,
10009
+ default: void 0
9994
10010
  }
9995
10011
  },
9996
10012
  emits: [
@@ -10012,7 +10028,10 @@ var VRichTextEditor_default = (0, vue.defineComponent)({
10012
10028
  render() {
10013
10029
  if (isVue2) return (0, vue.h)(this.componentName, {
10014
10030
  ref: "element",
10015
- attrs: { ...this.appearance !== void 0 ? { "appearance": this.appearance } : {} },
10031
+ attrs: {
10032
+ ...this.appearance !== void 0 ? { "appearance": this.appearance } : {},
10033
+ ...this.state !== void 0 ? { "state": this.state } : {}
10034
+ },
10016
10035
  class: "vvd-component",
10017
10036
  domProps: { ...this.instance !== void 0 ? { "instance": this.instance } : {} },
10018
10037
  on: {
@@ -10058,7 +10077,8 @@ var VRichTextEditor_default = (0, vue.defineComponent)({
10058
10077
  class: "vvd-component",
10059
10078
  ...handleVue3Props({
10060
10079
  ...this.appearance !== void 0 ? { "^appearance": this.appearance } : {},
10061
- ...this.instance !== void 0 ? { ".instance": this.instance } : {}
10080
+ ...this.instance !== void 0 ? { ".instance": this.instance } : {},
10081
+ ...this.state !== void 0 ? { "^state": this.state } : {}
10062
10082
  }),
10063
10083
  "onBlur": (event) => {
10064
10084
  this.$emit("blur", event);