@vonage/vivid-vue 3.46.0 → 3.48.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/index.es.js CHANGED
@@ -1,12 +1,12 @@
1
- import { ref as s, version as y, onBeforeMount as b, defineComponent as r, h as n } from "vue";
2
- import { registerAccordion as k, registerAccordionItem as S, registerActionGroup as $, registerAlert as x, registerAvatar as w, registerBadge as C, registerBanner as L, registerBreadcrumb as V, registerBreadcrumbItem as B, registerButton as T, registerCalendar as N, registerCalendarEvent as z, registerCard as M, registerCheckbox as F, registerCombobox as K, registerDataGrid as v, registerDatePicker as D, registerDateRangePicker as A, registerDialog as q, registerDivider as O, registerEmptyState as P, registerFab as U, registerHeader as R, registerIcon as E, registerLayout as G, registerMenu as H, registerMenuItem as j, registerNav as W, registerNavDisclosure as J, registerNavItem as _, registerNote as X, registerNumberField as Z, registerOption as Q, registerPagination as Y, registerProgress as I, registerProgressRing as ee, registerRadio as ie, registerRadioGroup as te, registerSelectableBox as oe, registerSelect as ne, registerSideDrawer as ae, registerSlider as le, registerSplitButton as se, registerSwitch as re, registerTab as de, registerTabs as he, registerTabPanel as ue, registerTextArea as ce, registerTextField as pe, registerToggletip as ve, registerTooltip as me, registerTreeItem as fe, registerTreeView as ge, registerTag as ye, registerTagGroup as be } from "@vonage/vivid";
3
- const p = s("vvd3");
1
+ import { ref as l, version as y, onBeforeMount as b, defineComponent as r, h as a } from "vue";
2
+ import { registerAccordion as k, registerAccordionItem as $, registerActionGroup as S, registerAlert as x, registerAvatar as w, registerBadge as C, registerBanner as L, registerBreadcrumb as V, registerBreadcrumbItem as B, registerButton as T, registerCalendar as N, registerCalendarEvent as z, registerCard as M, registerCheckbox as F, registerCombobox as K, registerDataGrid as v, registerDatePicker as D, registerDateRangePicker as A, registerDialog as q, registerDivider as P, registerEmptyState as O, registerFab as U, registerHeader as E, registerIcon as G, registerLayout as R, registerMenu as W, registerMenuItem as H, registerNav as j, registerNavDisclosure as J, registerNavItem as _, registerNote as X, registerNumberField as Z, registerOption as Q, registerPagination as Y, registerProgress as I, registerProgressRing as ee, registerRadio as ie, registerRadioGroup as te, registerSelectableBox as oe, registerSelect as ae, registerSideDrawer as ne, registerSlider as se, registerSplitButton as le, registerSwitch as re, registerTab as de, registerTabs as he, registerTabPanel as ue, registerTextArea as ce, registerTextField as pe, registerToggletip as ve, registerTooltip as me, registerTreeItem as fe, registerTreeView as ge, registerTag as ye, registerTagGroup as be } from "@vonage/vivid";
3
+ const p = l("vvd3");
4
4
  function ke(e) {
5
5
  p.value = e;
6
6
  }
7
- const l = y.startsWith("2");
7
+ const s = y.startsWith("2");
8
8
  function d(e, t) {
9
- const i = s(`${p.value}-${e}`);
9
+ const i = l(`${p.value}-${e}`);
10
10
  return b(() => {
11
11
  t(p.value);
12
12
  }), i;
@@ -74,11 +74,11 @@ const De = r({
74
74
  }
75
75
  },
76
76
  setup(e, t) {
77
- const i = d("accordion", k), o = s(null);
77
+ const i = d("accordion", k), o = l(null);
78
78
  return { componentName: i, element: o };
79
79
  },
80
80
  render() {
81
- return l ? n(
81
+ return s ? a(
82
82
  this.componentName,
83
83
  {
84
84
  ref: "element",
@@ -98,7 +98,7 @@ const De = r({
98
98
  }
99
99
  },
100
100
  [this.$slots.default]
101
- ) : n(
101
+ ) : a(
102
102
  this.componentName,
103
103
  {
104
104
  ref: "element",
@@ -119,7 +119,22 @@ const De = r({
119
119
  ]
120
120
  );
121
121
  }
122
- }), Ae = r({
122
+ });
123
+ function $e(e, t) {
124
+ return t.forEach((i) => {
125
+ var o;
126
+ i.data || (i.data = {}), i.data.attrs = { ...(o = i.data) == null ? void 0 : o.attrs, slot: e };
127
+ }), t;
128
+ }
129
+ function Se(e, t) {
130
+ return t.forEach((i) => {
131
+ i.props || (i.props = {}), i.props = { ...i.props, slot: e };
132
+ }), t;
133
+ }
134
+ function n(e, t) {
135
+ return t ? s ? $e(e, t) : Se(e, t()) : null;
136
+ }
137
+ const Ae = r({
123
138
  name: "VAccordionItem",
124
139
  props: {
125
140
  /**
@@ -209,12 +224,12 @@ const De = r({
209
224
  setup(e, t) {
210
225
  const i = d(
211
226
  "accordion-item",
212
- S
213
- ), o = s(null);
227
+ $
228
+ ), o = l(null);
214
229
  return { componentName: i, element: o };
215
230
  },
216
231
  render() {
217
- return l ? n(
232
+ return s ? a(
218
233
  this.componentName,
219
234
  {
220
235
  ref: "element",
@@ -241,8 +256,12 @@ const De = r({
241
256
  change: (e) => this.$emit("change", e)
242
257
  }
243
258
  },
244
- [this.$slots.default]
245
- ) : n(
259
+ [
260
+ this.$slots.default,
261
+ // @slot icon Add an icon to the component.
262
+ n("icon", this.$slots.icon)
263
+ ]
264
+ ) : a(
246
265
  this.componentName,
247
266
  {
248
267
  ref: "element",
@@ -267,7 +286,9 @@ const De = r({
267
286
  },
268
287
  [
269
288
  // @ts-ignore
270
- this.$slots.default && this.$slots.default()
289
+ this.$slots.default && this.$slots.default(),
290
+ // @slot icon Add an icon to the component.
291
+ n("icon", this.$slots.icon)
271
292
  ]
272
293
  );
273
294
  }
@@ -335,12 +356,12 @@ const De = r({
335
356
  setup(e, t) {
336
357
  const i = d(
337
358
  "action-group",
338
- $
339
- ), o = s(null);
359
+ S
360
+ ), o = l(null);
340
361
  return { componentName: i, element: o };
341
362
  },
342
363
  render() {
343
- return l ? n(
364
+ return s ? a(
344
365
  this.componentName,
345
366
  {
346
367
  ref: "element",
@@ -363,7 +384,7 @@ const De = r({
363
384
  }
364
385
  },
365
386
  [this.$slots.default]
366
- ) : n(
387
+ ) : a(
367
388
  this.componentName,
368
389
  {
369
390
  ref: "element",
@@ -387,22 +408,7 @@ const De = r({
387
408
  ]
388
409
  );
389
410
  }
390
- });
391
- function Se(e, t) {
392
- return t.forEach((i) => {
393
- var o;
394
- i.data || (i.data = {}), i.data.attrs = { ...(o = i.data) == null ? void 0 : o.attrs, slot: e };
395
- }), t;
396
- }
397
- function $e(e, t) {
398
- return t.forEach((i) => {
399
- i.props || (i.props = {}), i.props = { ...i.props, slot: e };
400
- }), t;
401
- }
402
- function a(e, t) {
403
- return t ? l ? Se(e, t) : $e(e, t()) : null;
404
- }
405
- const Oe = r({
411
+ }), Pe = r({
406
412
  name: "VAlert",
407
413
  props: {
408
414
  /**
@@ -516,11 +522,11 @@ const Oe = r({
516
522
  }
517
523
  },
518
524
  setup(e, t) {
519
- const i = d("alert", x), o = s(null);
525
+ const i = d("alert", x), o = l(null);
520
526
  return { componentName: i, element: o };
521
527
  },
522
528
  render() {
523
- return l ? n(
529
+ return s ? a(
524
530
  this.componentName,
525
531
  {
526
532
  ref: "element",
@@ -550,12 +556,13 @@ const Oe = r({
550
556
  }
551
557
  },
552
558
  [
559
+ this.$slots.default,
553
560
  // @slot main The main content of the alert.
554
- a("main", this.$slots.main),
561
+ n("main", this.$slots.main),
555
562
  // @slot action-items Add action items to alert using this slot.
556
- a("action-items", this.$slots["action-items"])
563
+ n("action-items", this.$slots["action-items"])
557
564
  ]
558
- ) : n(
565
+ ) : a(
559
566
  this.componentName,
560
567
  {
561
568
  ref: "element",
@@ -581,14 +588,16 @@ const Oe = r({
581
588
  onClose: (e) => this.$emit("close", e)
582
589
  },
583
590
  [
591
+ // @ts-ignore
592
+ this.$slots.default && this.$slots.default(),
584
593
  // @slot main The main content of the alert.
585
- a("main", this.$slots.main),
594
+ n("main", this.$slots.main),
586
595
  // @slot action-items Add action items to alert using this slot.
587
- a("action-items", this.$slots["action-items"])
596
+ n("action-items", this.$slots["action-items"])
588
597
  ]
589
598
  );
590
599
  }
591
- }), Pe = r({
600
+ }), Oe = r({
592
601
  name: "VAvatar",
593
602
  props: {
594
603
  /**
@@ -667,11 +676,11 @@ const Oe = r({
667
676
  ],
668
677
  methods: {},
669
678
  setup(e, t) {
670
- const i = d("avatar", w), o = s(null);
679
+ const i = d("avatar", w), o = l(null);
671
680
  return { componentName: i, element: o };
672
681
  },
673
682
  render() {
674
- return l ? n(
683
+ return s ? a(
675
684
  this.componentName,
676
685
  {
677
686
  ref: "element",
@@ -695,10 +704,11 @@ const Oe = r({
695
704
  }
696
705
  },
697
706
  [
707
+ this.$slots.default,
698
708
  // @slot graphic Assign nodes to the graphic slot to set a graphic media of any kind (e.g. image, illustration etc).
699
- a("graphic", this.$slots.graphic)
709
+ n("graphic", this.$slots.graphic)
700
710
  ]
701
- ) : n(
711
+ ) : a(
702
712
  this.componentName,
703
713
  {
704
714
  ref: "element",
@@ -718,8 +728,10 @@ const Oe = r({
718
728
  onInput: (e) => this.$emit("input", e)
719
729
  },
720
730
  [
731
+ // @ts-ignore
732
+ this.$slots.default && this.$slots.default(),
721
733
  // @slot graphic Assign nodes to the graphic slot to set a graphic media of any kind (e.g. image, illustration etc).
722
- a("graphic", this.$slots.graphic)
734
+ n("graphic", this.$slots.graphic)
723
735
  ]
724
736
  );
725
737
  }
@@ -799,11 +811,11 @@ const Oe = r({
799
811
  ],
800
812
  methods: {},
801
813
  setup(e, t) {
802
- const i = d("badge", C), o = s(null);
814
+ const i = d("badge", C), o = l(null);
803
815
  return { componentName: i, element: o };
804
816
  },
805
817
  render() {
806
- return l ? n(
818
+ return s ? a(
807
819
  this.componentName,
808
820
  {
809
821
  ref: "element",
@@ -826,8 +838,12 @@ const Oe = r({
826
838
  input: (e) => this.$emit("input", e)
827
839
  }
828
840
  },
829
- []
830
- ) : n(
841
+ [
842
+ this.$slots.default,
843
+ // @slot icon Add an icon to the component.
844
+ n("icon", this.$slots.icon)
845
+ ]
846
+ ) : a(
831
847
  this.componentName,
832
848
  {
833
849
  ref: "element",
@@ -846,10 +862,15 @@ const Oe = r({
846
862
  onKeyup: (e) => this.$emit("keyup", e),
847
863
  onInput: (e) => this.$emit("input", e)
848
864
  },
849
- []
865
+ [
866
+ // @ts-ignore
867
+ this.$slots.default && this.$slots.default(),
868
+ // @slot icon Add an icon to the component.
869
+ n("icon", this.$slots.icon)
870
+ ]
850
871
  );
851
872
  }
852
- }), Re = r({
873
+ }), Ee = r({
853
874
  name: "VBanner",
854
875
  props: {
855
876
  /**
@@ -915,11 +936,11 @@ const Oe = r({
915
936
  }
916
937
  },
917
938
  setup(e, t) {
918
- const i = d("banner", L), o = s(null);
939
+ const i = d("banner", L), o = l(null);
919
940
  return { componentName: i, element: o };
920
941
  },
921
942
  render() {
922
- return l ? n(
943
+ return s ? a(
923
944
  this.componentName,
924
945
  {
925
946
  ref: "element",
@@ -946,10 +967,13 @@ const Oe = r({
946
967
  }
947
968
  },
948
969
  [
970
+ this.$slots.default,
949
971
  // @slot action-items Add action items to banner using this slot.
950
- a("action-items", this.$slots["action-items"])
972
+ n("action-items", this.$slots["action-items"]),
973
+ // @slot icon Add an icon to the component.
974
+ n("icon", this.$slots.icon)
951
975
  ]
952
- ) : n(
976
+ ) : a(
953
977
  this.componentName,
954
978
  {
955
979
  ref: "element",
@@ -972,12 +996,16 @@ const Oe = r({
972
996
  onInput: (e) => this.$emit("input", e)
973
997
  },
974
998
  [
999
+ // @ts-ignore
1000
+ this.$slots.default && this.$slots.default(),
975
1001
  // @slot action-items Add action items to banner using this slot.
976
- a("action-items", this.$slots["action-items"])
1002
+ n("action-items", this.$slots["action-items"]),
1003
+ // @slot icon Add an icon to the component.
1004
+ n("icon", this.$slots.icon)
977
1005
  ]
978
1006
  );
979
1007
  }
980
- }), Ee = r({
1008
+ }), Ge = r({
981
1009
  name: "VBreadcrumb",
982
1010
  props: {
983
1011
  /**
@@ -1022,11 +1050,11 @@ const Oe = r({
1022
1050
  ],
1023
1051
  methods: {},
1024
1052
  setup(e, t) {
1025
- const i = d("breadcrumb", V), o = s(null);
1053
+ const i = d("breadcrumb", V), o = l(null);
1026
1054
  return { componentName: i, element: o };
1027
1055
  },
1028
1056
  render() {
1029
- return l ? n(
1057
+ return s ? a(
1030
1058
  this.componentName,
1031
1059
  {
1032
1060
  ref: "element",
@@ -1044,7 +1072,7 @@ const Oe = r({
1044
1072
  }
1045
1073
  },
1046
1074
  [this.$slots.default]
1047
- ) : n(
1075
+ ) : a(
1048
1076
  this.componentName,
1049
1077
  {
1050
1078
  ref: "element",
@@ -1063,7 +1091,7 @@ const Oe = r({
1063
1091
  ]
1064
1092
  );
1065
1093
  }
1066
- }), Ge = r({
1094
+ }), Re = r({
1067
1095
  name: "VBreadcrumbItem",
1068
1096
  props: {
1069
1097
  /**
@@ -1147,11 +1175,11 @@ const Oe = r({
1147
1175
  const i = d(
1148
1176
  "breadcrumb-item",
1149
1177
  B
1150
- ), o = s(null);
1178
+ ), o = l(null);
1151
1179
  return { componentName: i, element: o };
1152
1180
  },
1153
1181
  render() {
1154
- return l ? n(
1182
+ return s ? a(
1155
1183
  this.componentName,
1156
1184
  {
1157
1185
  ref: "element",
@@ -1177,8 +1205,8 @@ const Oe = r({
1177
1205
  input: (e) => this.$emit("input", e)
1178
1206
  }
1179
1207
  },
1180
- []
1181
- ) : n(
1208
+ [this.$slots.default]
1209
+ ) : a(
1182
1210
  this.componentName,
1183
1211
  {
1184
1212
  ref: "element",
@@ -1200,10 +1228,13 @@ const Oe = r({
1200
1228
  onKeyup: (e) => this.$emit("keyup", e),
1201
1229
  onInput: (e) => this.$emit("input", e)
1202
1230
  },
1203
- []
1231
+ [
1232
+ // @ts-ignore
1233
+ this.$slots.default && this.$slots.default()
1234
+ ]
1204
1235
  );
1205
1236
  }
1206
- }), He = r({
1237
+ }), We = r({
1207
1238
  name: "VButton",
1208
1239
  props: {
1209
1240
  /**
@@ -1366,11 +1397,11 @@ const Oe = r({
1366
1397
  }
1367
1398
  },
1368
1399
  setup(e, t) {
1369
- const i = d("button", T), o = s(null);
1400
+ const i = d("button", T), o = l(null);
1370
1401
  return { componentName: i, element: o };
1371
1402
  },
1372
1403
  render() {
1373
- return l ? n(
1404
+ return s ? a(
1374
1405
  this.componentName,
1375
1406
  {
1376
1407
  ref: "element",
@@ -1410,8 +1441,12 @@ const Oe = r({
1410
1441
  input: (e) => this.$emit("input", e)
1411
1442
  }
1412
1443
  },
1413
- []
1414
- ) : n(
1444
+ [
1445
+ this.$slots.default,
1446
+ // @slot icon Add an icon to the component.
1447
+ n("icon", this.$slots.icon)
1448
+ ]
1449
+ ) : a(
1415
1450
  this.componentName,
1416
1451
  {
1417
1452
  ref: "element",
@@ -1447,10 +1482,15 @@ const Oe = r({
1447
1482
  onKeyup: (e) => this.$emit("keyup", e),
1448
1483
  onInput: (e) => this.$emit("input", e)
1449
1484
  },
1450
- []
1485
+ [
1486
+ // @ts-ignore
1487
+ this.$slots.default && this.$slots.default(),
1488
+ // @slot icon Add an icon to the component.
1489
+ n("icon", this.$slots.icon)
1490
+ ]
1451
1491
  );
1452
1492
  }
1453
- }), je = r({
1493
+ }), He = r({
1454
1494
  name: "VCalendar",
1455
1495
  props: {
1456
1496
  /**
@@ -1536,11 +1576,11 @@ const Oe = r({
1536
1576
  }
1537
1577
  },
1538
1578
  setup(e, t) {
1539
- const i = d("calendar", N), o = s(null);
1579
+ const i = d("calendar", N), o = l(null);
1540
1580
  return { componentName: i, element: o };
1541
1581
  },
1542
1582
  render() {
1543
- return l ? n(
1583
+ return s ? a(
1544
1584
  this.componentName,
1545
1585
  {
1546
1586
  ref: "element",
@@ -1566,21 +1606,21 @@ const Oe = r({
1566
1606
  [
1567
1607
  this.$slots.default,
1568
1608
  // @slot day-0 Assign elements to corresponding day column using this slot.
1569
- a("day-0", this.$slots["day-0"]),
1609
+ n("day-0", this.$slots["day-0"]),
1570
1610
  // @slot day-1 Assign elements to corresponding day column using this slot.
1571
- a("day-1", this.$slots["day-1"]),
1611
+ n("day-1", this.$slots["day-1"]),
1572
1612
  // @slot day-2 Assign elements to corresponding day column using this slot.
1573
- a("day-2", this.$slots["day-2"]),
1613
+ n("day-2", this.$slots["day-2"]),
1574
1614
  // @slot day-3 Assign elements to corresponding day column using this slot.
1575
- a("day-3", this.$slots["day-3"]),
1615
+ n("day-3", this.$slots["day-3"]),
1576
1616
  // @slot day-4 Assign elements to corresponding day column using this slot.
1577
- a("day-4", this.$slots["day-4"]),
1617
+ n("day-4", this.$slots["day-4"]),
1578
1618
  // @slot day-5 Assign elements to corresponding day column using this slot.
1579
- a("day-5", this.$slots["day-5"]),
1619
+ n("day-5", this.$slots["day-5"]),
1580
1620
  // @slot day-6 Assign elements to corresponding day column using this slot.
1581
- a("day-6", this.$slots["day-6"])
1621
+ n("day-6", this.$slots["day-6"])
1582
1622
  ]
1583
- ) : n(
1623
+ ) : a(
1584
1624
  this.componentName,
1585
1625
  {
1586
1626
  ref: "element",
@@ -1601,23 +1641,23 @@ const Oe = r({
1601
1641
  // @ts-ignore
1602
1642
  this.$slots.default && this.$slots.default(),
1603
1643
  // @slot day-0 Assign elements to corresponding day column using this slot.
1604
- a("day-0", this.$slots["day-0"]),
1644
+ n("day-0", this.$slots["day-0"]),
1605
1645
  // @slot day-1 Assign elements to corresponding day column using this slot.
1606
- a("day-1", this.$slots["day-1"]),
1646
+ n("day-1", this.$slots["day-1"]),
1607
1647
  // @slot day-2 Assign elements to corresponding day column using this slot.
1608
- a("day-2", this.$slots["day-2"]),
1648
+ n("day-2", this.$slots["day-2"]),
1609
1649
  // @slot day-3 Assign elements to corresponding day column using this slot.
1610
- a("day-3", this.$slots["day-3"]),
1650
+ n("day-3", this.$slots["day-3"]),
1611
1651
  // @slot day-4 Assign elements to corresponding day column using this slot.
1612
- a("day-4", this.$slots["day-4"]),
1652
+ n("day-4", this.$slots["day-4"]),
1613
1653
  // @slot day-5 Assign elements to corresponding day column using this slot.
1614
- a("day-5", this.$slots["day-5"]),
1654
+ n("day-5", this.$slots["day-5"]),
1615
1655
  // @slot day-6 Assign elements to corresponding day column using this slot.
1616
- a("day-6", this.$slots["day-6"])
1656
+ n("day-6", this.$slots["day-6"])
1617
1657
  ]
1618
1658
  );
1619
1659
  }
1620
- }), We = r({
1660
+ }), je = r({
1621
1661
  name: "VCalendarEvent",
1622
1662
  props: {
1623
1663
  /**
@@ -1699,11 +1739,11 @@ const Oe = r({
1699
1739
  const i = d(
1700
1740
  "calendar-event",
1701
1741
  z
1702
- ), o = s(null);
1742
+ ), o = l(null);
1703
1743
  return { componentName: i, element: o };
1704
1744
  },
1705
1745
  render() {
1706
- return l ? n(
1746
+ return s ? a(
1707
1747
  this.componentName,
1708
1748
  {
1709
1749
  ref: "element",
@@ -1727,8 +1767,8 @@ const Oe = r({
1727
1767
  input: (e) => this.$emit("input", e)
1728
1768
  }
1729
1769
  },
1730
- []
1731
- ) : n(
1770
+ [this.$slots.default]
1771
+ ) : a(
1732
1772
  this.componentName,
1733
1773
  {
1734
1774
  ref: "element",
@@ -1748,7 +1788,10 @@ const Oe = r({
1748
1788
  onKeyup: (e) => this.$emit("keyup", e),
1749
1789
  onInput: (e) => this.$emit("input", e)
1750
1790
  },
1751
- []
1791
+ [
1792
+ // @ts-ignore
1793
+ this.$slots.default && this.$slots.default()
1794
+ ]
1752
1795
  );
1753
1796
  }
1754
1797
  }), Je = r({
@@ -1830,11 +1873,11 @@ const Oe = r({
1830
1873
  ],
1831
1874
  methods: {},
1832
1875
  setup(e, t) {
1833
- const i = d("card", M), o = s(null);
1876
+ const i = d("card", M), o = l(null);
1834
1877
  return { componentName: i, element: o };
1835
1878
  },
1836
1879
  render() {
1837
- return l ? n(
1880
+ return s ? a(
1838
1881
  this.componentName,
1839
1882
  {
1840
1883
  ref: "element",
@@ -1858,18 +1901,19 @@ const Oe = r({
1858
1901
  }
1859
1902
  },
1860
1903
  [
1904
+ this.$slots.default,
1861
1905
  // @slot graphic The graphic slot overrides the icon property.
1862
- a("graphic", this.$slots.graphic),
1906
+ n("graphic", this.$slots.graphic),
1863
1907
  // @slot media The media slot is mainly for images or video content above the card header.
1864
- a("media", this.$slots.media),
1908
+ n("media", this.$slots.media),
1865
1909
  // @slot meta The meta slot is for action content in the card header.
1866
- a("meta", this.$slots.meta),
1910
+ n("meta", this.$slots.meta),
1867
1911
  // @slot footer The footer slot is for content in the card footer.
1868
- a("footer", this.$slots.footer),
1912
+ n("footer", this.$slots.footer),
1869
1913
  // @slot main Assign nodes to main slot to fully override a card's predefined flow and style with your own.
1870
- a("main", this.$slots.main)
1914
+ n("main", this.$slots.main)
1871
1915
  ]
1872
- ) : n(
1916
+ ) : a(
1873
1917
  this.componentName,
1874
1918
  {
1875
1919
  ref: "element",
@@ -1889,22 +1933,24 @@ const Oe = r({
1889
1933
  onInput: (e) => this.$emit("input", e)
1890
1934
  },
1891
1935
  [
1936
+ // @ts-ignore
1937
+ this.$slots.default && this.$slots.default(),
1892
1938
  // @slot graphic The graphic slot overrides the icon property.
1893
- a("graphic", this.$slots.graphic),
1939
+ n("graphic", this.$slots.graphic),
1894
1940
  // @slot media The media slot is mainly for images or video content above the card header.
1895
- a("media", this.$slots.media),
1941
+ n("media", this.$slots.media),
1896
1942
  // @slot meta The meta slot is for action content in the card header.
1897
- a("meta", this.$slots.meta),
1943
+ n("meta", this.$slots.meta),
1898
1944
  // @slot footer The footer slot is for content in the card footer.
1899
- a("footer", this.$slots.footer),
1945
+ n("footer", this.$slots.footer),
1900
1946
  // @slot main Assign nodes to main slot to fully override a card's predefined flow and style with your own.
1901
- a("main", this.$slots.main)
1947
+ n("main", this.$slots.main)
1902
1948
  ]
1903
1949
  );
1904
1950
  }
1905
1951
  }), _e = r({
1906
1952
  name: "VCheckbox",
1907
- model: l ? {
1953
+ model: s ? {
1908
1954
  prop: "modelValue",
1909
1955
  event: "update:modelValue"
1910
1956
  } : void 0,
@@ -2027,11 +2073,11 @@ const Oe = r({
2027
2073
  ],
2028
2074
  methods: {},
2029
2075
  setup(e, t) {
2030
- const i = d("checkbox", F), o = s(null);
2076
+ const i = d("checkbox", F), o = l(null);
2031
2077
  return { componentName: i, element: o };
2032
2078
  },
2033
2079
  render() {
2034
- return l ? n(
2080
+ return s ? a(
2035
2081
  this.componentName,
2036
2082
  {
2037
2083
  ref: "element",
@@ -2069,8 +2115,8 @@ const Oe = r({
2069
2115
  input: (e) => this.$emit("input", e)
2070
2116
  }
2071
2117
  },
2072
- []
2073
- ) : n(
2118
+ [this.$slots.default]
2119
+ ) : a(
2074
2120
  this.componentName,
2075
2121
  {
2076
2122
  ref: "element",
@@ -2104,12 +2150,15 @@ const Oe = r({
2104
2150
  },
2105
2151
  onInput: (e) => this.$emit("input", e)
2106
2152
  },
2107
- []
2153
+ [
2154
+ // @ts-ignore
2155
+ this.$slots.default && this.$slots.default()
2156
+ ]
2108
2157
  );
2109
2158
  }
2110
2159
  }), Xe = r({
2111
2160
  name: "VCombobox",
2112
- model: l ? {
2161
+ model: s ? {
2113
2162
  prop: "modelValue",
2114
2163
  event: "update:modelValue"
2115
2164
  } : void 0,
@@ -2267,11 +2316,11 @@ const Oe = r({
2267
2316
  }
2268
2317
  },
2269
2318
  setup(e, t) {
2270
- const i = d("combobox", K), o = s(null);
2319
+ const i = d("combobox", K), o = l(null);
2271
2320
  return { componentName: i, element: o };
2272
2321
  },
2273
2322
  render() {
2274
- return l ? n(
2323
+ return s ? a(
2275
2324
  this.componentName,
2276
2325
  {
2277
2326
  ref: "element",
@@ -2307,7 +2356,7 @@ const Oe = r({
2307
2356
  }
2308
2357
  },
2309
2358
  [this.$slots.default]
2310
- ) : n(
2359
+ ) : a(
2311
2360
  this.componentName,
2312
2361
  {
2313
2362
  ref: "element",
@@ -2429,11 +2478,11 @@ const Oe = r({
2429
2478
  }
2430
2479
  },
2431
2480
  setup(e, t) {
2432
- const i = d("data-grid", v), o = s(null);
2481
+ const i = d("data-grid", v), o = l(null);
2433
2482
  return { componentName: i, element: o };
2434
2483
  },
2435
2484
  render() {
2436
- return l ? n(
2485
+ return s ? a(
2437
2486
  this.componentName,
2438
2487
  {
2439
2488
  ref: "element",
@@ -2459,7 +2508,7 @@ const Oe = r({
2459
2508
  }
2460
2509
  },
2461
2510
  [this.$slots.default]
2462
- ) : n(
2511
+ ) : a(
2463
2512
  this.componentName,
2464
2513
  {
2465
2514
  ref: "element",
@@ -2570,11 +2619,11 @@ const Oe = r({
2570
2619
  }
2571
2620
  },
2572
2621
  setup(e, t) {
2573
- const i = d("data-grid-row", v), o = s(null);
2622
+ const i = d("data-grid-row", v), o = l(null);
2574
2623
  return { componentName: i, element: o };
2575
2624
  },
2576
2625
  render() {
2577
- return l ? n(
2626
+ return s ? a(
2578
2627
  this.componentName,
2579
2628
  {
2580
2629
  ref: "element",
@@ -2597,7 +2646,7 @@ const Oe = r({
2597
2646
  }
2598
2647
  },
2599
2648
  [this.$slots.default]
2600
- ) : n(
2649
+ ) : a(
2601
2650
  this.componentName,
2602
2651
  {
2603
2652
  ref: "element",
@@ -2726,11 +2775,11 @@ const Oe = r({
2726
2775
  }
2727
2776
  },
2728
2777
  setup(e, t) {
2729
- const i = d("data-grid-cell", v), o = s(null);
2778
+ const i = d("data-grid-cell", v), o = l(null);
2730
2779
  return { componentName: i, element: o };
2731
2780
  },
2732
2781
  render() {
2733
- return l ? n(
2782
+ return s ? a(
2734
2783
  this.componentName,
2735
2784
  {
2736
2785
  ref: "element",
@@ -2756,7 +2805,7 @@ const Oe = r({
2756
2805
  }
2757
2806
  },
2758
2807
  [this.$slots.default]
2759
- ) : n(
2808
+ ) : a(
2760
2809
  this.componentName,
2761
2810
  {
2762
2811
  ref: "element",
@@ -2785,7 +2834,7 @@ const Oe = r({
2785
2834
  }
2786
2835
  }), Ie = r({
2787
2836
  name: "VDatePicker",
2788
- model: l ? {
2837
+ model: s ? {
2789
2838
  prop: "modelValue",
2790
2839
  event: "update:modelValue"
2791
2840
  } : void 0,
@@ -2869,6 +2918,11 @@ const Oe = r({
2869
2918
  * @type {Event}
2870
2919
  */
2871
2920
  "input",
2921
+ /**
2922
+ * Event emitted when the clear value changes
2923
+ * @type {unknown}
2924
+ */
2925
+ "clear-click",
2872
2926
  /**
2873
2927
  * Fires when the value of an element has been changed.
2874
2928
  * @type {string}
@@ -2877,11 +2931,11 @@ const Oe = r({
2877
2931
  ],
2878
2932
  methods: {},
2879
2933
  setup(e, t) {
2880
- const i = d("date-picker", D), o = s(null);
2934
+ const i = d("date-picker", D), o = l(null);
2881
2935
  return { componentName: i, element: o };
2882
2936
  },
2883
2937
  render() {
2884
- return l ? n(
2938
+ return s ? a(
2885
2939
  this.componentName,
2886
2940
  {
2887
2941
  ref: "element",
@@ -2910,11 +2964,12 @@ const Oe = r({
2910
2964
  "update:modelValue",
2911
2965
  e.target.value
2912
2966
  ), this.$emit("input", e);
2913
- }
2967
+ },
2968
+ "clear-click": (e) => this.$emit("clear-click", e)
2914
2969
  }
2915
2970
  },
2916
- []
2917
- ) : n(
2971
+ [this.$slots.default]
2972
+ ) : a(
2918
2973
  this.componentName,
2919
2974
  {
2920
2975
  ref: "element",
@@ -2940,9 +2995,13 @@ const Oe = r({
2940
2995
  "update:modelValue",
2941
2996
  e.target.value
2942
2997
  ), this.$emit("input", e);
2943
- }
2998
+ },
2999
+ onClearClick: (e) => this.$emit("clear-click", e)
2944
3000
  },
2945
- []
3001
+ [
3002
+ // @ts-ignore
3003
+ this.$slots.default && this.$slots.default()
3004
+ ]
2946
3005
  );
2947
3006
  }
2948
3007
  }), ei = r({
@@ -3053,6 +3112,11 @@ const Oe = r({
3053
3112
  * @type {unknown}
3054
3113
  */
3055
3114
  "input:end",
3115
+ /**
3116
+ * Event emitted when the clear value changes
3117
+ * @type {unknown}
3118
+ */
3119
+ "clear-click",
3056
3120
  /**
3057
3121
  * Event emitted when the start value changes
3058
3122
  * @type {string}
@@ -3069,11 +3133,11 @@ const Oe = r({
3069
3133
  const i = d(
3070
3134
  "date-range-picker",
3071
3135
  A
3072
- ), o = s(null);
3136
+ ), o = l(null);
3073
3137
  return { componentName: i, element: o };
3074
3138
  },
3075
3139
  render() {
3076
- return l ? n(
3140
+ return s ? a(
3077
3141
  this.componentName,
3078
3142
  {
3079
3143
  ref: "element",
@@ -3105,11 +3169,12 @@ const Oe = r({
3105
3169
  },
3106
3170
  "input:end": (e) => {
3107
3171
  this.$emit("update:end", e.target.end), this.$emit("input:end", e);
3108
- }
3172
+ },
3173
+ "clear-click": (e) => this.$emit("clear-click", e)
3109
3174
  }
3110
3175
  },
3111
- []
3112
- ) : n(
3176
+ [this.$slots.default]
3177
+ ) : a(
3113
3178
  this.componentName,
3114
3179
  {
3115
3180
  ref: "element",
@@ -3138,9 +3203,13 @@ const Oe = r({
3138
3203
  },
3139
3204
  "onInput:end": (e) => {
3140
3205
  this.$emit("update:end", e.target.end), this.$emit("input:end", e);
3141
- }
3206
+ },
3207
+ onClearClick: (e) => this.$emit("clear-click", e)
3142
3208
  },
3143
- []
3209
+ [
3210
+ // @ts-ignore
3211
+ this.$slots.default && this.$slots.default()
3212
+ ]
3144
3213
  );
3145
3214
  }
3146
3215
  }), ii = r({
@@ -3228,11 +3297,11 @@ const Oe = r({
3228
3297
  }
3229
3298
  },
3230
3299
  setup(e, t) {
3231
- const i = d("dialog", q), o = s(null);
3300
+ const i = d("dialog", q), o = l(null);
3232
3301
  return { componentName: i, element: o };
3233
3302
  },
3234
3303
  render() {
3235
- return l ? n(
3304
+ return s ? a(
3236
3305
  this.componentName,
3237
3306
  {
3238
3307
  ref: "element",
@@ -3260,18 +3329,19 @@ const Oe = r({
3260
3329
  }
3261
3330
  },
3262
3331
  [
3332
+ this.$slots.default,
3263
3333
  // @slot graphic Use the graphic slot in order to replace the icon.
3264
- a("graphic", this.$slots.graphic),
3334
+ n("graphic", this.$slots.graphic),
3265
3335
  // @slot body Use the body slot in order to add custom HTML to the dialog.
3266
- a("body", this.$slots.body),
3336
+ n("body", this.$slots.body),
3267
3337
  // @slot footer Use the footer slot in order to add action buttons to the bottom of the dialog.
3268
- a("footer", this.$slots.footer),
3338
+ n("footer", this.$slots.footer),
3269
3339
  // @slot main Assign nodes to the main slot to fully override a dialog’s predefined flow and style with your own.
3270
- a("main", this.$slots.main),
3340
+ n("main", this.$slots.main),
3271
3341
  // @slot action-items Use the action-items slot in order to add action buttons to the bottom of the dialog.
3272
- a("action-items", this.$slots["action-items"])
3342
+ n("action-items", this.$slots["action-items"])
3273
3343
  ]
3274
- ) : n(
3344
+ ) : a(
3275
3345
  this.componentName,
3276
3346
  {
3277
3347
  ref: "element",
@@ -3295,16 +3365,18 @@ const Oe = r({
3295
3365
  onClose: (e) => this.$emit("close", e)
3296
3366
  },
3297
3367
  [
3368
+ // @ts-ignore
3369
+ this.$slots.default && this.$slots.default(),
3298
3370
  // @slot graphic Use the graphic slot in order to replace the icon.
3299
- a("graphic", this.$slots.graphic),
3371
+ n("graphic", this.$slots.graphic),
3300
3372
  // @slot body Use the body slot in order to add custom HTML to the dialog.
3301
- a("body", this.$slots.body),
3373
+ n("body", this.$slots.body),
3302
3374
  // @slot footer Use the footer slot in order to add action buttons to the bottom of the dialog.
3303
- a("footer", this.$slots.footer),
3375
+ n("footer", this.$slots.footer),
3304
3376
  // @slot main Assign nodes to the main slot to fully override a dialog’s predefined flow and style with your own.
3305
- a("main", this.$slots.main),
3377
+ n("main", this.$slots.main),
3306
3378
  // @slot action-items Use the action-items slot in order to add action buttons to the bottom of the dialog.
3307
- a("action-items", this.$slots["action-items"])
3379
+ n("action-items", this.$slots["action-items"])
3308
3380
  ]
3309
3381
  );
3310
3382
  }
@@ -3367,11 +3439,11 @@ const Oe = r({
3367
3439
  ],
3368
3440
  methods: {},
3369
3441
  setup(e, t) {
3370
- const i = d("divider", O), o = s(null);
3442
+ const i = d("divider", P), o = l(null);
3371
3443
  return { componentName: i, element: o };
3372
3444
  },
3373
3445
  render() {
3374
- return l ? n(
3446
+ return s ? a(
3375
3447
  this.componentName,
3376
3448
  {
3377
3449
  ref: "element",
@@ -3390,8 +3462,8 @@ const Oe = r({
3390
3462
  input: (e) => this.$emit("input", e)
3391
3463
  }
3392
3464
  },
3393
- []
3394
- ) : n(
3465
+ [this.$slots.default]
3466
+ ) : a(
3395
3467
  this.componentName,
3396
3468
  {
3397
3469
  ref: "element",
@@ -3406,7 +3478,10 @@ const Oe = r({
3406
3478
  onKeyup: (e) => this.$emit("keyup", e),
3407
3479
  onInput: (e) => this.$emit("input", e)
3408
3480
  },
3409
- []
3481
+ [
3482
+ // @ts-ignore
3483
+ this.$slots.default && this.$slots.default()
3484
+ ]
3410
3485
  );
3411
3486
  }
3412
3487
  }), oi = r({
@@ -3463,11 +3538,11 @@ const Oe = r({
3463
3538
  ],
3464
3539
  methods: {},
3465
3540
  setup(e, t) {
3466
- const i = d("empty-state", P), o = s(null);
3541
+ const i = d("empty-state", O), o = l(null);
3467
3542
  return { componentName: i, element: o };
3468
3543
  },
3469
3544
  render() {
3470
- return l ? n(
3545
+ return s ? a(
3471
3546
  this.componentName,
3472
3547
  {
3473
3548
  ref: "element",
@@ -3489,11 +3564,11 @@ const Oe = r({
3489
3564
  [
3490
3565
  this.$slots.default,
3491
3566
  // @slot graphic The graphic slot allows overriding the icon with a custom illustration
3492
- a("graphic", this.$slots.graphic),
3567
+ n("graphic", this.$slots.graphic),
3493
3568
  // @slot action-items Slot to add action items to the empty state
3494
- a("action-items", this.$slots["action-items"])
3569
+ n("action-items", this.$slots["action-items"])
3495
3570
  ]
3496
- ) : n(
3571
+ ) : a(
3497
3572
  this.componentName,
3498
3573
  {
3499
3574
  ref: "element",
@@ -3512,13 +3587,13 @@ const Oe = r({
3512
3587
  // @ts-ignore
3513
3588
  this.$slots.default && this.$slots.default(),
3514
3589
  // @slot graphic The graphic slot allows overriding the icon with a custom illustration
3515
- a("graphic", this.$slots.graphic),
3590
+ n("graphic", this.$slots.graphic),
3516
3591
  // @slot action-items Slot to add action items to the empty state
3517
- a("action-items", this.$slots["action-items"])
3592
+ n("action-items", this.$slots["action-items"])
3518
3593
  ]
3519
3594
  );
3520
3595
  }
3521
- }), ni = r({
3596
+ }), ai = r({
3522
3597
  name: "VFab",
3523
3598
  props: {
3524
3599
  /**
@@ -3661,11 +3736,11 @@ const Oe = r({
3661
3736
  }
3662
3737
  },
3663
3738
  setup(e, t) {
3664
- const i = d("fab", U), o = s(null);
3739
+ const i = d("fab", U), o = l(null);
3665
3740
  return { componentName: i, element: o };
3666
3741
  },
3667
3742
  render() {
3668
- return l ? n(
3743
+ return s ? a(
3669
3744
  this.componentName,
3670
3745
  {
3671
3746
  ref: "element",
@@ -3701,10 +3776,11 @@ const Oe = r({
3701
3776
  }
3702
3777
  },
3703
3778
  [
3779
+ this.$slots.default,
3704
3780
  // @slot icon Slot to add an icon to fab.
3705
- a("icon", this.$slots.icon)
3781
+ n("icon", this.$slots.icon)
3706
3782
  ]
3707
- ) : n(
3783
+ ) : a(
3708
3784
  this.componentName,
3709
3785
  {
3710
3786
  ref: "element",
@@ -3736,12 +3812,14 @@ const Oe = r({
3736
3812
  onInput: (e) => this.$emit("input", e)
3737
3813
  },
3738
3814
  [
3815
+ // @ts-ignore
3816
+ this.$slots.default && this.$slots.default(),
3739
3817
  // @slot icon Slot to add an icon to fab.
3740
- a("icon", this.$slots.icon)
3818
+ n("icon", this.$slots.icon)
3741
3819
  ]
3742
3820
  );
3743
3821
  }
3744
- }), ai = r({
3822
+ }), ni = r({
3745
3823
  name: "VHeader",
3746
3824
  props: {
3747
3825
  /**
@@ -3794,11 +3872,11 @@ const Oe = r({
3794
3872
  ],
3795
3873
  methods: {},
3796
3874
  setup(e, t) {
3797
- const i = d("header", R), o = s(null);
3875
+ const i = d("header", E), o = l(null);
3798
3876
  return { componentName: i, element: o };
3799
3877
  },
3800
3878
  render() {
3801
- return l ? n(
3879
+ return s ? a(
3802
3880
  this.componentName,
3803
3881
  {
3804
3882
  ref: "element",
@@ -3820,11 +3898,11 @@ const Oe = r({
3820
3898
  [
3821
3899
  this.$slots.default,
3822
3900
  // @slot action-items Nodes assigned to action-items slot will be set at the end of the header.
3823
- a("action-items", this.$slots["action-items"]),
3901
+ n("action-items", this.$slots["action-items"]),
3824
3902
  // @slot app-content Content vertically aligned with header.
3825
- a("app-content", this.$slots["app-content"])
3903
+ n("app-content", this.$slots["app-content"])
3826
3904
  ]
3827
- ) : n(
3905
+ ) : a(
3828
3906
  this.componentName,
3829
3907
  {
3830
3908
  ref: "element",
@@ -3843,13 +3921,13 @@ const Oe = r({
3843
3921
  // @ts-ignore
3844
3922
  this.$slots.default && this.$slots.default(),
3845
3923
  // @slot action-items Nodes assigned to action-items slot will be set at the end of the header.
3846
- a("action-items", this.$slots["action-items"]),
3924
+ n("action-items", this.$slots["action-items"]),
3847
3925
  // @slot app-content Content vertically aligned with header.
3848
- a("app-content", this.$slots["app-content"])
3926
+ n("app-content", this.$slots["app-content"])
3849
3927
  ]
3850
3928
  );
3851
3929
  }
3852
- }), li = r({
3930
+ }), si = r({
3853
3931
  name: "VIcon",
3854
3932
  props: {
3855
3933
  /**
@@ -3915,11 +3993,11 @@ const Oe = r({
3915
3993
  }
3916
3994
  },
3917
3995
  setup(e, t) {
3918
- const i = d("icon", E), o = s(null);
3996
+ const i = d("icon", G), o = l(null);
3919
3997
  return { componentName: i, element: o };
3920
3998
  },
3921
3999
  render() {
3922
- return l ? n(
4000
+ return s ? a(
3923
4001
  this.componentName,
3924
4002
  {
3925
4003
  ref: "element",
@@ -3940,7 +4018,7 @@ const Oe = r({
3940
4018
  }
3941
4019
  },
3942
4020
  [this.$slots.default]
3943
- ) : n(
4021
+ ) : a(
3944
4022
  this.componentName,
3945
4023
  {
3946
4024
  ref: "element",
@@ -3962,7 +4040,7 @@ const Oe = r({
3962
4040
  ]
3963
4041
  );
3964
4042
  }
3965
- }), si = r({
4043
+ }), li = r({
3966
4044
  name: "VLayout",
3967
4045
  props: {
3968
4046
  /**
@@ -4042,11 +4120,11 @@ const Oe = r({
4042
4120
  ],
4043
4121
  methods: {},
4044
4122
  setup(e, t) {
4045
- const i = d("layout", G), o = s(null);
4123
+ const i = d("layout", R), o = l(null);
4046
4124
  return { componentName: i, element: o };
4047
4125
  },
4048
4126
  render() {
4049
- return l ? n(
4127
+ return s ? a(
4050
4128
  this.componentName,
4051
4129
  {
4052
4130
  ref: "element",
@@ -4069,7 +4147,7 @@ const Oe = r({
4069
4147
  }
4070
4148
  },
4071
4149
  [this.$slots.default]
4072
- ) : n(
4150
+ ) : a(
4073
4151
  this.componentName,
4074
4152
  {
4075
4153
  ref: "element",
@@ -4195,11 +4273,11 @@ const Oe = r({
4195
4273
  }
4196
4274
  },
4197
4275
  setup(e, t) {
4198
- const i = d("menu", H), o = s(null);
4276
+ const i = d("menu", W), o = l(null);
4199
4277
  return { componentName: i, element: o };
4200
4278
  },
4201
4279
  render() {
4202
- return l ? n(
4280
+ return s ? a(
4203
4281
  this.componentName,
4204
4282
  {
4205
4283
  ref: "element",
@@ -4228,11 +4306,11 @@ const Oe = r({
4228
4306
  [
4229
4307
  this.$slots.default,
4230
4308
  // @slot header Used to add additional content to the top of the menu.
4231
- a("header", this.$slots.header),
4309
+ n("header", this.$slots.header),
4232
4310
  // @slot action-items Used to add action items to the bottom of the menu.
4233
- a("action-items", this.$slots["action-items"])
4311
+ n("action-items", this.$slots["action-items"])
4234
4312
  ]
4235
- ) : n(
4313
+ ) : a(
4236
4314
  this.componentName,
4237
4315
  {
4238
4316
  ref: "element",
@@ -4256,15 +4334,15 @@ const Oe = r({
4256
4334
  // @ts-ignore
4257
4335
  this.$slots.default && this.$slots.default(),
4258
4336
  // @slot header Used to add additional content to the top of the menu.
4259
- a("header", this.$slots.header),
4337
+ n("header", this.$slots.header),
4260
4338
  // @slot action-items Used to add action items to the bottom of the menu.
4261
- a("action-items", this.$slots["action-items"])
4339
+ n("action-items", this.$slots["action-items"])
4262
4340
  ]
4263
4341
  );
4264
4342
  }
4265
4343
  }), di = r({
4266
4344
  name: "VMenuItem",
4267
- model: l ? {
4345
+ model: s ? {
4268
4346
  prop: "modelValue",
4269
4347
  event: "update:modelValue"
4270
4348
  } : void 0,
@@ -4369,11 +4447,11 @@ const Oe = r({
4369
4447
  ],
4370
4448
  methods: {},
4371
4449
  setup(e, t) {
4372
- const i = d("menu-item", j), o = s(null);
4450
+ const i = d("menu-item", H), o = l(null);
4373
4451
  return { componentName: i, element: o };
4374
4452
  },
4375
4453
  render() {
4376
- return l ? n(
4454
+ return s ? a(
4377
4455
  this.componentName,
4378
4456
  {
4379
4457
  ref: "element",
@@ -4407,12 +4485,15 @@ const Oe = r({
4407
4485
  }
4408
4486
  },
4409
4487
  [
4488
+ this.$slots.default,
4410
4489
  // @slot meta Assign nodes to the `meta` slot to set a badge or an additional icon.
4411
- a("meta", this.$slots.meta),
4490
+ n("meta", this.$slots.meta),
4491
+ // @slot trailing-meta Assign nodes to the `meta` slot to set a badge or an additional icon.
4492
+ n("trailing-meta", this.$slots["trailing-meta"]),
4412
4493
  // @slot submenu Assign a Menu to the `submenu` slot to add a submenu.
4413
- a("submenu", this.$slots.submenu)
4494
+ n("submenu", this.$slots.submenu)
4414
4495
  ]
4415
- ) : n(
4496
+ ) : a(
4416
4497
  this.componentName,
4417
4498
  {
4418
4499
  ref: "element",
@@ -4442,10 +4523,14 @@ const Oe = r({
4442
4523
  }
4443
4524
  },
4444
4525
  [
4526
+ // @ts-ignore
4527
+ this.$slots.default && this.$slots.default(),
4445
4528
  // @slot meta Assign nodes to the `meta` slot to set a badge or an additional icon.
4446
- a("meta", this.$slots.meta),
4529
+ n("meta", this.$slots.meta),
4530
+ // @slot trailing-meta Assign nodes to the `meta` slot to set a badge or an additional icon.
4531
+ n("trailing-meta", this.$slots["trailing-meta"]),
4447
4532
  // @slot submenu Assign a Menu to the `submenu` slot to add a submenu.
4448
- a("submenu", this.$slots.submenu)
4533
+ n("submenu", this.$slots.submenu)
4449
4534
  ]
4450
4535
  );
4451
4536
  }
@@ -4494,11 +4579,11 @@ const Oe = r({
4494
4579
  ],
4495
4580
  methods: {},
4496
4581
  setup(e, t) {
4497
- const i = d("nav", W), o = s(null);
4582
+ const i = d("nav", j), o = l(null);
4498
4583
  return { componentName: i, element: o };
4499
4584
  },
4500
4585
  render() {
4501
- return l ? n(
4586
+ return s ? a(
4502
4587
  this.componentName,
4503
4588
  {
4504
4589
  ref: "element",
@@ -4516,7 +4601,7 @@ const Oe = r({
4516
4601
  }
4517
4602
  },
4518
4603
  [this.$slots.default]
4519
- ) : n(
4604
+ ) : a(
4520
4605
  this.componentName,
4521
4606
  {
4522
4607
  ref: "element",
@@ -4592,11 +4677,11 @@ const Oe = r({
4592
4677
  const i = d(
4593
4678
  "nav-disclosure",
4594
4679
  J
4595
- ), o = s(null);
4680
+ ), o = l(null);
4596
4681
  return { componentName: i, element: o };
4597
4682
  },
4598
4683
  render() {
4599
- return l ? n(
4684
+ return s ? a(
4600
4685
  this.componentName,
4601
4686
  {
4602
4687
  ref: "element",
@@ -4620,9 +4705,11 @@ const Oe = r({
4620
4705
  [
4621
4706
  this.$slots.default,
4622
4707
  // @slot meta A slot to add additional content to the nav disclosure.
4623
- a("meta", this.$slots.meta)
4708
+ n("meta", this.$slots.meta),
4709
+ // @slot icon Add an icon to the component.
4710
+ n("icon", this.$slots.icon)
4624
4711
  ]
4625
- ) : n(
4712
+ ) : a(
4626
4713
  this.componentName,
4627
4714
  {
4628
4715
  ref: "element",
@@ -4643,7 +4730,9 @@ const Oe = r({
4643
4730
  // @ts-ignore
4644
4731
  this.$slots.default && this.$slots.default(),
4645
4732
  // @slot meta A slot to add additional content to the nav disclosure.
4646
- a("meta", this.$slots.meta)
4733
+ n("meta", this.$slots.meta),
4734
+ // @slot icon Add an icon to the component.
4735
+ n("icon", this.$slots.icon)
4647
4736
  ]
4648
4737
  );
4649
4738
  }
@@ -4741,11 +4830,11 @@ const Oe = r({
4741
4830
  }
4742
4831
  },
4743
4832
  setup(e, t) {
4744
- const i = d("nav-item", _), o = s(null);
4833
+ const i = d("nav-item", _), o = l(null);
4745
4834
  return { componentName: i, element: o };
4746
4835
  },
4747
4836
  render() {
4748
- return l ? n(
4837
+ return s ? a(
4749
4838
  this.componentName,
4750
4839
  {
4751
4840
  ref: "element",
@@ -4773,10 +4862,13 @@ const Oe = r({
4773
4862
  }
4774
4863
  },
4775
4864
  [
4865
+ this.$slots.default,
4776
4866
  // @slot meta A slot to add additional content to the nav item.
4777
- a("meta", this.$slots.meta)
4867
+ n("meta", this.$slots.meta),
4868
+ // @slot icon Add an icon to the component.
4869
+ n("icon", this.$slots.icon)
4778
4870
  ]
4779
- ) : n(
4871
+ ) : a(
4780
4872
  this.componentName,
4781
4873
  {
4782
4874
  ref: "element",
@@ -4800,8 +4892,12 @@ const Oe = r({
4800
4892
  onInput: (e) => this.$emit("input", e)
4801
4893
  },
4802
4894
  [
4895
+ // @ts-ignore
4896
+ this.$slots.default && this.$slots.default(),
4803
4897
  // @slot meta A slot to add additional content to the nav item.
4804
- a("meta", this.$slots.meta)
4898
+ n("meta", this.$slots.meta),
4899
+ // @slot icon Add an icon to the component.
4900
+ n("icon", this.$slots.icon)
4805
4901
  ]
4806
4902
  );
4807
4903
  }
@@ -4863,11 +4959,11 @@ const Oe = r({
4863
4959
  ],
4864
4960
  methods: {},
4865
4961
  setup(e, t) {
4866
- const i = d("note", X), o = s(null);
4962
+ const i = d("note", X), o = l(null);
4867
4963
  return { componentName: i, element: o };
4868
4964
  },
4869
4965
  render() {
4870
- return l ? n(
4966
+ return s ? a(
4871
4967
  this.componentName,
4872
4968
  {
4873
4969
  ref: "element",
@@ -4887,8 +4983,12 @@ const Oe = r({
4887
4983
  input: (e) => this.$emit("input", e)
4888
4984
  }
4889
4985
  },
4890
- [this.$slots.default]
4891
- ) : n(
4986
+ [
4987
+ this.$slots.default,
4988
+ // @slot icon Add an icon to the component.
4989
+ n("icon", this.$slots.icon)
4990
+ ]
4991
+ ) : a(
4892
4992
  this.componentName,
4893
4993
  {
4894
4994
  ref: "element",
@@ -4906,13 +5006,15 @@ const Oe = r({
4906
5006
  },
4907
5007
  [
4908
5008
  // @ts-ignore
4909
- this.$slots.default && this.$slots.default()
5009
+ this.$slots.default && this.$slots.default(),
5010
+ // @slot icon Add an icon to the component.
5011
+ n("icon", this.$slots.icon)
4910
5012
  ]
4911
5013
  );
4912
5014
  }
4913
5015
  }), vi = r({
4914
5016
  name: "VNumberField",
4915
- model: l ? {
5017
+ model: s ? {
4916
5018
  prop: "modelValue",
4917
5019
  event: "update:modelValue"
4918
5020
  } : void 0,
@@ -5107,11 +5209,11 @@ const Oe = r({
5107
5209
  const i = d(
5108
5210
  "number-field",
5109
5211
  Z
5110
- ), o = s(null);
5212
+ ), o = l(null);
5111
5213
  return { componentName: i, element: o };
5112
5214
  },
5113
5215
  render() {
5114
- return l ? n(
5216
+ return s ? a(
5115
5217
  this.componentName,
5116
5218
  {
5117
5219
  ref: "element",
@@ -5161,8 +5263,8 @@ const Oe = r({
5161
5263
  change: (e) => this.$emit("change", e)
5162
5264
  }
5163
5265
  },
5164
- []
5165
- ) : n(
5266
+ [this.$slots.default]
5267
+ ) : a(
5166
5268
  this.componentName,
5167
5269
  {
5168
5270
  ref: "element",
@@ -5208,7 +5310,10 @@ const Oe = r({
5208
5310
  },
5209
5311
  onChange: (e) => this.$emit("change", e)
5210
5312
  },
5211
- []
5313
+ [
5314
+ // @ts-ignore
5315
+ this.$slots.default && this.$slots.default()
5316
+ ]
5212
5317
  );
5213
5318
  }
5214
5319
  }), mi = r({
@@ -5292,11 +5397,11 @@ const Oe = r({
5292
5397
  }
5293
5398
  },
5294
5399
  setup(e, t) {
5295
- const i = d("option", Q), o = s(null);
5400
+ const i = d("option", Q), o = l(null);
5296
5401
  return { componentName: i, element: o };
5297
5402
  },
5298
5403
  render() {
5299
- return l ? n(
5404
+ return s ? a(
5300
5405
  this.componentName,
5301
5406
  {
5302
5407
  ref: "element",
@@ -5321,10 +5426,11 @@ const Oe = r({
5321
5426
  }
5322
5427
  },
5323
5428
  [
5429
+ this.$slots.default,
5324
5430
  // @slot icon Slot to add an icon to the option.
5325
- a("icon", this.$slots.icon)
5431
+ n("icon", this.$slots.icon)
5326
5432
  ]
5327
- ) : n(
5433
+ ) : a(
5328
5434
  this.componentName,
5329
5435
  {
5330
5436
  ref: "element",
@@ -5345,8 +5451,10 @@ const Oe = r({
5345
5451
  onInput: (e) => this.$emit("input", e)
5346
5452
  },
5347
5453
  [
5454
+ // @ts-ignore
5455
+ this.$slots.default && this.$slots.default(),
5348
5456
  // @slot icon Slot to add an icon to the option.
5349
- a("icon", this.$slots.icon)
5457
+ n("icon", this.$slots.icon)
5350
5458
  ]
5351
5459
  );
5352
5460
  }
@@ -5427,11 +5535,11 @@ const Oe = r({
5427
5535
  }
5428
5536
  },
5429
5537
  setup(e, t) {
5430
- const i = d("pagination", Y), o = s(null);
5538
+ const i = d("pagination", Y), o = l(null);
5431
5539
  return { componentName: i, element: o };
5432
5540
  },
5433
5541
  render() {
5434
- return l ? n(
5542
+ return s ? a(
5435
5543
  this.componentName,
5436
5544
  {
5437
5545
  ref: "element",
@@ -5454,8 +5562,8 @@ const Oe = r({
5454
5562
  "pagination-change": (e) => this.$emit("pagination-change", e)
5455
5563
  }
5456
5564
  },
5457
- []
5458
- ) : n(
5565
+ [this.$slots.default]
5566
+ ) : a(
5459
5567
  this.componentName,
5460
5568
  {
5461
5569
  ref: "element",
@@ -5474,7 +5582,10 @@ const Oe = r({
5474
5582
  onInput: (e) => this.$emit("input", e),
5475
5583
  onPaginationChange: (e) => this.$emit("pagination-change", e)
5476
5584
  },
5477
- []
5585
+ [
5586
+ // @ts-ignore
5587
+ this.$slots.default && this.$slots.default()
5588
+ ]
5478
5589
  );
5479
5590
  }
5480
5591
  }), gi = r({
@@ -5557,11 +5668,11 @@ const Oe = r({
5557
5668
  ],
5558
5669
  methods: {},
5559
5670
  setup(e, t) {
5560
- const i = d("progress", I), o = s(null);
5671
+ const i = d("progress", I), o = l(null);
5561
5672
  return { componentName: i, element: o };
5562
5673
  },
5563
5674
  render() {
5564
- return l ? n(
5675
+ return s ? a(
5565
5676
  this.componentName,
5566
5677
  {
5567
5678
  ref: "element",
@@ -5586,8 +5697,8 @@ const Oe = r({
5586
5697
  input: (e) => this.$emit("input", e)
5587
5698
  }
5588
5699
  },
5589
- []
5590
- ) : n(
5700
+ [this.$slots.default]
5701
+ ) : a(
5591
5702
  this.componentName,
5592
5703
  {
5593
5704
  ref: "element",
@@ -5608,7 +5719,10 @@ const Oe = r({
5608
5719
  onKeyup: (e) => this.$emit("keyup", e),
5609
5720
  onInput: (e) => this.$emit("input", e)
5610
5721
  },
5611
- []
5722
+ [
5723
+ // @ts-ignore
5724
+ this.$slots.default && this.$slots.default()
5725
+ ]
5612
5726
  );
5613
5727
  }
5614
5728
  }), yi = r({
@@ -5684,11 +5798,11 @@ const Oe = r({
5684
5798
  const i = d(
5685
5799
  "progress-ring",
5686
5800
  ee
5687
- ), o = s(null);
5801
+ ), o = l(null);
5688
5802
  return { componentName: i, element: o };
5689
5803
  },
5690
5804
  render() {
5691
- return l ? n(
5805
+ return s ? a(
5692
5806
  this.componentName,
5693
5807
  {
5694
5808
  ref: "element",
@@ -5712,8 +5826,8 @@ const Oe = r({
5712
5826
  input: (e) => this.$emit("input", e)
5713
5827
  }
5714
5828
  },
5715
- []
5716
- ) : n(
5829
+ [this.$slots.default]
5830
+ ) : a(
5717
5831
  this.componentName,
5718
5832
  {
5719
5833
  ref: "element",
@@ -5733,7 +5847,10 @@ const Oe = r({
5733
5847
  onKeyup: (e) => this.$emit("keyup", e),
5734
5848
  onInput: (e) => this.$emit("input", e)
5735
5849
  },
5736
- []
5850
+ [
5851
+ // @ts-ignore
5852
+ this.$slots.default && this.$slots.default()
5853
+ ]
5737
5854
  );
5738
5855
  }
5739
5856
  }), bi = r({
@@ -5839,11 +5956,11 @@ const Oe = r({
5839
5956
  ],
5840
5957
  methods: {},
5841
5958
  setup(e, t) {
5842
- const i = d("radio", ie), o = s(null);
5959
+ const i = d("radio", ie), o = l(null);
5843
5960
  return { componentName: i, element: o };
5844
5961
  },
5845
5962
  render() {
5846
- return l ? n(
5963
+ return s ? a(
5847
5964
  this.componentName,
5848
5965
  {
5849
5966
  ref: "element",
@@ -5872,8 +5989,8 @@ const Oe = r({
5872
5989
  change: (e) => this.$emit("change", e)
5873
5990
  }
5874
5991
  },
5875
- []
5876
- ) : n(
5992
+ [this.$slots.default]
5993
+ ) : a(
5877
5994
  this.componentName,
5878
5995
  {
5879
5996
  ref: "element",
@@ -5898,12 +6015,15 @@ const Oe = r({
5898
6015
  onInput: (e) => this.$emit("input", e),
5899
6016
  onChange: (e) => this.$emit("change", e)
5900
6017
  },
5901
- []
6018
+ [
6019
+ // @ts-ignore
6020
+ this.$slots.default && this.$slots.default()
6021
+ ]
5902
6022
  );
5903
6023
  }
5904
6024
  }), ki = r({
5905
6025
  name: "VRadioGroup",
5906
- model: l ? {
6026
+ model: s ? {
5907
6027
  prop: "modelValue",
5908
6028
  event: "update:modelValue"
5909
6029
  } : void 0,
@@ -5988,11 +6108,11 @@ const Oe = r({
5988
6108
  ],
5989
6109
  methods: {},
5990
6110
  setup(e, t) {
5991
- const i = d("radio-group", te), o = s(null);
6111
+ const i = d("radio-group", te), o = l(null);
5992
6112
  return { componentName: i, element: o };
5993
6113
  },
5994
6114
  render() {
5995
- return l ? n(
6115
+ return s ? a(
5996
6116
  this.componentName,
5997
6117
  {
5998
6118
  ref: "element",
@@ -6022,7 +6142,7 @@ const Oe = r({
6022
6142
  }
6023
6143
  },
6024
6144
  [this.$slots.default]
6025
- ) : n(
6145
+ ) : a(
6026
6146
  this.componentName,
6027
6147
  {
6028
6148
  ref: "element",
@@ -6053,7 +6173,7 @@ const Oe = r({
6053
6173
  ]
6054
6174
  );
6055
6175
  }
6056
- }), Si = r({
6176
+ }), $i = r({
6057
6177
  name: "VSelectableBox",
6058
6178
  props: {
6059
6179
  /**
@@ -6137,11 +6257,11 @@ const Oe = r({
6137
6257
  const i = d(
6138
6258
  "selectable-box",
6139
6259
  oe
6140
- ), o = s(null);
6260
+ ), o = l(null);
6141
6261
  return { componentName: i, element: o };
6142
6262
  },
6143
6263
  render() {
6144
- return l ? n(
6264
+ return s ? a(
6145
6265
  this.componentName,
6146
6266
  {
6147
6267
  ref: "element",
@@ -6167,7 +6287,7 @@ const Oe = r({
6167
6287
  }
6168
6288
  },
6169
6289
  [this.$slots.default]
6170
- ) : n(
6290
+ ) : a(
6171
6291
  this.componentName,
6172
6292
  {
6173
6293
  ref: "element",
@@ -6194,9 +6314,9 @@ const Oe = r({
6194
6314
  ]
6195
6315
  );
6196
6316
  }
6197
- }), $i = r({
6317
+ }), Si = r({
6198
6318
  name: "VSelect",
6199
- model: l ? {
6319
+ model: s ? {
6200
6320
  prop: "modelValue",
6201
6321
  event: "update:modelValue"
6202
6322
  } : void 0,
@@ -6370,11 +6490,11 @@ const Oe = r({
6370
6490
  }
6371
6491
  },
6372
6492
  setup(e, t) {
6373
- const i = d("select", ne), o = s(null);
6493
+ const i = d("select", ae), o = l(null);
6374
6494
  return { componentName: i, element: o };
6375
6495
  },
6376
6496
  render() {
6377
- return l ? n(
6497
+ return s ? a(
6378
6498
  this.componentName,
6379
6499
  {
6380
6500
  ref: "element",
@@ -6418,11 +6538,11 @@ const Oe = r({
6418
6538
  [
6419
6539
  this.$slots.default,
6420
6540
  // @slot icon Slot to add an icon to the select control.
6421
- a("icon", this.$slots.icon),
6541
+ n("icon", this.$slots.icon),
6422
6542
  // @slot meta Slot to add meta content to the select control.
6423
- a("meta", this.$slots.meta)
6543
+ n("meta", this.$slots.meta)
6424
6544
  ]
6425
- ) : n(
6545
+ ) : a(
6426
6546
  this.componentName,
6427
6547
  {
6428
6548
  ref: "element",
@@ -6463,9 +6583,9 @@ const Oe = r({
6463
6583
  // @ts-ignore
6464
6584
  this.$slots.default && this.$slots.default(),
6465
6585
  // @slot icon Slot to add an icon to the select control.
6466
- a("icon", this.$slots.icon),
6586
+ n("icon", this.$slots.icon),
6467
6587
  // @slot meta Slot to add meta content to the select control.
6468
- a("meta", this.$slots.meta)
6588
+ n("meta", this.$slots.meta)
6469
6589
  ]
6470
6590
  );
6471
6591
  }
@@ -6540,11 +6660,11 @@ const Oe = r({
6540
6660
  ],
6541
6661
  methods: {},
6542
6662
  setup(e, t) {
6543
- const i = d("side-drawer", ae), o = s(null);
6663
+ const i = d("side-drawer", ne), o = l(null);
6544
6664
  return { componentName: i, element: o };
6545
6665
  },
6546
6666
  render() {
6547
- return l ? n(
6667
+ return s ? a(
6548
6668
  this.componentName,
6549
6669
  {
6550
6670
  ref: "element",
@@ -6570,9 +6690,9 @@ const Oe = r({
6570
6690
  [
6571
6691
  this.$slots.default,
6572
6692
  // @slot app-content Sets assigned nodes to the main application content, the side drawer is opened next to.
6573
- a("app-content", this.$slots["app-content"])
6693
+ n("app-content", this.$slots["app-content"])
6574
6694
  ]
6575
- ) : n(
6695
+ ) : a(
6576
6696
  this.componentName,
6577
6697
  {
6578
6698
  ref: "element",
@@ -6595,13 +6715,13 @@ const Oe = r({
6595
6715
  // @ts-ignore
6596
6716
  this.$slots.default && this.$slots.default(),
6597
6717
  // @slot app-content Sets assigned nodes to the main application content, the side drawer is opened next to.
6598
- a("app-content", this.$slots["app-content"])
6718
+ n("app-content", this.$slots["app-content"])
6599
6719
  ]
6600
6720
  );
6601
6721
  }
6602
6722
  }), wi = r({
6603
6723
  name: "VSlider",
6604
- model: l ? {
6724
+ model: s ? {
6605
6725
  prop: "modelValue",
6606
6726
  event: "update:modelValue"
6607
6727
  } : void 0,
@@ -6745,11 +6865,11 @@ const Oe = r({
6745
6865
  }
6746
6866
  },
6747
6867
  setup(e, t) {
6748
- const i = d("slider", le), o = s(null);
6868
+ const i = d("slider", se), o = l(null);
6749
6869
  return { componentName: i, element: o };
6750
6870
  },
6751
6871
  render() {
6752
- return l ? n(
6872
+ return s ? a(
6753
6873
  this.componentName,
6754
6874
  {
6755
6875
  ref: "element",
@@ -6787,8 +6907,8 @@ const Oe = r({
6787
6907
  }
6788
6908
  }
6789
6909
  },
6790
- []
6791
- ) : n(
6910
+ [this.$slots.default]
6911
+ ) : a(
6792
6912
  this.componentName,
6793
6913
  {
6794
6914
  ref: "element",
@@ -6822,7 +6942,10 @@ const Oe = r({
6822
6942
  ), this.$emit("change", e);
6823
6943
  }
6824
6944
  },
6825
- []
6945
+ [
6946
+ // @ts-ignore
6947
+ this.$slots.default && this.$slots.default()
6948
+ ]
6826
6949
  );
6827
6950
  }
6828
6951
  }), Ci = r({
@@ -6935,12 +7058,12 @@ const Oe = r({
6935
7058
  setup(e, t) {
6936
7059
  const i = d(
6937
7060
  "split-button",
6938
- se
6939
- ), o = s(null);
7061
+ le
7062
+ ), o = l(null);
6940
7063
  return { componentName: i, element: o };
6941
7064
  },
6942
7065
  render() {
6943
- return l ? n(
7066
+ return s ? a(
6944
7067
  this.componentName,
6945
7068
  {
6946
7069
  ref: "element",
@@ -6970,8 +7093,12 @@ const Oe = r({
6970
7093
  "indicator-click": (e) => this.$emit("indicator-click", e)
6971
7094
  }
6972
7095
  },
6973
- [this.$slots.default]
6974
- ) : n(
7096
+ [
7097
+ this.$slots.default,
7098
+ // @slot icon Add an icon to the component.
7099
+ n("icon", this.$slots.icon)
7100
+ ]
7101
+ ) : a(
6975
7102
  this.componentName,
6976
7103
  {
6977
7104
  ref: "element",
@@ -6999,13 +7126,15 @@ const Oe = r({
6999
7126
  },
7000
7127
  [
7001
7128
  // @ts-ignore
7002
- this.$slots.default && this.$slots.default()
7129
+ this.$slots.default && this.$slots.default(),
7130
+ // @slot icon Add an icon to the component.
7131
+ n("icon", this.$slots.icon)
7003
7132
  ]
7004
7133
  );
7005
7134
  }
7006
7135
  }), Li = r({
7007
7136
  name: "VSwitch",
7008
- model: l ? {
7137
+ model: s ? {
7009
7138
  prop: "modelValue",
7010
7139
  event: "update:modelValue"
7011
7140
  } : void 0,
@@ -7077,11 +7206,11 @@ const Oe = r({
7077
7206
  ],
7078
7207
  methods: {},
7079
7208
  setup(e, t) {
7080
- const i = d("switch", re), o = s(null);
7209
+ const i = d("switch", re), o = l(null);
7081
7210
  return { componentName: i, element: o };
7082
7211
  },
7083
7212
  render() {
7084
- return l ? n(
7213
+ return s ? a(
7085
7214
  this.componentName,
7086
7215
  {
7087
7216
  ref: "element",
@@ -7107,8 +7236,8 @@ const Oe = r({
7107
7236
  }
7108
7237
  }
7109
7238
  },
7110
- []
7111
- ) : n(
7239
+ [this.$slots.default]
7240
+ ) : a(
7112
7241
  this.componentName,
7113
7242
  {
7114
7243
  ref: "element",
@@ -7130,7 +7259,10 @@ const Oe = r({
7130
7259
  ), this.$emit("change", e);
7131
7260
  }
7132
7261
  },
7133
- []
7262
+ [
7263
+ // @ts-ignore
7264
+ this.$slots.default && this.$slots.default()
7265
+ ]
7134
7266
  );
7135
7267
  }
7136
7268
  }), Vi = r({
@@ -7211,11 +7343,11 @@ const Oe = r({
7211
7343
  ],
7212
7344
  methods: {},
7213
7345
  setup(e, t) {
7214
- const i = d("tab", de), o = s(null);
7346
+ const i = d("tab", de), o = l(null);
7215
7347
  return { componentName: i, element: o };
7216
7348
  },
7217
7349
  render() {
7218
- return l ? n(
7350
+ return s ? a(
7219
7351
  this.componentName,
7220
7352
  {
7221
7353
  ref: "element",
@@ -7241,10 +7373,11 @@ const Oe = r({
7241
7373
  }
7242
7374
  },
7243
7375
  [
7376
+ this.$slots.default,
7244
7377
  // @slot icon Slot to add an icon to tab.
7245
- a("icon", this.$slots.icon)
7378
+ n("icon", this.$slots.icon)
7246
7379
  ]
7247
- ) : n(
7380
+ ) : a(
7248
7381
  this.componentName,
7249
7382
  {
7250
7383
  ref: "element",
@@ -7266,8 +7399,10 @@ const Oe = r({
7266
7399
  onInput: (e) => this.$emit("input", e)
7267
7400
  },
7268
7401
  [
7402
+ // @ts-ignore
7403
+ this.$slots.default && this.$slots.default(),
7269
7404
  // @slot icon Slot to add an icon to tab.
7270
- a("icon", this.$slots.icon)
7405
+ n("icon", this.$slots.icon)
7271
7406
  ]
7272
7407
  );
7273
7408
  }
@@ -7309,7 +7444,11 @@ const Oe = r({
7309
7444
  gutters: {
7310
7445
  type: String,
7311
7446
  default: void 0
7312
- }
7447
+ },
7448
+ /**
7449
+ * sets overflow to the tab-panel
7450
+ */
7451
+ scrollablePanel: { type: Boolean, default: void 0 }
7313
7452
  },
7314
7453
  emits: [
7315
7454
  /**
@@ -7382,11 +7521,11 @@ const Oe = r({
7382
7521
  }
7383
7522
  },
7384
7523
  setup(e, t) {
7385
- const i = d("tabs", he), o = s(null);
7524
+ const i = d("tabs", he), o = l(null);
7386
7525
  return { componentName: i, element: o };
7387
7526
  },
7388
7527
  render() {
7389
- return l ? n(
7528
+ return s ? a(
7390
7529
  this.componentName,
7391
7530
  {
7392
7531
  ref: "element",
@@ -7396,7 +7535,8 @@ const Oe = r({
7396
7535
  ...this.activeid !== void 0 ? { activeid: this.activeid } : {},
7397
7536
  ...this.activeindicator !== void 0 ? { activeindicator: this.activeindicator } : {},
7398
7537
  ...this.connotation !== void 0 ? { connotation: this.connotation } : {},
7399
- ...this.gutters !== void 0 ? { gutters: this.gutters } : {}
7538
+ ...this.gutters !== void 0 ? { gutters: this.gutters } : {},
7539
+ ...this.scrollablePanel !== void 0 ? { "scrollable-panel": this.scrollablePanel } : {}
7400
7540
  },
7401
7541
  class: "vvd-component",
7402
7542
  on: {
@@ -7410,7 +7550,7 @@ const Oe = r({
7410
7550
  }
7411
7551
  },
7412
7552
  [this.$slots.default]
7413
- ) : n(
7553
+ ) : a(
7414
7554
  this.componentName,
7415
7555
  {
7416
7556
  ref: "element",
@@ -7421,6 +7561,7 @@ const Oe = r({
7421
7561
  ...this.activeindicator !== void 0 ? { activeindicator: this.activeindicator } : {},
7422
7562
  ...this.connotation !== void 0 ? { connotation: this.connotation } : {},
7423
7563
  ...this.gutters !== void 0 ? { gutters: this.gutters } : {},
7564
+ ...this.scrollablePanel !== void 0 ? { "scrollable-panel": this.scrollablePanel } : {},
7424
7565
  onClick: (e) => this.$emit("click", e),
7425
7566
  onFocus: (e) => this.$emit("focus", e),
7426
7567
  onBlur: (e) => this.$emit("blur", e),
@@ -7480,11 +7621,11 @@ const Oe = r({
7480
7621
  ],
7481
7622
  methods: {},
7482
7623
  setup(e, t) {
7483
- const i = d("tab-panel", ue), o = s(null);
7624
+ const i = d("tab-panel", ue), o = l(null);
7484
7625
  return { componentName: i, element: o };
7485
7626
  },
7486
7627
  render() {
7487
- return l ? n(
7628
+ return s ? a(
7488
7629
  this.componentName,
7489
7630
  {
7490
7631
  ref: "element",
@@ -7502,7 +7643,7 @@ const Oe = r({
7502
7643
  }
7503
7644
  },
7504
7645
  [this.$slots.default]
7505
- ) : n(
7646
+ ) : a(
7506
7647
  this.componentName,
7507
7648
  {
7508
7649
  ref: "element",
@@ -7523,7 +7664,7 @@ const Oe = r({
7523
7664
  }
7524
7665
  }), Ni = r({
7525
7666
  name: "VTextArea",
7526
- model: l ? {
7667
+ model: s ? {
7527
7668
  prop: "modelValue",
7528
7669
  event: "update:modelValue"
7529
7670
  } : void 0,
@@ -7695,11 +7836,11 @@ const Oe = r({
7695
7836
  }
7696
7837
  },
7697
7838
  setup(e, t) {
7698
- const i = d("text-area", ce), o = s(null);
7839
+ const i = d("text-area", ce), o = l(null);
7699
7840
  return { componentName: i, element: o };
7700
7841
  },
7701
7842
  render() {
7702
- return l ? n(
7843
+ return s ? a(
7703
7844
  this.componentName,
7704
7845
  {
7705
7846
  ref: "element",
@@ -7744,8 +7885,8 @@ const Oe = r({
7744
7885
  change: (e) => this.$emit("change", e)
7745
7886
  }
7746
7887
  },
7747
- []
7748
- ) : n(
7888
+ [this.$slots.default]
7889
+ ) : a(
7749
7890
  this.componentName,
7750
7891
  {
7751
7892
  ref: "element",
@@ -7786,12 +7927,15 @@ const Oe = r({
7786
7927
  },
7787
7928
  onChange: (e) => this.$emit("change", e)
7788
7929
  },
7789
- []
7930
+ [
7931
+ // @ts-ignore
7932
+ this.$slots.default && this.$slots.default()
7933
+ ]
7790
7934
  );
7791
7935
  }
7792
7936
  }), zi = r({
7793
7937
  name: "VTextField",
7794
- model: l ? {
7938
+ model: s ? {
7795
7939
  prop: "modelValue",
7796
7940
  event: "update:modelValue"
7797
7941
  } : void 0,
@@ -7966,11 +8110,11 @@ const Oe = r({
7966
8110
  }
7967
8111
  },
7968
8112
  setup(e, t) {
7969
- const i = d("text-field", pe), o = s(null);
8113
+ const i = d("text-field", pe), o = l(null);
7970
8114
  return { componentName: i, element: o };
7971
8115
  },
7972
8116
  render() {
7973
- return l ? n(
8117
+ return s ? a(
7974
8118
  this.componentName,
7975
8119
  {
7976
8120
  ref: "element",
@@ -8018,15 +8162,16 @@ const Oe = r({
8018
8162
  }
8019
8163
  },
8020
8164
  [
8165
+ this.$slots.default,
8021
8166
  // @slot leading-action-items Used to add action items to the start of the text-field.
8022
- a(
8167
+ n(
8023
8168
  "leading-action-items",
8024
8169
  this.$slots["leading-action-items"]
8025
8170
  ),
8026
8171
  // @slot action-items Used to add action items to the end of the text-field.
8027
- a("action-items", this.$slots["action-items"])
8172
+ n("action-items", this.$slots["action-items"])
8028
8173
  ]
8029
- ) : n(
8174
+ ) : a(
8030
8175
  this.componentName,
8031
8176
  {
8032
8177
  ref: "element",
@@ -8070,13 +8215,15 @@ const Oe = r({
8070
8215
  onChange: (e) => this.$emit("change", e)
8071
8216
  },
8072
8217
  [
8218
+ // @ts-ignore
8219
+ this.$slots.default && this.$slots.default(),
8073
8220
  // @slot leading-action-items Used to add action items to the start of the text-field.
8074
- a(
8221
+ n(
8075
8222
  "leading-action-items",
8076
8223
  this.$slots["leading-action-items"]
8077
8224
  ),
8078
8225
  // @slot action-items Used to add action items to the end of the text-field.
8079
- a("action-items", this.$slots["action-items"])
8226
+ n("action-items", this.$slots["action-items"])
8080
8227
  ]
8081
8228
  );
8082
8229
  }
@@ -8156,11 +8303,11 @@ const Oe = r({
8156
8303
  }
8157
8304
  },
8158
8305
  setup(e, t) {
8159
- const i = d("toggletip", ve), o = s(null);
8306
+ const i = d("toggletip", ve), o = l(null);
8160
8307
  return { componentName: i, element: o };
8161
8308
  },
8162
8309
  render() {
8163
- return l ? n(
8310
+ return s ? a(
8164
8311
  this.componentName,
8165
8312
  {
8166
8313
  ref: "element",
@@ -8187,9 +8334,9 @@ const Oe = r({
8187
8334
  [
8188
8335
  this.$slots.default,
8189
8336
  // @slot action-items The content to display in the toggletip action items.
8190
- a("action-items", this.$slots["action-items"])
8337
+ n("action-items", this.$slots["action-items"])
8191
8338
  ]
8192
- ) : n(
8339
+ ) : a(
8193
8340
  this.componentName,
8194
8341
  {
8195
8342
  ref: "element",
@@ -8211,7 +8358,7 @@ const Oe = r({
8211
8358
  // @ts-ignore
8212
8359
  this.$slots.default && this.$slots.default(),
8213
8360
  // @slot action-items The content to display in the toggletip action items.
8214
- a("action-items", this.$slots["action-items"])
8361
+ n("action-items", this.$slots["action-items"])
8215
8362
  ]
8216
8363
  );
8217
8364
  }
@@ -8277,11 +8424,11 @@ const Oe = r({
8277
8424
  ],
8278
8425
  methods: {},
8279
8426
  setup(e, t) {
8280
- const i = d("tooltip", me), o = s(null);
8427
+ const i = d("tooltip", me), o = l(null);
8281
8428
  return { componentName: i, element: o };
8282
8429
  },
8283
8430
  render() {
8284
- return l ? n(
8431
+ return s ? a(
8285
8432
  this.componentName,
8286
8433
  {
8287
8434
  ref: "element",
@@ -8304,8 +8451,8 @@ const Oe = r({
8304
8451
  input: (e) => this.$emit("input", e)
8305
8452
  }
8306
8453
  },
8307
- []
8308
- ) : n(
8454
+ [this.$slots.default]
8455
+ ) : a(
8309
8456
  this.componentName,
8310
8457
  {
8311
8458
  ref: "element",
@@ -8322,7 +8469,10 @@ const Oe = r({
8322
8469
  onKeyup: (e) => this.$emit("keyup", e),
8323
8470
  onInput: (e) => this.$emit("input", e)
8324
8471
  },
8325
- []
8472
+ [
8473
+ // @ts-ignore
8474
+ this.$slots.default && this.$slots.default()
8475
+ ]
8326
8476
  );
8327
8477
  }
8328
8478
  }), Ki = r({
@@ -8401,11 +8551,11 @@ const Oe = r({
8401
8551
  ],
8402
8552
  methods: {},
8403
8553
  setup(e, t) {
8404
- const i = d("tree-item", fe), o = s(null);
8554
+ const i = d("tree-item", fe), o = l(null);
8405
8555
  return { componentName: i, element: o };
8406
8556
  },
8407
8557
  render() {
8408
- return l ? n(
8558
+ return s ? a(
8409
8559
  this.componentName,
8410
8560
  {
8411
8561
  ref: "element",
@@ -8430,10 +8580,13 @@ const Oe = r({
8430
8580
  }
8431
8581
  },
8432
8582
  [
8583
+ this.$slots.default,
8433
8584
  // @slot item To specify a child tree item.
8434
- a("item", this.$slots.item)
8585
+ n("item", this.$slots.item),
8586
+ // @slot icon Add an icon to the component.
8587
+ n("icon", this.$slots.icon)
8435
8588
  ]
8436
- ) : n(
8589
+ ) : a(
8437
8590
  this.componentName,
8438
8591
  {
8439
8592
  ref: "element",
@@ -8454,8 +8607,12 @@ const Oe = r({
8454
8607
  onSelectedChange: (e) => this.$emit("selected-change", e)
8455
8608
  },
8456
8609
  [
8610
+ // @ts-ignore
8611
+ this.$slots.default && this.$slots.default(),
8457
8612
  // @slot item To specify a child tree item.
8458
- a("item", this.$slots.item)
8613
+ n("item", this.$slots.item),
8614
+ // @slot icon Add an icon to the component.
8615
+ n("icon", this.$slots.icon)
8459
8616
  ]
8460
8617
  );
8461
8618
  }
@@ -8512,11 +8669,11 @@ const Oe = r({
8512
8669
  ],
8513
8670
  methods: {},
8514
8671
  setup(e, t) {
8515
- const i = d("tree-view", ge), o = s(null);
8672
+ const i = d("tree-view", ge), o = l(null);
8516
8673
  return { componentName: i, element: o };
8517
8674
  },
8518
8675
  render() {
8519
- return l ? n(
8676
+ return s ? a(
8520
8677
  this.componentName,
8521
8678
  {
8522
8679
  ref: "element",
@@ -8535,7 +8692,7 @@ const Oe = r({
8535
8692
  }
8536
8693
  },
8537
8694
  [this.$slots.default]
8538
- ) : n(
8695
+ ) : a(
8539
8696
  this.componentName,
8540
8697
  {
8541
8698
  ref: "element",
@@ -8656,11 +8813,11 @@ const Oe = r({
8656
8813
  }
8657
8814
  },
8658
8815
  setup(e, t) {
8659
- const i = d("tag", ye), o = s(null);
8816
+ const i = d("tag", ye), o = l(null);
8660
8817
  return { componentName: i, element: o };
8661
8818
  },
8662
8819
  render() {
8663
- return l ? n(
8820
+ return s ? a(
8664
8821
  this.componentName,
8665
8822
  {
8666
8823
  ref: "element",
@@ -8686,8 +8843,12 @@ const Oe = r({
8686
8843
  input: (e) => this.$emit("input", e)
8687
8844
  }
8688
8845
  },
8689
- []
8690
- ) : n(
8846
+ [
8847
+ this.$slots.default,
8848
+ // @slot icon Add an icon to the component.
8849
+ n("icon", this.$slots.icon)
8850
+ ]
8851
+ ) : a(
8691
8852
  this.componentName,
8692
8853
  {
8693
8854
  ref: "element",
@@ -8709,7 +8870,12 @@ const Oe = r({
8709
8870
  onKeyup: (e) => this.$emit("keyup", e),
8710
8871
  onInput: (e) => this.$emit("input", e)
8711
8872
  },
8712
- []
8873
+ [
8874
+ // @ts-ignore
8875
+ this.$slots.default && this.$slots.default(),
8876
+ // @slot icon Add an icon to the component.
8877
+ n("icon", this.$slots.icon)
8878
+ ]
8713
8879
  );
8714
8880
  }
8715
8881
  }), qi = r({
@@ -8758,11 +8924,11 @@ const Oe = r({
8758
8924
  ],
8759
8925
  methods: {},
8760
8926
  setup(e, t) {
8761
- const i = d("tag-group", be), o = s(null);
8927
+ const i = d("tag-group", be), o = l(null);
8762
8928
  return { componentName: i, element: o };
8763
8929
  },
8764
8930
  render() {
8765
- return l ? n(
8931
+ return s ? a(
8766
8932
  this.componentName,
8767
8933
  {
8768
8934
  ref: "element",
@@ -8781,7 +8947,7 @@ const Oe = r({
8781
8947
  }
8782
8948
  },
8783
8949
  [this.$slots.default]
8784
- ) : n(
8950
+ ) : a(
8785
8951
  this.componentName,
8786
8952
  {
8787
8953
  ref: "element",
@@ -8805,19 +8971,19 @@ const Oe = r({
8805
8971
  var xe = /* @__PURE__ */ ((e) => (e["10SecBackwardSolid"] = "10-sec-backward-solid", e["10SecForwardLine"] = "10-sec-forward-line", e["10SecForwardSolid"] = "10-sec-forward-solid", e.accessibilityLine = "accessibility-line", e.accessibilitySolid = "accessibility-solid", e.activeCallLine = "active-call-line", e.activeCallSolid = "active-call-solid", e.addCallLine = "add-call-line", e.addCallSolid = "add-call-solid", e.addGroupLine = "add-group-line", e.addGroupSolid = "add-group-solid", e.addLine = "add-line", e.addSolid = "add-solid", e.addUserLine = "add-user-line", e.addUserSolid = "add-user-solid", e.addressBookLine = "address-book-line", e.addressBookSolid = "address-book-solid", e.ai2Line = "ai-2-line", e.ai2Solid = "ai-2-solid", e.ai3Line = "ai-3-line", e.ai3Solid = "ai-3-solid", e.aiLine = "ai-line", e.aiSolid = "ai-solid", e.alarmLine = "alarm-line", e.alarmSolid = "alarm-solid", e.alignCenterLine = "align-center-line", e.alignCenterSolid = "align-center-solid", e.alignLeftLine = "align-left-line", e.alignLeftSolid = "align-left-solid", e.alignRightLine = "align-right-line", e.alignRightSolid = "align-right-solid", e.ambulanceLine = "ambulance-line", e.ambulanceSolid = "ambulance-solid", e.androidColor = "android-color", e.androidMono = "android-mono", e.angularColor = "angular-color", e.angularMono = "angular-mono", e.appLine = "app-line", e.appPlusLine = "app-plus-line", e.appPlusSolid = "app-plus-solid", e.appSolid = "app-solid", e.appStoreLine = "app-store-line", e.appStoreSolid = "app-store-solid", e.appleColor = "apple-color", e.appleMono = "apple-mono", e.appsLine = "apps-line", e.appsSolid = "apps-solid", e.arrowBoldLeftLine = "arrow-bold-left-line", e.arrowBoldLeftSolid = "arrow-bold-left-solid", e.arrowBoldRightLine = "arrow-bold-right-line", e.arrowBoldRightSolid = "arrow-bold-right-solid", e.arrowDownLine = "arrow-down-line", e.arrowDownSolid = "arrow-down-solid", e.arrowInboundLine = "arrow-inbound-line", e.arrowInboundSolid = "arrow-inbound-solid", e.arrowLeftLine = "arrow-left-line", e.arrowLeftSolid = "arrow-left-solid", e.arrowOutboundLine = "arrow-outbound-line", e.arrowOutboundSolid = "arrow-outbound-solid", e.arrowRightLine = "arrow-right-line", e.arrowRightSolid = "arrow-right-solid", e.arrowUpLine = "arrow-up-line", e.arrowUpSolid = "arrow-up-solid", e.arrowWidthLargeLine = "arrow-width-large-line", e.arrowWidthLargeSolid = "arrow-width-large-solid", e.arrowWidthMediumLine = "arrow-width-medium-line", e.arrowWidthMediumSolid = "arrow-width-medium-solid", e.arrowWidthSmallLine = "arrow-width-small-line", e.arrowWidthSmallSolid = "arrow-width-small-solid", e.assignUserLine = "assign-user-line", e.assignUserSolid = "assign-user-solid", e.asteriskLine = "asterisk-line", e.asteriskSolid = "asterisk-solid", e.atomsLine = "atoms-line", e.atomsSolid = "atoms-solid", e.attachmentLine = "attachment-line", e.attachmentSolid = "attachment-solid", e.audioMaxLine = "audio-max-line", e.audioMaxSolid = "audio-max-solid", e.audioMidLine = "audio-mid-line", e.audioMidSolid = "audio-mid-solid", e.audioMinLine = "audio-min-line", e.audioMinSolid = "audio-min-solid", e.audioMuteLine = "audio-mute-line", e.audioMuteSolid = "audio-mute-solid", e.audioOff2Line = "audio-off-2-line", e.audioOff2Solid = "audio-off-2-solid", e.audioOffLine = "audio-off-line", e.audioOffSolid = "audio-off-solid", e.backLine = "back-line", e.backSolid = "back-solid", e.backspaceLine = "backspace-line", e.backspaceSolid = "backspace-solid", e.backwardLine = "backward-line", e.backwardSolid = "backward-solid", e.badgeLine = "badge-line", e.badgeSolid = "badge-solid", e.binocularsLine = "binoculars-line", e.binocularsSolid = "binoculars-solid", e.blockCallLine = "block-call-line", e.blockCallSolid = "block-call-solid", e.blockLine = "block-line", e.blockSolid = "block-solid", e.bloggerColor = "blogger-color", e.bloggerMono = "blogger-mono", e.blurLine = "blur-line", e.blurOffLine = "blur-off-line", e.blurOffSolid = "blur-off-solid", e.blurSolid = "blur-solid", e.boldLine = "bold-line", e.boldSolid = "bold-solid", e.bookmarkLine = "bookmark-line", e.bookmarkSolid = "bookmark-solid", e.booksLine = "books-line", e.booksSolid = "books-solid", e.botLine = "bot-line", e.botSolid = "bot-solid", e.bottomTabsLine = "bottom-tabs-line", e.bottomTabsSolid = "bottom-tabs-solid", e.bounceLine = "bounce-line", e.bounceSolid = "bounce-solid", e.brainLine = "brain-line", e.brainSolid = "brain-solid", e.bringToFrontLine = "bring-to-front-line", e.bringToFrontSolid = "bring-to-front-solid", e.broadcastLine = "broadcast-line", e.broadcastSolid = "broadcast-solid", e.bulletLine = "bullet-line", e.bulletList2Line = "bullet-list-2-line", e.bulletList2Solid = "bullet-list-2-solid", e.bulletListLine = "bullet-list-line", e.bulletListOffLine = "bullet-list-off-line", e.bulletListOffSolid = "bullet-list-off-solid", e.bulletListSolid = "bullet-list-solid", e.bulletSolid = "bullet-solid", e.bullhornColor = "bullhorn-color", e.bullhornMono = "bullhorn-mono", e.calculatorLine = "calculator-line", e.calculatorSolid = "calculator-solid", e.calendarCheckLine = "calendar-check-line", e.calendarCheckSolid = "calendar-check-solid", e.calendarClockLine = "calendar-clock-line", e.calendarClockSolid = "calendar-clock-solid", e.calendarLine = "calendar-line", e.calendarPlusLine = "calendar-plus-line", e.calendarPlusSolid = "calendar-plus-solid", e.calendarSolid = "calendar-solid", e.callLine = "call-line", e.callSolid = "call-solid", e.callStarLine = "call-star-line", e.callStarSolid = "call-star-solid", e.cameraLine = "camera-line", e.cameraSolid = "camera-solid", e.cameraSwitchLine = "camera-switch-line", e.cameraSwitchSolid = "camera-switch-solid", e.carLine = "car-line", e.carSolid = "car-solid", e.cartFullLine = "cart-full-line", e.cartFullSolid = "cart-full-solid", e.cartLine = "cart-line", e.cartSolid = "cart-solid", e.cellReceptionLine = "cell-reception-line", e.cellReceptionSolid = "cell-reception-solid", e.chainLine = "chain-line", e.chainSolid = "chain-solid", e.charityLine = "charity-line", e.charitySolid = "charity-solid", e.chartLine = "chart-line", e.chartSolid = "chart-solid", e.chat2Line = "chat-2-line", e.chat2Solid = "chat-2-solid", e.chatCallLine = "chat-call-line", e.chatCallSolid = "chat-call-solid", e.chatHideLine = "chat-hide-line", e.chatHideSolid = "chat-hide-solid", e.chatLine = "chat-line", e.chatSolid = "chat-solid", e.checkAllLine = "check-all-line", e.checkAllSolid = "check-all-solid", e.checkCallLine = "check-call-line", e.checkCallSolid = "check-call-solid", e.checkCircleLine = "check-circle-line", e.checkCircleSolid = "check-circle-solid", e.checkDoubleLine = "check-double-line", e.checkDoubleSolid = "check-double-solid", e.checkLine = "check-line", e.checkSentLine = "check-sent-line", e.checkSentSolid = "check-sent-solid", e.checkSolid = "check-solid", e.checkboxChecked2Line = "checkbox-checked-2-line", e.checkboxChecked2Solid = "checkbox-checked-2-solid", e.checkboxCheckedLine = "checkbox-checked-line", e.checkboxCheckedSolid = "checkbox-checked-solid", e.checkboxPartCheckedLine = "checkbox-part-checked-line", e.checkboxPartCheckedSolid = "checkbox-part-checked-solid", e.checkboxUnchecked2Line = "checkbox-unchecked-2-line", e.checkboxUnchecked2Solid = "checkbox-unchecked-2-solid", e.checkboxUncheckedLine = "checkbox-unchecked-line", e.checkboxUncheckedSolid = "checkbox-unchecked-solid", e.chevronCircleDownLine = "chevron-circle-down-line", e.chevronCircleDownSolid = "chevron-circle-down-solid", e.chevronDownLine = "chevron-down-line", e.chevronDownSolid = "chevron-down-solid", e.chevronLeftLine = "chevron-left-line", e.chevronLeftSolid = "chevron-left-solid", e.chevronRightLine = "chevron-right-line", e.chevronRightSolid = "chevron-right-solid", e.chevronUpLine = "chevron-up-line", e.chevronUpSolid = "chevron-up-solid", e.chimeColor = "chime-color", e.chimeMono = "chime-mono", e.circleLine = "circle-line", e.circleSolid = "circle-solid", e.clearFileLine = "clear-file-line", e.clearFileSolid = "clear-file-solid", e.clickToCallLine = "click-to-call-line", e.clickToCallSolid = "click-to-call-solid", e.clioColor = "clio-color", e.clioMono = "clio-mono", e.clipboardAddLine = "clipboard-add-line", e.clipboardAddSolid = "clipboard-add-solid", e.clipboardAssignLine = "clipboard-assign-line", e.clipboardAssignSolid = "clipboard-assign-solid", e.clockLine = "clock-line", e.clockOffLine = "clock-off-line", e.clockOffSolid = "clock-off-solid", e.clockSolid = "clock-solid", e.closeCircleLine = "close-circle-line", e.closeCircleSolid = "close-circle-solid", e.closeLine = "close-line", e.closeSmallLine = "close-small-line", e.closeSmallSolid = "close-small-solid", e.closeSolid = "close-solid", e.closedCaptioningLine = "closed-captioning-line", e.closedCaptioningOffLine = "closed-captioning-off-line", e.closedCaptioningOffSolid = "closed-captioning-off-solid", e.closedCaptioningSolid = "closed-captioning-solid", e.cloudDownload2Line = "cloud-download-2-line", e.cloudDownload2Solid = "cloud-download-2-solid", e.cloudLine = "cloud-line", e.cloudOfficePhoneLine = "cloud-office-phone-line", e.cloudOfficePhoneSolid = "cloud-office-phone-solid", e.cloudSolid = "cloud-solid", e.cloudUpload2Line = "cloud-upload-2-line", e.cloudUpload2Solid = "cloud-upload-2-solid", e.cloudUploadLine = "cloud-upload-line", e.cloudUploadSolid = "cloud-upload-solid", e.codeLine = "code-line", e.codeSnippetLine = "code-snippet-line", e.codeSnippetSolid = "code-snippet-solid", e.codeSolid = "code-solid", e.coffeeLine = "coffee-line", e.coffeeSolid = "coffee-solid", e.collapseLine = "collapse-line", e.collapseSolid = "collapse-solid", e.commsOnlineColor = "comms-online-color", e.commsOnlineMono = "comms-online-mono", e.companyLine = "company-line", e.companySolid = "company-solid", e.composeLine = "compose-line", e.composeSolid = "compose-solid", e.conditionLine = "condition-line", e.conditionSolid = "condition-solid", e.connectLine = "connect-line", e.connectSolid = "connect-solid", e.cooktailLine = "cooktail-line", e.cooktailSolid = "cooktail-solid", e.copy2Line = "copy-2-line", e.copy2Solid = "copy-2-solid", e.copyLine = "copy-line", e.copySolid = "copy-solid", e.creditCardLine = "credit-card-line", e.creditCardSolid = "credit-card-solid", e.cropLine = "crop-line", e.cropSolid = "crop-solid", e.curlColor = "curl-color", e.curlMono = "curl-mono", e.curlyBracketsLine = "curly-brackets-line", e.curlyBracketsSolid = "curly-brackets-solid", e.cursor2Line = "cursor-2-line", e.cursor2Solid = "cursor-2-solid", e.cursorLine = "cursor-line", e.cursorSolid = "cursor-solid", e.darkModeLine = "dark-mode-line", e.darkModeSolid = "dark-mode-solid", e.deleteLine = "delete-line", e.deleteSolid = "delete-solid", e.densityHighLine = "density-high-line", e.densityHighSolid = "density-high-solid", e.densityMediumLine = "density-medium-line", e.densityMediumSolid = "density-medium-solid", e.designToolsLine = "design-tools-line", e.designToolsSolid = "design-tools-solid", e.devicesLine = "devices-line", e.devicesSolid = "devices-solid", e.disableCallLine = "disable-call-line", e.disableCallSolid = "disable-call-solid", e.distortLine = "distort-line", e.distortSolid = "distort-solid", e.dividerLine = "divider-line", e.dividerSolid = "divider-solid", e.document2Line = "document-2-line", e.document2Solid = "document-2-solid", e.documentLine = "document-line", e.documentSolid = "document-solid", e.dollarLine = "dollar-line", e.dollarSolid = "dollar-solid", e.dotnetColor = "dotnet-color", e.dotnetMono = "dotnet-mono", e.doubleChevronLeftLine = "double-chevron-left-line", e.doubleChevronLeftSolid = "double-chevron-left-solid", e.doubleChevronRightLine = "double-chevron-right-line", e.doubleChevronRightSolid = "double-chevron-right-solid", e.downloadLine = "download-line", e.downloadSolid = "download-solid", e.drupalColor = "drupal-color", e.drupalMono = "drupal-mono", e.duplicateLine = "duplicate-line", e.duplicateSolid = "duplicate-solid", e.dynamics365Color = "dynamics-365-color", e.dynamics365Mono = "dynamics-365-mono", e.dynamicsColor = "dynamics-color", e.dynamicsMono = "dynamics-mono", e.echoLine = "echo-line", e.echoSolid = "echo-solid", e.editLine = "edit-line", e.editSolid = "edit-solid", e.editUserLine = "edit-user-line", e.editUserSolid = "edit-user-solid", e.emojiLine = "emoji-line", e.emojiSolid = "emoji-solid", e.endCallLine = "end-call-line", e.endCallSolid = "end-call-solid", e.enlargeScreen2Line = "enlarge-screen-2-line", e.enlargeScreen2Solid = "enlarge-screen-2-solid", e.enlargeScreenLine = "enlarge-screen-line", e.enlargeScreenSolid = "enlarge-screen-solid", e.enterLine = "enter-line", e.enterSolid = "enter-solid", e.envelopeLine = "envelope-line", e.envelopeSolid = "envelope-solid", e.eraserLine = "eraser-line", e.eraserSolid = "eraser-solid", e.errorLine = "error-line", e.errorSolid = "error-solid", e.errorStarLine = "error-star-line", e.errorStarSolid = "error-star-solid", e.exitLine = "exit-line", e.exitSolid = "exit-solid", e.expand2Line = "expand-2-line", e.expand2Solid = "expand-2-solid", e.expandLine = "expand-line", e.expandSolid = "expand-solid", e.exportLine = "export-line", e.exportSolid = "export-solid", e.expressColor = "express-color", e.expressMono = "express-mono", e.eyeHideLine = "eye-hide-line", e.eyeHideSolid = "eye-hide-solid", e.eyeLine = "eye-line", e.eyeSolid = "eye-solid", e.facebookColor = "facebook-color", e.facebookLine = "facebook-line", e.facebookMono = "facebook-mono", e.facebookSolid = "facebook-solid", e.fax2Line = "fax-2-line", e.fax2Solid = "fax-2-solid", e.faxAddLine = "fax-add-line", e.faxAddSolid = "fax-add-solid", e.faxFailedLine = "fax-failed-line", e.faxFailedSolid = "fax-failed-solid", e.faxInboundLine = "fax-inbound-line", e.faxInboundSolid = "fax-inbound-solid", e.faxLine = "fax-line", e.faxOutboundLine = "fax-outbound-line", e.faxOutboundSolid = "fax-outbound-solid", e.faxPendingLine = "fax-pending-line", e.faxPendingSolid = "fax-pending-solid", e.faxScheduledLine = "fax-scheduled-line", e.faxScheduledSolid = "fax-scheduled-solid", e.faxSolid = "fax-solid", e.feedbackLine = "feedback-line", e.feedbackSolid = "feedback-solid", e.fileAddLine = "file-add-line", e.fileAddSolid = "file-add-solid", e.fileAudioLine = "file-audio-line", e.fileAudioSolid = "file-audio-solid", e.fileCsvLine = "file-csv-line", e.fileCsvSolid = "file-csv-solid", e.fileDocLine = "file-doc-line", e.fileDocSolid = "file-doc-solid", e.fileDollarLine = "file-dollar-line", e.fileDollarSolid = "file-dollar-solid", e.fileEditLine = "file-edit-line", e.fileEditSolid = "file-edit-solid", e.fileGearLine = "file-gear-line", e.fileGearSolid = "file-gear-solid", e.fileGif2Line = "file-gif-2-line", e.fileGif2Solid = "file-gif-2-solid", e.fileGifLine = "file-gif-line", e.fileGifSolid = "file-gif-solid", e.fileJpgLine = "file-jpg-line", e.fileJpgSolid = "file-jpg-solid", e.fileLine = "file-line", e.fileParagraphLine = "file-paragraph-line", e.fileParagraphSolid = "file-paragraph-solid", e.filePdfLine = "file-pdf-line", e.filePdfSolid = "file-pdf-solid", e.filePlusLine = "file-plus-line", e.filePlusSolid = "file-plus-solid", e.filePngLine = "file-png-line", e.filePngSolid = "file-png-solid", e.filePptLine = "file-ppt-line", e.filePptSolid = "file-ppt-solid", e.fileSearchLine = "file-search-line", e.fileSearchSolid = "file-search-solid", e.fileSolid = "file-solid", e.fileVideo2Line = "file-video-2-line", e.fileVideo2Solid = "file-video-2-solid", e.fileVideoLine = "file-video-line", e.fileVideoSolid = "file-video-solid", e.fileXlsLine = "file-xls-line", e.fileXlsSolid = "file-xls-solid", e.fileZipLine = "file-zip-line", e.fileZipSolid = "file-zip-solid", e.filesLine = "files-line", e.filesSolid = "files-solid", e.filterLine = "filter-line", e.filterSolid = "filter-solid", e.flagAfghanistan = "flag-afghanistan", e.flagAlandIslands = "flag-aland-islands", e.flagAlbania = "flag-albania", e.flagAlgeria = "flag-algeria", e.flagArgentina = "flag-argentina", e.flagArmenia = "flag-armenia", e.flagAruba = "flag-aruba", e.flagAustralia = "flag-australia", e.flagAustria = "flag-austria", e.flagBahamas = "flag-bahamas", e.flagBahrain = "flag-bahrain", e.flagBelarus = "flag-belarus", e.flagBelgium = "flag-belgium", e.flagBenin = "flag-benin", e.flagBolivia = "flag-bolivia", e.flagBotswana = "flag-botswana", e.flagBrazil = "flag-brazil", e.flagBulgaria = "flag-bulgaria", e.flagBurkinaFaso = "flag-burkina-faso", e.flagCambodia = "flag-cambodia", e.flagCanada = "flag-canada", e.flagCaymanIslands = "flag-cayman-islands", e.flagCentralAfricanRepublic = "flag-central-african-republic", e.flagChad = "flag-chad", e.flagChile = "flag-chile", e.flagChina = "flag-china", e.flagColombia = "flag-colombia", e.flagCostaRica = "flag-costa-rica", e.flagCroatia = "flag-croatia", e.flagCyprus = "flag-cyprus", e.flagDenmark = "flag-denmark", e.flagDominicanRepublic = "flag-dominican-republic", e.flagEgypt = "flag-egypt", e.flagElSalvador = "flag-el-salvador", e.flagEstonia = "flag-estonia", e.flagEuropeanUnion = "flag-european-union", e.flagFinland = "flag-finland", e.flagFrance = "flag-france", e.flagGeorgia = "flag-georgia", e.flagGermany = "flag-germany", e.flagGhana = "flag-ghana", e.flagGrenada = "flag-grenada", e.flagGuatemala = "flag-guatemala", e.flagHonduras = "flag-honduras", e.flagHongKong = "flag-hong-kong", e.flagHungary = "flag-hungary", e.flagIceland = "flag-iceland", e.flagIndia = "flag-india", e.flagIndonesia = "flag-indonesia", e.flagIreland = "flag-ireland", e.flagIsrael = "flag-israel", e.flagItaly = "flag-italy", e.flagJamaica = "flag-jamaica", e.flagJapan = "flag-japan", e.flagLatvia = "flag-latvia", e.flagLiechtenstein = "flag-liechtenstein", e.flagLithuania = "flag-lithuania", e.flagLuxembourg = "flag-luxembourg", e.flagMacao = "flag-macao", e.flagMalaysia = "flag-malaysia", e.flagMalta = "flag-malta", e.flagMauritius = "flag-mauritius", e.flagMexico = "flag-mexico", e.flagMoldova = "flag-moldova", e.flagNetherlands = "flag-netherlands", e.flagNewZealand = "flag-new-zealand", e.flagNigeria = "flag-nigeria", e.flagNorway = "flag-norway", e.flagPakistan = "flag-pakistan", e.flagPanama = "flag-panama", e.flagPeru = "flag-peru", e.flagPhilippines = "flag-philippines", e.flagPoland = "flag-poland", e.flagPortugal = "flag-portugal", e.flagPuertorico = "flag-puertorico", e.flagRomania = "flag-romania", e.flagRussia = "flag-russia", e.flagRwanda = "flag-rwanda", e.flagSaudiArabia = "flag-saudi-arabia", e.flagSerbia = "flag-serbia", e.flagSingapore = "flag-singapore", e.flagSlovakia = "flag-slovakia", e.flagSlovenia = "flag-slovenia", e.flagSouthAfrica = "flag-south-africa", e.flagSouthKorea = "flag-south-korea", e.flagSpain = "flag-spain", e.flagSriLanka = "flag-sri-lanka", e.flagSweden = "flag-sweden", e.flagSwitzerland = "flag-switzerland", e.flagTaiwan = "flag-taiwan", e.flagTajikistan = "flag-tajikistan", e.flagTanzania = "flag-tanzania", e.flagThailand = "flag-thailand", e.flagTrinidadAndTobago = "flag-trinidad-and-tobago", e.flagTurkey = "flag-turkey", e.flagUkraine = "flag-ukraine", e.flagUnitedArabEmirates = "flag-united-arab-emirates", e.flagUnitedKingdom = "flag-united-kingdom", e.flagUnitedStates = "flag-united-states", e.flagUruguay = "flag-uruguay", e.flagUzbekistan = "flag-uzbekistan", e.flagVenezuela = "flag-venezuela", e.flagVietnam = "flag-vietnam", e.flagZambia = "flag-zambia", e.flash2Line = "flash-2-line", e.flash2Solid = "flash-2-solid", e.flashLine = "flash-line", e.flashSolid = "flash-solid", e.flipHorizontalLine = "flip-horizontal-line", e.flipHorizontalSolid = "flip-horizontal-solid", e.flipLine = "flip-line", e.flipSolid = "flip-solid", e.flipVerticalLine = "flip-vertical-line", e.flipVerticalSolid = "flip-vertical-solid", e.flow2Line = "flow-2-line", e.flow2Solid = "flow-2-solid", e.flowLine = "flow-line", e.flowPermissionLine = "flow-permission-line", e.flowPermissionSolid = "flow-permission-solid", e.flowSolid = "flow-solid", e.forwardCallLine = "forward-call-line", e.forwardCallSolid = "forward-call-solid", e.forwardLine = "forward-line", e.forwardSolid = "forward-solid", e.fullScreenLine = "full-screen-line", e.fullScreenSolid = "full-screen-solid", e.fullscreenOffLine = "fullscreen-off-line", e.fullscreenOffSolid = "fullscreen-off-solid", e.galleryLine = "gallery-line", e.gallerySolid = "gallery-solid", e.gearLine = "gear-line", e.gearSolid = "gear-solid", e.githubColor = "github-color", e.githubMono = "github-mono", e.globeLine = "globe-line", e.globeSolid = "globe-solid", e.googleColor = "google-color", e.googleMono = "google-mono", e.gradleColor = "gradle-color", e.gradleMono = "gradle-mono", e.gridTwoLine = "grid-two-line", e.gridTwoSolid = "grid-two-solid", e.groovyColor = "groovy-color", e.groovyMono = "groovy-mono", e.group2Line = "group-2-line", e.group2Solid = "group-2-solid", e.group3Line = "group-3-line", e.group3Solid = "group-3-solid", e.group4Line = "group-4-line", e.group4Solid = "group-4-solid", e.group5Line = "group-5-line", e.group5Solid = "group-5-solid", e.group6Line = "group-6-line", e.group6Solid = "group-6-solid", e.group7Line = "group-7-line", e.group7Solid = "group-7-solid", e.group8Line = "group-8-line", e.group8Solid = "group-8-solid", e.group9Line = "group-9-line", e.group9Solid = "group-9-solid", e.groupLine = "group-line", e.groupPermission2Line = "group-permission-2-line", e.groupPermission2Solid = "group-permission-2-solid", e.groupPermissionLine = "group-permission-line", e.groupPermissionSolid = "group-permission-solid", e.groupSolid = "group-solid", e.handLine = "hand-line", e.handOffLine = "hand-off-line", e.handOffSolid = "hand-off-solid", e.handShakeLine = "hand-shake-line", e.handShakeSolid = "hand-shake-solid", e.handSolid = "hand-solid", e.happyLine = "happy-line", e.happySolid = "happy-solid", e.hashLine = "hash-line", e.hashSolid = "hash-solid", e.headset2Line = "headset-2-line", e.headset2Solid = "headset-2-solid", e.headsetLine = "headset-line", e.headsetSolid = "headset-solid", e.hearingLine = "hearing-line", e.hearingMaxLine = "hearing-max-line", e.hearingMaxSolid = "hearing-max-solid", e.hearingSolid = "hearing-solid", e.heartLine = "heart-line", e.heartSolid = "heart-solid", e.helpLine = "help-line", e.helpSolid = "help-solid", e.highlightLine = "highlight-line", e.highlightSolid = "highlight-solid", e.historyLine = "history-line", e.historySolid = "history-solid", e.homeLine = "home-line", e.homeSolid = "home-solid", e.homeUserLine = "home-user-line", e.homeUserSolid = "home-user-solid", e.hospitalLine = "hospital-line", e.hospitalSolid = "hospital-solid", e.hotelingLine = "hoteling-line", e.hotelingSolid = "hoteling-solid", e.hubspotColor = "hubspot-color", e.hubspotMono = "hubspot-mono", e.idLine = "id-line", e.idSolid = "id-solid", e.imageLine = "image-line", e.imageSolid = "image-solid", e.importLine = "import-line", e.importSolid = "import-solid", e.inboundCallLine = "inbound-call-line", e.inboundCallSolid = "inbound-call-solid", e.inbox2Line = "inbox-2-line", e.inbox2Solid = "inbox-2-solid", e.inbox3Line = "inbox-3-line", e.inbox3Solid = "inbox-3-solid", e.inboxLine = "inbox-line", e.inboxSolid = "inbox-solid", e.increaseLine = "increase-line", e.increaseSolid = "increase-solid", e.infinityLine = "infinity-line", e.infinitySolid = "infinity-solid", e.infoLine = "info-line", e.infoSolid = "info-solid", e.instagramColor = "instagram-color", e.instagramMono = "instagram-mono", e.interactiveMessageLine = "interactive-message-line", e.interactiveMessageSolid = "interactive-message-solid", e.iosColor = "ios-color", e.iosMono = "ios-mono", e.italicLine = "italic-line", e.italicSolid = "italic-solid", e.javaColor = "java-color", e.javaMono = "java-mono", e.javascriptColor = "javascript-color", e.javascriptMono = "javascript-mono", e.jobdivaColor = "jobdiva-color", e.jobdivaMono = "jobdiva-mono", e.keyLine = "key-line", e.keySolid = "key-solid", e.keypad2Line = "keypad-2-line", e.keypad2Solid = "keypad-2-solid", e.keypadLine = "keypad-line", e.keypadSolid = "keypad-solid", e.kotlinColor = "kotlin-color", e.kotlinMono = "kotlin-mono", e.laptopLine = "laptop-line", e.laptopSolid = "laptop-solid", e.laravelColor = "laravel-color", e.laravelMono = "laravel-mono", e.layout1Line = "layout-1-line", e.layout1Solid = "layout-1-solid", e.layout2Line = "layout-2-line", e.layout2Solid = "layout-2-solid", e.leaveLine = "leave-line", e.leaveSolid = "leave-solid", e.lightBulbLine = "light-bulb-line", e.lightBulbSolid = "light-bulb-solid", e.lightModeLine = "light-mode-line", e.lightModeSolid = "light-mode-solid", e.lineWidthLargeLine = "line-width-large-line", e.lineWidthLargeSolid = "line-width-large-solid", e.lineWidthMediumLine = "line-width-medium-line", e.lineWidthMediumSolid = "line-width-medium-solid", e.lineWidthSmallLine = "line-width-small-line", e.lineWidthSmallSolid = "line-width-small-solid", e.linkAddLine = "link-add-line", e.linkAddSolid = "link-add-solid", e.linkLine = "link-line", e.linkRemoveLine = "link-remove-line", e.linkRemoveSolid = "link-remove-solid", e.linkSolid = "link-solid", e.linkedinColor = "linkedin-color", e.linkedinMono = "linkedin-mono", e.linuxColor = "linux-color", e.linuxMono = "linux-mono", e.list2Line = "list-2-line", e.list2Solid = "list-2-solid", e.listFilterLine = "list-filter-line", e.listFilterSolid = "list-filter-solid", e.listLine = "list-line", e.listNumberedLine = "list-numbered-line", e.listNumberedSolid = "list-numbered-solid", e.listSolid = "list-solid", e.lockLine = "lock-line", e.lockSolid = "lock-solid", e.mailboxLine = "mailbox-line", e.mailboxSolid = "mailbox-solid", e.maximizeLine = "maximize-line", e.maximizeSolid = "maximize-solid", e.mediaPlayerLine = "media-player-line", e.mediaPlayerOffLine = "media-player-off-line", e.mediaPlayerOffSolid = "media-player-off-solid", e.mediaPlayerSolid = "media-player-solid", e.megaphoneLine = "megaphone-line", e.megaphoneSolid = "megaphone-solid", e.menuLine = "menu-line", e.menuSolid = "menu-solid", e.merge2Line = "merge-2-line", e.merge2Solid = "merge-2-solid", e.mergeLine = "merge-line", e.mergeSolid = "merge-solid", e.messageLine = "message-line", e.messageSentLine = "message-sent-line", e.messageSentSolid = "message-sent-solid", e.messageSolid = "message-solid", e.micMuteLine = "mic-mute-line", e.micMuteSolid = "mic-mute-solid", e.microphone2Line = "microphone-2-line", e.microphone2Solid = "microphone-2-solid", e.microphoneLine = "microphone-line", e.microphoneSolid = "microphone-solid", e.microsoftDynamics365Color = "microsoft-dynamics-365-color", e.microsoftDynamics365Mono = "microsoft-dynamics-365-mono", e.mindMap2Line = "mind-map-2-line", e.mindMap2Solid = "mind-map-2-solid", e.mindMapLine = "mind-map-line", e.mindMapSolid = "mind-map-solid", e.minimize2Line = "minimize-2-line", e.minimize2Solid = "minimize-2-solid", e.minimizeLine = "minimize-line", e.minimizeSolid = "minimize-solid", e.minusLine = "minus-line", e.minusSolid = "minus-solid", e.missedCallLine = "missed-call-line", e.missedCallSolid = "missed-call-solid", e.mobile2Line = "mobile-2-line", e.mobile2Solid = "mobile-2-solid", e.mobileArrowRightLine = "mobile-arrow-right-line", e.mobileArrowRightSolid = "mobile-arrow-right-solid", e.mobileDevicesLine = "mobile-devices-line", e.mobileDevicesSolid = "mobile-devices-solid", e.mobileLine = "mobile-line", e.mobileSolid = "mobile-solid", e.mockupLine = "mockup-line", e.mockupSolid = "mockup-solid", e.modalLine = "modal-line", e.modalSolid = "modal-solid", e.moreHorizontalLine = "more-horizontal-line", e.moreHorizontalSolid = "more-horizontal-solid", e.moreVerticalLine = "more-vertical-line", e.moreVerticalSolid = "more-vertical-solid", e.musicLine = "music-line", e.musicSolid = "music-solid", e.netsuiteColor = "netsuite-color", e.netsuiteMono = "netsuite-mono", e.nexmoColor = "nexmo-color", e.nexmoMono = "nexmo-mono", e.nextLine = "next-line", e.nextSolid = "next-solid", e.nodeColor = "node-color", e.nodeMono = "node-mono", e.noteLine = "note-line", e.noteSolid = "note-solid", e.notesLine = "notes-line", e.notesSolid = "notes-solid", e.notificationOffLine = "notification-off-line", e.notificationOffSolid = "notification-off-solid", e.notificationOnLine = "notification-on-line", e.notificationOnSolid = "notification-on-solid", e.objectiveCColor = "objective-c-color", e.objectiveCMono = "objective-c-mono", e.officeColor = "office-color", e.officeMono = "office-mono", e.officePhone2Line = "office-phone-2-line", e.officePhone2Solid = "office-phone-2-solid", e.officePhoneLine = "office-phone-line", e.officePhoneSolid = "office-phone-solid", e.openFolderLine = "open-folder-line", e.openFolderSolid = "open-folder-solid", e.openLine = "open-line", e.openSolid = "open-solid", e.outboundCallLine = "outbound-call-line", e.outboundCallSolid = "outbound-call-solid", e.packet2Line = "packet-2-line", e.packet2Solid = "packet-2-solid", e.packetLine = "packet-line", e.packetSolid = "packet-solid", e.paletteLine = "palette-line", e.paletteSolid = "palette-solid", e.parkCallLine = "park-call-line", e.parkCallSolid = "park-call-solid", e.participantsLine = "participants-line", e.participantsOffLine = "participants-off-line", e.participantsOffSolid = "participants-off-solid", e.participantsSolid = "participants-solid", e.passwordRestartLine = "password-restart-line", e.passwordRestartSolid = "password-restart-solid", e.pause2Line = "pause-2-line", e.pause2Solid = "pause-2-solid", e.pauseCallLine = "pause-call-line", e.pauseCallSolid = "pause-call-solid", e.pauseLine = "pause-line", e.pauseSolid = "pause-solid", e.penEffectLine = "pen-effect-line", e.penEffectSolid = "pen-effect-solid", e.penTipLargeLine = "pen-tip-large-line", e.penTipLargeSolid = "pen-tip-large-solid", e.penTipMediumLine = "pen-tip-medium-line", e.penTipMediumSolid = "pen-tip-medium-solid", e.penTipSmallLine = "pen-tip-small-line", e.penTipSmallSolid = "pen-tip-small-solid", e.pendingCallLine = "pending-call-line", e.pendingCallSolid = "pending-call-solid", e.pentoolLine = "pentool-line", e.pentoolSolid = "pentool-solid", e.permissionCallLine = "permission-call-line", e.permissionCallSolid = "permission-call-solid", e.phoneNumberLine = "phone-number-line", e.phoneNumberSolid = "phone-number-solid", e.phpColor = "php-color", e.phpMono = "php-mono", e.pieChartLine = "pie-chart-line", e.pieChartSolid = "pie-chart-solid", e.pin2Line = "pin-2-line", e.pin2OffLine = "pin-2-off-line", e.pin2OffSolid = "pin-2-off-solid", e.pin2Solid = "pin-2-solid", e.pinLine = "pin-line", e.pinOffLine = "pin-off-line", e.pinOffSolid = "pin-off-solid", e.pinSolid = "pin-solid", e.pinUnverifiedLine = "pin-unverified-line", e.pinUnverifiedSolid = "pin-unverified-solid", e.pinVerifiedLine = "pin-verified-line", e.pinVerifiedSolid = "pin-verified-solid", e.play2Solid = "play-2-solid", e.playLine = "play-line", e.playSolid = "play-solid", e.playbackSpeedLine = "playback-speed-line", e.playbackSpeedSolid = "playback-speed-solid", e.playlistLine = "playlist-line", e.playlistSolid = "playlist-solid", e.plugLine = "plug-line", e.plugSolid = "plug-solid", e.plusLine = "plus-line", e.plusSolid = "plus-solid", e.preferencesLine = "preferences-line", e.preferencesSolid = "preferences-solid", e.presentationLine = "presentation-line", e.presentationSolid = "presentation-solid", e.printLine = "print-line", e.printSolid = "print-solid", e.profileLine = "profile-line", e.profileSolid = "profile-solid", e.puzzleLine = "puzzle-line", e.puzzleSolid = "puzzle-solid", e.puzzledLine = "puzzled-line", e.puzzledSolid = "puzzled-solid", e.pythonColor = "python-color", e.pythonMono = "python-mono", e.quitLine = "quit-line", e.quitSolid = "quit-solid", e.quoteLine = "quote-line", e.quoteSolid = "quote-solid", e.radioChecked2Line = "radio-checked-2-line", e.radioChecked2Solid = "radio-checked-2-solid", e.radioCheckedLine = "radio-checked-line", e.radioCheckedSolid = "radio-checked-solid", e.radioUnchecked2Line = "radio-unchecked-2-line", e.radioUnchecked2Solid = "radio-unchecked-2-solid", e.radioUncheckedLine = "radio-unchecked-line", e.radioUncheckedSolid = "radio-unchecked-solid", e.railsColor = "rails-color", e.railsMono = "rails-mono", e.reactColor = "react-color", e.reactMono = "react-mono", e.recLine = "rec-line", e.recSolid = "rec-solid", e.receptionistLine = "receptionist-line", e.receptionistSolid = "receptionist-solid", e.recordUserLine = "record-user-line", e.recordUserSolid = "record-user-solid", e.redoLine = "redo-line", e.redoSolid = "redo-solid", e.refreshCallLine = "refresh-call-line", e.refreshCallSolid = "refresh-call-solid", e.refreshDollarLine = "refresh-dollar-line", e.refreshDollarSolid = "refresh-dollar-solid", e.refreshLine = "refresh-line", e.refreshSolid = "refresh-solid", e.reloadLine = "reload-line", e.reloadSolid = "reload-solid", e.removeLine = "remove-line", e.removeSolid = "remove-solid", e.removeUserLine = "remove-user-line", e.removeUserSolid = "remove-user-solid", e.reorderHorizontalLine = "reorder-horizontal-line", e.reorderHorizontalSolid = "reorder-horizontal-solid", e.reorderVerticalLine = "reorder-vertical-line", e.reorderVerticalSolid = "reorder-vertical-solid", e.replyLine = "reply-line", e.replySolid = "reply-solid", e.reportLine = "report-line", e.reportSolid = "report-solid", e.resetLine = "reset-line", e.resetSolid = "reset-solid", e.rocketDisabledLine = "rocket-disabled-line", e.rocketDisabledSolid = "rocket-disabled-solid", e.rocketLine = "rocket-line", e.rocketSolid = "rocket-solid", e.rssColor = "rss-color", e.rssLine = "rss-line", e.rssMono = "rss-mono", e.rssSolid = "rss-solid", e.rubyColor = "ruby-color", e.rubyMono = "ruby-mono", e.salesforceColor = "salesforce-color", e.salesforceLine = "salesforce-line", e.salesforceMono = "salesforce-mono", e.salesforceSolid = "salesforce-solid", e.sandClockLine = "sand-clock-line", e.sandClockSolid = "sand-clock-solid", e.saveLine = "save-line", e.saveSolid = "save-solid", e.screenShareLine = "screen-share-line", e.screenShareOffLine = "screen-share-off-line", e.screenShareOffSolid = "screen-share-off-solid", e.screenShareSolid = "screen-share-solid", e.searchLine = "search-line", e.searchSolid = "search-solid", e.sendToBackLine = "send-to-back-line", e.sendToBackSolid = "send-to-back-solid", e.share2Line = "share-2-line", e.share2Solid = "share-2-solid", e.shareLine = "share-line", e.shareSolid = "share-solid", e.shieldLine = "shield-line", e.shieldSolid = "shield-solid", e.shoutLine = "shout-line", e.shoutSolid = "shout-solid", e.shuffleLine = "shuffle-line", e.shuffleSolid = "shuffle-solid", e.sidebarLine = "sidebar-line", e.sidebarSolid = "sidebar-solid", e.slackColor = "slack-color", e.slackMono = "slack-mono", e.smileLine = "smile-line", e.smileSolid = "smile-solid", e.smsLine = "sms-line", e.smsSolid = "sms-solid", e.snoozeLine = "snooze-line", e.snoozeSolid = "snooze-solid", e.sofaLine = "sofa-line", e.sofaSolid = "sofa-solid", e.sortAscLine = "sort-asc-line", e.sortAscSolid = "sort-asc-solid", e.sortDescLine = "sort-desc-line", e.sortDescSolid = "sort-desc-solid", e.sortLine = "sort-line", e.sortSolid = "sort-solid", e.squareLine = "square-line", e.squareSolid = "square-solid", e.stackLine = "stack-line", e.stackSolid = "stack-solid", e.stackoverflowColor = "stackoverflow-color", e.stackoverflowMono = "stackoverflow-mono", e.starDollarLine = "star-dollar-line", e.starDollarSolid = "star-dollar-solid", e.starLine = "star-line", e.starSolid = "star-solid", e.stickerLine = "sticker-line", e.stickerSolid = "sticker-solid", e.stopLine = "stop-line", e.stopSolid = "stop-solid", e.stopwatchLine = "stopwatch-line", e.stopwatchSolid = "stopwatch-solid", e.storeLine = "store-line", e.storeSolid = "store-solid", e.streamLine = "stream-line", e.streamSolid = "stream-solid", e.strikethroughLine = "strikethrough-line", e.strikethroughSolid = "strikethrough-solid", e.subtitlesLine = "subtitles-line", e.subtitlesSolid = "subtitles-solid", e.sugarcrmColor = "sugarcrm-color", e.sugarcrmMono = "sugarcrm-mono", e.surprisedLine = "surprised-line", e.surprisedSolid = "surprised-solid", e.swiftColor = "swift-color", e.swiftMono = "swift-mono", e.switchLine = "switch-line", e.switchSolid = "switch-solid", e.symfonyColor = "symfony-color", e.symfonyMono = "symfony-mono", e.table2Line = "table-2-line", e.table2Solid = "table-2-solid", e.tableLine = "table-line", e.tableSolid = "table-solid", e.tagAddLine = "tag-add-line", e.tagAddSolid = "tag-add-solid", e.tagDetachLine = "tag-detach-line", e.tagDetachSolid = "tag-detach-solid", e.tagLine = "tag-line", e.tagSearchLine = "tag-search-line", e.tagSearchSolid = "tag-search-solid", e.tagSolid = "tag-solid", e.telephoneLine = "telephone-line", e.telephoneSolid = "telephone-solid", e.textLine = "text-line", e.textSolid = "text-solid", e.textcolorLine = "textcolor-line", e.textcolorSolid = "textcolor-solid", e.textureLine = "texture-line", e.textureSolid = "texture-solid", e.thumbsDownLine = "thumbs-down-line", e.thumbsDownSolid = "thumbs-down-solid", e.thumbsUpLine = "thumbs-up-line", e.thumbsUpSolid = "thumbs-up-solid", e.timelineLine = "timeline-line", e.timelineSolid = "timeline-solid", e.toggleLine = "toggle-line", e.toggleSolid = "toggle-solid", e.tooltipLine = "tooltip-line", e.tooltipSolid = "tooltip-solid", e.transferCallLine = "transfer-call-line", e.transferCallSolid = "transfer-call-solid", e.transferLine = "transfer-line", e.transferSolid = "transfer-solid", e.triangleLine = "triangle-line", e.triangleSolid = "triangle-solid", e.triggerNodeLine = "trigger-node-line", e.triggerNodeSolid = "trigger-node-solid", e.twitchColor = "twitch-color", e.twitchMono = "twitch-mono", e.twitterColor = "twitter-color", e.twitterMono = "twitter-mono", e.umbrellaLine = "umbrella-line", e.umbrellaSolid = "umbrella-solid", e.underlineLine = "underline-line", e.underlineSolid = "underline-solid", e.undoLine = "undo-line", e.undoSolid = "undo-solid", e.unfavouriteLine = "unfavourite-line", e.unfavouriteSolid = "unfavourite-solid", e.unhappyLine = "unhappy-line", e.unhappySolid = "unhappy-solid", e.unlockLine = "unlock-line", e.unlockSolid = "unlock-solid", e.uploadLine = "upload-line", e.uploadSolid = "upload-solid", e.user2Line = "user-2-line", e.user2Solid = "user-2-solid", e.userAdminLine = "user-admin-line", e.userAdminSolid = "user-admin-solid", e.userClockLine = "user-clock-line", e.userClockSolid = "user-clock-solid", e.userLine = "user-line", e.userLockLine = "user-lock-line", e.userLockSolid = "user-lock-solid", e.userRecordLine = "user-record-line", e.userRecordSolid = "user-record-solid", e.userSolid = "user-solid", e.userSync2Line = "user-sync-2-line", e.userSync2OffLine = "user-sync-2-off-line", e.userSync2OffSolid = "user-sync-2-off-solid", e.userSync2Solid = "user-sync-2-solid", e.userSyncLine = "user-sync-line", e.userSyncSolid = "user-sync-solid", e.vanLine = "van-line", e.vanSolid = "van-solid", e.viberColor = "viber-color", e.viberMono = "viber-mono", e.videoActiveLine = "video-active-line", e.videoActiveSolid = "video-active-solid", e.videoConferenceLine = "video-conference-line", e.videoConferenceSolid = "video-conference-solid", e.videoLine = "video-line", e.videoOffLine = "video-off-line", e.videoOffSolid = "video-off-solid", e.videoPreviewLine = "video-preview-line", e.videoPreviewSolid = "video-preview-solid", e.videoSolid = "video-solid", e.videoWhiteboardLine = "video-whiteboard-line", e.videoWhiteboardSolid = "video-whiteboard-solid", e.video_round_tableLine = "video_round_table-line", e.video_round_tableSolid = "video_round_table-solid", e.virtualVoicemailLine = "virtual-voicemail-line", e.virtualVoicemailSolid = "virtual-voicemail-solid", e.voicemailLine = "voicemail-line", e.voicemailSolid = "voicemail-solid", e.voicemailTranscriptLine = "voicemail-transcript-line", e.voicemailTranscriptSolid = "voicemail-transcript-solid", e.volumeDecreaseLine = "volume-decrease-line", e.volumeDecreaseSolid = "volume-decrease-solid", e.volumeIncreaseLine = "volume-increase-line", e.volumeIncreaseSolid = "volume-increase-solid", e.volumeLine = "volume-line", e.volumeOff2Line = "volume-off-2-line", e.volumeOff2Solid = "volume-off-2-solid", e.volumeOffLine = "volume-off-line", e.volumeOffSolid = "volume-off-solid", e.volumeOnLine = "volume-on-line", e.volumeOnSolid = "volume-on-solid", e.volumeSolid = "volume-solid", e.vonageColor = "vonage-color", e.vonageLine = "vonage-line", e.vonageMono = "vonage-mono", e.vonageSolid = "vonage-solid", e.vueColor = "vue-color", e.vueMono = "vue-mono", e.walkLine = "walk-line", e.walkSolid = "walk-solid", e.walletLine = "wallet-line", e.walletSolid = "wallet-solid", e.wandLine = "wand-line", e.wandSolid = "wand-solid", e.warningLine = "warning-line", e.warningSolid = "warning-solid", e.wavingLine = "waving-line", e.wavingSolid = "waving-solid", e.webChatColor = "web-chat-color", e.webChatMono = "web-chat-mono", e.webhookLine = "webhook-line", e.webhookSolid = "webhook-solid", e.whatsappColor = "whatsapp-color", e.whatsappMono = "whatsapp-mono", e.whisperLine = "whisper-line", e.whisperSolid = "whisper-solid", e.wifiLine = "wifi-line", e.wifiSolid = "wifi-solid", e.windowsColor = "windows-color", e.windowsMono = "windows-mono", e.wordpressColor = "wordpress-color", e.wordpressMono = "wordpress-mono", e.workplaceColor = "workplace-color", e.workplaceMono = "workplace-mono", e.wrenchTool2Line = "wrench-tool-2-line", e.wrenchTool2Solid = "wrench-tool-2-solid", e.wrenchToolLine = "wrench-tool-line", e.wrenchToolSolid = "wrench-tool-solid", e.xTwitterColor = "x-twitter-color", e.xTwitterMono = "x-twitter-mono", e.xmlColor = "xml-color", e.xmlMono = "xml-mono", e.youtubeColor = "youtube-color", e.youtubeMono = "youtube-mono", e.zendeskColor = "zendesk-color", e.zendeskMono = "zendesk-mono", e.zeroLine = "zero-line", e.zeroSolid = "zero-solid", e.zohoColor = "zoho-color", e.zohoMono = "zoho-mono", e.zoomInLine = "zoom-in-line", e.zoomInSolid = "zoom-in-solid", e.zoomOutLine = "zoom-out-line", e.zoomOutSolid = "zoom-out-solid", e.zoomToFitLine = "zoom-to-fit-line", e.zoomToFitSolid = "zoom-to-fit-solid", e))(xe || {});
8806
8972
  const we = `/**
8807
8973
  * Do not edit directly
8808
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8974
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
8809
8975
  */
8810
8976
  /**
8811
8977
  * Do not edit directly
8812
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8978
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
8813
8979
  */
8814
8980
  /**
8815
8981
  * Do not edit directly
8816
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8982
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
8817
8983
  */
8818
8984
  /**
8819
8985
  * Do not edit directly
8820
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8986
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
8821
8987
  */
8822
8988
  @property --vvd-size-density {
8823
8989
  syntax: "<integer>";
@@ -9029,23 +9195,21 @@ const we = `/**
9029
9195
  --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);
9030
9196
  --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);
9031
9197
  }
9032
-
9033
- /*# sourceMappingURL=theme-light.css.map */
9034
9198
  `, Ce = `/**
9035
9199
  * Do not edit directly
9036
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9200
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9037
9201
  */
9038
9202
  /**
9039
9203
  * Do not edit directly
9040
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9204
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9041
9205
  */
9042
9206
  /**
9043
9207
  * Do not edit directly
9044
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9208
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9045
9209
  */
9046
9210
  /**
9047
9211
  * Do not edit directly
9048
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9212
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9049
9213
  */
9050
9214
  @property --vvd-size-density {
9051
9215
  syntax: "<integer>";
@@ -9257,8 +9421,6 @@ const we = `/**
9257
9421
  --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);
9258
9422
  --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);
9259
9423
  }
9260
-
9261
- /*# sourceMappingURL=theme-dark.css.map */
9262
9424
  `, Le = `@font-face {
9263
9425
  font-family: SpeziaCompleteVariableUpright;
9264
9426
  font-stretch: 50% 200%;
@@ -9288,11 +9450,9 @@ const we = `/**
9288
9450
  --vvd-typography-base-extended: 400 ultra-condensed calc(var(--vvd-size-font-scale-base, 16px))/1.5 SpeziaCompleteVariableUpright;
9289
9451
  --vvd-typography-base-extended-bold: 600 ultra-condensed calc(var(--vvd-size-font-scale-base, 16px))/1.5 SpeziaCompleteVariableUpright;
9290
9452
  }
9291
-
9292
- /*# sourceMappingURL=spezia-variable.css.map */
9293
9453
  `, Ve = `/**
9294
9454
  * Do not edit directly
9295
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9455
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9296
9456
  */
9297
9457
  .vvd-root, ::part(vvd-root),
9298
9458
  .vvd-theme-alternate, ::part(vvd-theme-alternate) {
@@ -9302,22 +9462,18 @@ const we = `/**
9302
9462
  .vvd-component:not(.vvd-theme-alternate) {
9303
9463
  --vvd-color-neutral-50: var(--_vvd3--vvd-color-neutral-50);
9304
9464
  }
9305
-
9306
- /*# sourceMappingURL=vivid-2-compat.css.map */
9307
9465
  `, Be = `/**
9308
9466
  * Do not edit directly
9309
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9467
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9310
9468
  */
9311
9469
  .vvd-root {
9312
9470
  color-scheme: var(--vvd-color-scheme);
9313
9471
  background-color: var(--vvd-color-canvas);
9314
9472
  color: var(--vvd-color-canvas-text);
9315
9473
  }
9316
-
9317
- /*# sourceMappingURL=theme.css.map */
9318
9474
  `, Te = `/**
9319
9475
  * Do not edit directly
9320
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9476
+ * Generated on Wed, 31 Jan 2024 15:12:41 GMT
9321
9477
  */
9322
9478
  .vvd-root:root {
9323
9479
  --vvd-size-font-scale-base: 1rem;
@@ -9449,8 +9605,6 @@ const we = `/**
9449
9605
  .vvd-root sup {
9450
9606
  top: -0.5em;
9451
9607
  }
9452
-
9453
- /*# sourceMappingURL=typography.css.map */
9454
9608
  `, Ne = {
9455
9609
  name: "core/theme",
9456
9610
  css: Be
@@ -9460,7 +9614,7 @@ const we = `/**
9460
9614
  }, Me = {
9461
9615
  name: "tokens/vivid-2-compat",
9462
9616
  css: Ve
9463
- }, Oi = {
9617
+ }, Pi = {
9464
9618
  theme: Ne,
9465
9619
  typography: ze,
9466
9620
  vivid2Compat: Me
@@ -9470,7 +9624,7 @@ const we = `/**
9470
9624
  }, h = (e) => {
9471
9625
  const t = document.createElement("style");
9472
9626
  t.setAttribute("type", "text/css"), t.innerHTML = e, document.head.append(t);
9473
- }, Pi = {
9627
+ }, Oi = {
9474
9628
  install(e, t) {
9475
9629
  const i = t.addRootClassTo ?? "root";
9476
9630
  switch (i) {
@@ -9528,15 +9682,15 @@ export {
9528
9682
  De as VAccordion,
9529
9683
  Ae as VAccordionItem,
9530
9684
  qe as VActionGroup,
9531
- Oe as VAlert,
9532
- Pe as VAvatar,
9685
+ Pe as VAlert,
9686
+ Oe as VAvatar,
9533
9687
  Ue as VBadge,
9534
- Re as VBanner,
9535
- Ee as VBreadcrumb,
9536
- Ge as VBreadcrumbItem,
9537
- He as VButton,
9538
- je as VCalendar,
9539
- We as VCalendarEvent,
9688
+ Ee as VBanner,
9689
+ Ge as VBreadcrumb,
9690
+ Re as VBreadcrumbItem,
9691
+ We as VButton,
9692
+ He as VCalendar,
9693
+ je as VCalendarEvent,
9540
9694
  Je as VCard,
9541
9695
  _e as VCheckbox,
9542
9696
  Xe as VCombobox,
@@ -9548,10 +9702,10 @@ export {
9548
9702
  ii as VDialog,
9549
9703
  ti as VDivider,
9550
9704
  oi as VEmptyState,
9551
- ni as VFab,
9552
- ai as VHeader,
9553
- li as VIcon,
9554
- si as VLayout,
9705
+ ai as VFab,
9706
+ ni as VHeader,
9707
+ si as VIcon,
9708
+ li as VLayout,
9555
9709
  ri as VMenu,
9556
9710
  di as VMenuItem,
9557
9711
  hi as VNav,
@@ -9565,8 +9719,8 @@ export {
9565
9719
  yi as VProgressRing,
9566
9720
  bi as VRadio,
9567
9721
  ki as VRadioGroup,
9568
- $i as VSelect,
9569
- Si as VSelectableBox,
9722
+ Si as VSelect,
9723
+ $i as VSelectableBox,
9570
9724
  xi as VSideDrawer,
9571
9725
  wi as VSlider,
9572
9726
  Ci as VSplitButton,
@@ -9582,7 +9736,7 @@ export {
9582
9736
  Fi as VTooltip,
9583
9737
  Ki as VTreeItem,
9584
9738
  Di as VTreeView,
9585
- Oi as optionalStyles,
9739
+ Pi as optionalStyles,
9586
9740
  ke as setCustomComponentPrefix,
9587
- Pi as vivid3
9741
+ Oi as vivid3
9588
9742
  };