@vonage/vivid-vue 3.46.0 → 3.47.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 O, registerEmptyState as P, 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
+ }), Oe = 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,10 +588,12 @@ 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
  }
@@ -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", O), 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", P), 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,13 @@ 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),
4412
4491
  // @slot submenu Assign a Menu to the `submenu` slot to add a submenu.
4413
- a("submenu", this.$slots.submenu)
4492
+ n("submenu", this.$slots.submenu)
4414
4493
  ]
4415
- ) : n(
4494
+ ) : a(
4416
4495
  this.componentName,
4417
4496
  {
4418
4497
  ref: "element",
@@ -4442,10 +4521,12 @@ const Oe = r({
4442
4521
  }
4443
4522
  },
4444
4523
  [
4524
+ // @ts-ignore
4525
+ this.$slots.default && this.$slots.default(),
4445
4526
  // @slot meta Assign nodes to the `meta` slot to set a badge or an additional icon.
4446
- a("meta", this.$slots.meta),
4527
+ n("meta", this.$slots.meta),
4447
4528
  // @slot submenu Assign a Menu to the `submenu` slot to add a submenu.
4448
- a("submenu", this.$slots.submenu)
4529
+ n("submenu", this.$slots.submenu)
4449
4530
  ]
4450
4531
  );
4451
4532
  }
@@ -4494,11 +4575,11 @@ const Oe = r({
4494
4575
  ],
4495
4576
  methods: {},
4496
4577
  setup(e, t) {
4497
- const i = d("nav", W), o = s(null);
4578
+ const i = d("nav", j), o = l(null);
4498
4579
  return { componentName: i, element: o };
4499
4580
  },
4500
4581
  render() {
4501
- return l ? n(
4582
+ return s ? a(
4502
4583
  this.componentName,
4503
4584
  {
4504
4585
  ref: "element",
@@ -4516,7 +4597,7 @@ const Oe = r({
4516
4597
  }
4517
4598
  },
4518
4599
  [this.$slots.default]
4519
- ) : n(
4600
+ ) : a(
4520
4601
  this.componentName,
4521
4602
  {
4522
4603
  ref: "element",
@@ -4592,11 +4673,11 @@ const Oe = r({
4592
4673
  const i = d(
4593
4674
  "nav-disclosure",
4594
4675
  J
4595
- ), o = s(null);
4676
+ ), o = l(null);
4596
4677
  return { componentName: i, element: o };
4597
4678
  },
4598
4679
  render() {
4599
- return l ? n(
4680
+ return s ? a(
4600
4681
  this.componentName,
4601
4682
  {
4602
4683
  ref: "element",
@@ -4620,9 +4701,11 @@ const Oe = r({
4620
4701
  [
4621
4702
  this.$slots.default,
4622
4703
  // @slot meta A slot to add additional content to the nav disclosure.
4623
- a("meta", this.$slots.meta)
4704
+ n("meta", this.$slots.meta),
4705
+ // @slot icon Add an icon to the component.
4706
+ n("icon", this.$slots.icon)
4624
4707
  ]
4625
- ) : n(
4708
+ ) : a(
4626
4709
  this.componentName,
4627
4710
  {
4628
4711
  ref: "element",
@@ -4643,7 +4726,9 @@ const Oe = r({
4643
4726
  // @ts-ignore
4644
4727
  this.$slots.default && this.$slots.default(),
4645
4728
  // @slot meta A slot to add additional content to the nav disclosure.
4646
- a("meta", this.$slots.meta)
4729
+ n("meta", this.$slots.meta),
4730
+ // @slot icon Add an icon to the component.
4731
+ n("icon", this.$slots.icon)
4647
4732
  ]
4648
4733
  );
4649
4734
  }
@@ -4741,11 +4826,11 @@ const Oe = r({
4741
4826
  }
4742
4827
  },
4743
4828
  setup(e, t) {
4744
- const i = d("nav-item", _), o = s(null);
4829
+ const i = d("nav-item", _), o = l(null);
4745
4830
  return { componentName: i, element: o };
4746
4831
  },
4747
4832
  render() {
4748
- return l ? n(
4833
+ return s ? a(
4749
4834
  this.componentName,
4750
4835
  {
4751
4836
  ref: "element",
@@ -4773,10 +4858,13 @@ const Oe = r({
4773
4858
  }
4774
4859
  },
4775
4860
  [
4861
+ this.$slots.default,
4776
4862
  // @slot meta A slot to add additional content to the nav item.
4777
- a("meta", this.$slots.meta)
4863
+ n("meta", this.$slots.meta),
4864
+ // @slot icon Add an icon to the component.
4865
+ n("icon", this.$slots.icon)
4778
4866
  ]
4779
- ) : n(
4867
+ ) : a(
4780
4868
  this.componentName,
4781
4869
  {
4782
4870
  ref: "element",
@@ -4800,8 +4888,12 @@ const Oe = r({
4800
4888
  onInput: (e) => this.$emit("input", e)
4801
4889
  },
4802
4890
  [
4891
+ // @ts-ignore
4892
+ this.$slots.default && this.$slots.default(),
4803
4893
  // @slot meta A slot to add additional content to the nav item.
4804
- a("meta", this.$slots.meta)
4894
+ n("meta", this.$slots.meta),
4895
+ // @slot icon Add an icon to the component.
4896
+ n("icon", this.$slots.icon)
4805
4897
  ]
4806
4898
  );
4807
4899
  }
@@ -4863,11 +4955,11 @@ const Oe = r({
4863
4955
  ],
4864
4956
  methods: {},
4865
4957
  setup(e, t) {
4866
- const i = d("note", X), o = s(null);
4958
+ const i = d("note", X), o = l(null);
4867
4959
  return { componentName: i, element: o };
4868
4960
  },
4869
4961
  render() {
4870
- return l ? n(
4962
+ return s ? a(
4871
4963
  this.componentName,
4872
4964
  {
4873
4965
  ref: "element",
@@ -4887,8 +4979,12 @@ const Oe = r({
4887
4979
  input: (e) => this.$emit("input", e)
4888
4980
  }
4889
4981
  },
4890
- [this.$slots.default]
4891
- ) : n(
4982
+ [
4983
+ this.$slots.default,
4984
+ // @slot icon Add an icon to the component.
4985
+ n("icon", this.$slots.icon)
4986
+ ]
4987
+ ) : a(
4892
4988
  this.componentName,
4893
4989
  {
4894
4990
  ref: "element",
@@ -4906,13 +5002,15 @@ const Oe = r({
4906
5002
  },
4907
5003
  [
4908
5004
  // @ts-ignore
4909
- this.$slots.default && this.$slots.default()
5005
+ this.$slots.default && this.$slots.default(),
5006
+ // @slot icon Add an icon to the component.
5007
+ n("icon", this.$slots.icon)
4910
5008
  ]
4911
5009
  );
4912
5010
  }
4913
5011
  }), vi = r({
4914
5012
  name: "VNumberField",
4915
- model: l ? {
5013
+ model: s ? {
4916
5014
  prop: "modelValue",
4917
5015
  event: "update:modelValue"
4918
5016
  } : void 0,
@@ -5107,11 +5205,11 @@ const Oe = r({
5107
5205
  const i = d(
5108
5206
  "number-field",
5109
5207
  Z
5110
- ), o = s(null);
5208
+ ), o = l(null);
5111
5209
  return { componentName: i, element: o };
5112
5210
  },
5113
5211
  render() {
5114
- return l ? n(
5212
+ return s ? a(
5115
5213
  this.componentName,
5116
5214
  {
5117
5215
  ref: "element",
@@ -5161,8 +5259,8 @@ const Oe = r({
5161
5259
  change: (e) => this.$emit("change", e)
5162
5260
  }
5163
5261
  },
5164
- []
5165
- ) : n(
5262
+ [this.$slots.default]
5263
+ ) : a(
5166
5264
  this.componentName,
5167
5265
  {
5168
5266
  ref: "element",
@@ -5208,7 +5306,10 @@ const Oe = r({
5208
5306
  },
5209
5307
  onChange: (e) => this.$emit("change", e)
5210
5308
  },
5211
- []
5309
+ [
5310
+ // @ts-ignore
5311
+ this.$slots.default && this.$slots.default()
5312
+ ]
5212
5313
  );
5213
5314
  }
5214
5315
  }), mi = r({
@@ -5292,11 +5393,11 @@ const Oe = r({
5292
5393
  }
5293
5394
  },
5294
5395
  setup(e, t) {
5295
- const i = d("option", Q), o = s(null);
5396
+ const i = d("option", Q), o = l(null);
5296
5397
  return { componentName: i, element: o };
5297
5398
  },
5298
5399
  render() {
5299
- return l ? n(
5400
+ return s ? a(
5300
5401
  this.componentName,
5301
5402
  {
5302
5403
  ref: "element",
@@ -5321,10 +5422,11 @@ const Oe = r({
5321
5422
  }
5322
5423
  },
5323
5424
  [
5425
+ this.$slots.default,
5324
5426
  // @slot icon Slot to add an icon to the option.
5325
- a("icon", this.$slots.icon)
5427
+ n("icon", this.$slots.icon)
5326
5428
  ]
5327
- ) : n(
5429
+ ) : a(
5328
5430
  this.componentName,
5329
5431
  {
5330
5432
  ref: "element",
@@ -5345,8 +5447,10 @@ const Oe = r({
5345
5447
  onInput: (e) => this.$emit("input", e)
5346
5448
  },
5347
5449
  [
5450
+ // @ts-ignore
5451
+ this.$slots.default && this.$slots.default(),
5348
5452
  // @slot icon Slot to add an icon to the option.
5349
- a("icon", this.$slots.icon)
5453
+ n("icon", this.$slots.icon)
5350
5454
  ]
5351
5455
  );
5352
5456
  }
@@ -5427,11 +5531,11 @@ const Oe = r({
5427
5531
  }
5428
5532
  },
5429
5533
  setup(e, t) {
5430
- const i = d("pagination", Y), o = s(null);
5534
+ const i = d("pagination", Y), o = l(null);
5431
5535
  return { componentName: i, element: o };
5432
5536
  },
5433
5537
  render() {
5434
- return l ? n(
5538
+ return s ? a(
5435
5539
  this.componentName,
5436
5540
  {
5437
5541
  ref: "element",
@@ -5454,8 +5558,8 @@ const Oe = r({
5454
5558
  "pagination-change": (e) => this.$emit("pagination-change", e)
5455
5559
  }
5456
5560
  },
5457
- []
5458
- ) : n(
5561
+ [this.$slots.default]
5562
+ ) : a(
5459
5563
  this.componentName,
5460
5564
  {
5461
5565
  ref: "element",
@@ -5474,7 +5578,10 @@ const Oe = r({
5474
5578
  onInput: (e) => this.$emit("input", e),
5475
5579
  onPaginationChange: (e) => this.$emit("pagination-change", e)
5476
5580
  },
5477
- []
5581
+ [
5582
+ // @ts-ignore
5583
+ this.$slots.default && this.$slots.default()
5584
+ ]
5478
5585
  );
5479
5586
  }
5480
5587
  }), gi = r({
@@ -5557,11 +5664,11 @@ const Oe = r({
5557
5664
  ],
5558
5665
  methods: {},
5559
5666
  setup(e, t) {
5560
- const i = d("progress", I), o = s(null);
5667
+ const i = d("progress", I), o = l(null);
5561
5668
  return { componentName: i, element: o };
5562
5669
  },
5563
5670
  render() {
5564
- return l ? n(
5671
+ return s ? a(
5565
5672
  this.componentName,
5566
5673
  {
5567
5674
  ref: "element",
@@ -5586,8 +5693,8 @@ const Oe = r({
5586
5693
  input: (e) => this.$emit("input", e)
5587
5694
  }
5588
5695
  },
5589
- []
5590
- ) : n(
5696
+ [this.$slots.default]
5697
+ ) : a(
5591
5698
  this.componentName,
5592
5699
  {
5593
5700
  ref: "element",
@@ -5608,7 +5715,10 @@ const Oe = r({
5608
5715
  onKeyup: (e) => this.$emit("keyup", e),
5609
5716
  onInput: (e) => this.$emit("input", e)
5610
5717
  },
5611
- []
5718
+ [
5719
+ // @ts-ignore
5720
+ this.$slots.default && this.$slots.default()
5721
+ ]
5612
5722
  );
5613
5723
  }
5614
5724
  }), yi = r({
@@ -5684,11 +5794,11 @@ const Oe = r({
5684
5794
  const i = d(
5685
5795
  "progress-ring",
5686
5796
  ee
5687
- ), o = s(null);
5797
+ ), o = l(null);
5688
5798
  return { componentName: i, element: o };
5689
5799
  },
5690
5800
  render() {
5691
- return l ? n(
5801
+ return s ? a(
5692
5802
  this.componentName,
5693
5803
  {
5694
5804
  ref: "element",
@@ -5712,8 +5822,8 @@ const Oe = r({
5712
5822
  input: (e) => this.$emit("input", e)
5713
5823
  }
5714
5824
  },
5715
- []
5716
- ) : n(
5825
+ [this.$slots.default]
5826
+ ) : a(
5717
5827
  this.componentName,
5718
5828
  {
5719
5829
  ref: "element",
@@ -5733,7 +5843,10 @@ const Oe = r({
5733
5843
  onKeyup: (e) => this.$emit("keyup", e),
5734
5844
  onInput: (e) => this.$emit("input", e)
5735
5845
  },
5736
- []
5846
+ [
5847
+ // @ts-ignore
5848
+ this.$slots.default && this.$slots.default()
5849
+ ]
5737
5850
  );
5738
5851
  }
5739
5852
  }), bi = r({
@@ -5839,11 +5952,11 @@ const Oe = r({
5839
5952
  ],
5840
5953
  methods: {},
5841
5954
  setup(e, t) {
5842
- const i = d("radio", ie), o = s(null);
5955
+ const i = d("radio", ie), o = l(null);
5843
5956
  return { componentName: i, element: o };
5844
5957
  },
5845
5958
  render() {
5846
- return l ? n(
5959
+ return s ? a(
5847
5960
  this.componentName,
5848
5961
  {
5849
5962
  ref: "element",
@@ -5872,8 +5985,8 @@ const Oe = r({
5872
5985
  change: (e) => this.$emit("change", e)
5873
5986
  }
5874
5987
  },
5875
- []
5876
- ) : n(
5988
+ [this.$slots.default]
5989
+ ) : a(
5877
5990
  this.componentName,
5878
5991
  {
5879
5992
  ref: "element",
@@ -5898,12 +6011,15 @@ const Oe = r({
5898
6011
  onInput: (e) => this.$emit("input", e),
5899
6012
  onChange: (e) => this.$emit("change", e)
5900
6013
  },
5901
- []
6014
+ [
6015
+ // @ts-ignore
6016
+ this.$slots.default && this.$slots.default()
6017
+ ]
5902
6018
  );
5903
6019
  }
5904
6020
  }), ki = r({
5905
6021
  name: "VRadioGroup",
5906
- model: l ? {
6022
+ model: s ? {
5907
6023
  prop: "modelValue",
5908
6024
  event: "update:modelValue"
5909
6025
  } : void 0,
@@ -5988,11 +6104,11 @@ const Oe = r({
5988
6104
  ],
5989
6105
  methods: {},
5990
6106
  setup(e, t) {
5991
- const i = d("radio-group", te), o = s(null);
6107
+ const i = d("radio-group", te), o = l(null);
5992
6108
  return { componentName: i, element: o };
5993
6109
  },
5994
6110
  render() {
5995
- return l ? n(
6111
+ return s ? a(
5996
6112
  this.componentName,
5997
6113
  {
5998
6114
  ref: "element",
@@ -6022,7 +6138,7 @@ const Oe = r({
6022
6138
  }
6023
6139
  },
6024
6140
  [this.$slots.default]
6025
- ) : n(
6141
+ ) : a(
6026
6142
  this.componentName,
6027
6143
  {
6028
6144
  ref: "element",
@@ -6053,7 +6169,7 @@ const Oe = r({
6053
6169
  ]
6054
6170
  );
6055
6171
  }
6056
- }), Si = r({
6172
+ }), $i = r({
6057
6173
  name: "VSelectableBox",
6058
6174
  props: {
6059
6175
  /**
@@ -6137,11 +6253,11 @@ const Oe = r({
6137
6253
  const i = d(
6138
6254
  "selectable-box",
6139
6255
  oe
6140
- ), o = s(null);
6256
+ ), o = l(null);
6141
6257
  return { componentName: i, element: o };
6142
6258
  },
6143
6259
  render() {
6144
- return l ? n(
6260
+ return s ? a(
6145
6261
  this.componentName,
6146
6262
  {
6147
6263
  ref: "element",
@@ -6167,7 +6283,7 @@ const Oe = r({
6167
6283
  }
6168
6284
  },
6169
6285
  [this.$slots.default]
6170
- ) : n(
6286
+ ) : a(
6171
6287
  this.componentName,
6172
6288
  {
6173
6289
  ref: "element",
@@ -6194,9 +6310,9 @@ const Oe = r({
6194
6310
  ]
6195
6311
  );
6196
6312
  }
6197
- }), $i = r({
6313
+ }), Si = r({
6198
6314
  name: "VSelect",
6199
- model: l ? {
6315
+ model: s ? {
6200
6316
  prop: "modelValue",
6201
6317
  event: "update:modelValue"
6202
6318
  } : void 0,
@@ -6370,11 +6486,11 @@ const Oe = r({
6370
6486
  }
6371
6487
  },
6372
6488
  setup(e, t) {
6373
- const i = d("select", ne), o = s(null);
6489
+ const i = d("select", ae), o = l(null);
6374
6490
  return { componentName: i, element: o };
6375
6491
  },
6376
6492
  render() {
6377
- return l ? n(
6493
+ return s ? a(
6378
6494
  this.componentName,
6379
6495
  {
6380
6496
  ref: "element",
@@ -6418,11 +6534,11 @@ const Oe = r({
6418
6534
  [
6419
6535
  this.$slots.default,
6420
6536
  // @slot icon Slot to add an icon to the select control.
6421
- a("icon", this.$slots.icon),
6537
+ n("icon", this.$slots.icon),
6422
6538
  // @slot meta Slot to add meta content to the select control.
6423
- a("meta", this.$slots.meta)
6539
+ n("meta", this.$slots.meta)
6424
6540
  ]
6425
- ) : n(
6541
+ ) : a(
6426
6542
  this.componentName,
6427
6543
  {
6428
6544
  ref: "element",
@@ -6463,9 +6579,9 @@ const Oe = r({
6463
6579
  // @ts-ignore
6464
6580
  this.$slots.default && this.$slots.default(),
6465
6581
  // @slot icon Slot to add an icon to the select control.
6466
- a("icon", this.$slots.icon),
6582
+ n("icon", this.$slots.icon),
6467
6583
  // @slot meta Slot to add meta content to the select control.
6468
- a("meta", this.$slots.meta)
6584
+ n("meta", this.$slots.meta)
6469
6585
  ]
6470
6586
  );
6471
6587
  }
@@ -6540,11 +6656,11 @@ const Oe = r({
6540
6656
  ],
6541
6657
  methods: {},
6542
6658
  setup(e, t) {
6543
- const i = d("side-drawer", ae), o = s(null);
6659
+ const i = d("side-drawer", ne), o = l(null);
6544
6660
  return { componentName: i, element: o };
6545
6661
  },
6546
6662
  render() {
6547
- return l ? n(
6663
+ return s ? a(
6548
6664
  this.componentName,
6549
6665
  {
6550
6666
  ref: "element",
@@ -6570,9 +6686,9 @@ const Oe = r({
6570
6686
  [
6571
6687
  this.$slots.default,
6572
6688
  // @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"])
6689
+ n("app-content", this.$slots["app-content"])
6574
6690
  ]
6575
- ) : n(
6691
+ ) : a(
6576
6692
  this.componentName,
6577
6693
  {
6578
6694
  ref: "element",
@@ -6595,13 +6711,13 @@ const Oe = r({
6595
6711
  // @ts-ignore
6596
6712
  this.$slots.default && this.$slots.default(),
6597
6713
  // @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"])
6714
+ n("app-content", this.$slots["app-content"])
6599
6715
  ]
6600
6716
  );
6601
6717
  }
6602
6718
  }), wi = r({
6603
6719
  name: "VSlider",
6604
- model: l ? {
6720
+ model: s ? {
6605
6721
  prop: "modelValue",
6606
6722
  event: "update:modelValue"
6607
6723
  } : void 0,
@@ -6745,11 +6861,11 @@ const Oe = r({
6745
6861
  }
6746
6862
  },
6747
6863
  setup(e, t) {
6748
- const i = d("slider", le), o = s(null);
6864
+ const i = d("slider", se), o = l(null);
6749
6865
  return { componentName: i, element: o };
6750
6866
  },
6751
6867
  render() {
6752
- return l ? n(
6868
+ return s ? a(
6753
6869
  this.componentName,
6754
6870
  {
6755
6871
  ref: "element",
@@ -6787,8 +6903,8 @@ const Oe = r({
6787
6903
  }
6788
6904
  }
6789
6905
  },
6790
- []
6791
- ) : n(
6906
+ [this.$slots.default]
6907
+ ) : a(
6792
6908
  this.componentName,
6793
6909
  {
6794
6910
  ref: "element",
@@ -6822,7 +6938,10 @@ const Oe = r({
6822
6938
  ), this.$emit("change", e);
6823
6939
  }
6824
6940
  },
6825
- []
6941
+ [
6942
+ // @ts-ignore
6943
+ this.$slots.default && this.$slots.default()
6944
+ ]
6826
6945
  );
6827
6946
  }
6828
6947
  }), Ci = r({
@@ -6935,12 +7054,12 @@ const Oe = r({
6935
7054
  setup(e, t) {
6936
7055
  const i = d(
6937
7056
  "split-button",
6938
- se
6939
- ), o = s(null);
7057
+ le
7058
+ ), o = l(null);
6940
7059
  return { componentName: i, element: o };
6941
7060
  },
6942
7061
  render() {
6943
- return l ? n(
7062
+ return s ? a(
6944
7063
  this.componentName,
6945
7064
  {
6946
7065
  ref: "element",
@@ -6970,8 +7089,12 @@ const Oe = r({
6970
7089
  "indicator-click": (e) => this.$emit("indicator-click", e)
6971
7090
  }
6972
7091
  },
6973
- [this.$slots.default]
6974
- ) : n(
7092
+ [
7093
+ this.$slots.default,
7094
+ // @slot icon Add an icon to the component.
7095
+ n("icon", this.$slots.icon)
7096
+ ]
7097
+ ) : a(
6975
7098
  this.componentName,
6976
7099
  {
6977
7100
  ref: "element",
@@ -6999,13 +7122,15 @@ const Oe = r({
6999
7122
  },
7000
7123
  [
7001
7124
  // @ts-ignore
7002
- this.$slots.default && this.$slots.default()
7125
+ this.$slots.default && this.$slots.default(),
7126
+ // @slot icon Add an icon to the component.
7127
+ n("icon", this.$slots.icon)
7003
7128
  ]
7004
7129
  );
7005
7130
  }
7006
7131
  }), Li = r({
7007
7132
  name: "VSwitch",
7008
- model: l ? {
7133
+ model: s ? {
7009
7134
  prop: "modelValue",
7010
7135
  event: "update:modelValue"
7011
7136
  } : void 0,
@@ -7077,11 +7202,11 @@ const Oe = r({
7077
7202
  ],
7078
7203
  methods: {},
7079
7204
  setup(e, t) {
7080
- const i = d("switch", re), o = s(null);
7205
+ const i = d("switch", re), o = l(null);
7081
7206
  return { componentName: i, element: o };
7082
7207
  },
7083
7208
  render() {
7084
- return l ? n(
7209
+ return s ? a(
7085
7210
  this.componentName,
7086
7211
  {
7087
7212
  ref: "element",
@@ -7107,8 +7232,8 @@ const Oe = r({
7107
7232
  }
7108
7233
  }
7109
7234
  },
7110
- []
7111
- ) : n(
7235
+ [this.$slots.default]
7236
+ ) : a(
7112
7237
  this.componentName,
7113
7238
  {
7114
7239
  ref: "element",
@@ -7130,7 +7255,10 @@ const Oe = r({
7130
7255
  ), this.$emit("change", e);
7131
7256
  }
7132
7257
  },
7133
- []
7258
+ [
7259
+ // @ts-ignore
7260
+ this.$slots.default && this.$slots.default()
7261
+ ]
7134
7262
  );
7135
7263
  }
7136
7264
  }), Vi = r({
@@ -7211,11 +7339,11 @@ const Oe = r({
7211
7339
  ],
7212
7340
  methods: {},
7213
7341
  setup(e, t) {
7214
- const i = d("tab", de), o = s(null);
7342
+ const i = d("tab", de), o = l(null);
7215
7343
  return { componentName: i, element: o };
7216
7344
  },
7217
7345
  render() {
7218
- return l ? n(
7346
+ return s ? a(
7219
7347
  this.componentName,
7220
7348
  {
7221
7349
  ref: "element",
@@ -7241,10 +7369,11 @@ const Oe = r({
7241
7369
  }
7242
7370
  },
7243
7371
  [
7372
+ this.$slots.default,
7244
7373
  // @slot icon Slot to add an icon to tab.
7245
- a("icon", this.$slots.icon)
7374
+ n("icon", this.$slots.icon)
7246
7375
  ]
7247
- ) : n(
7376
+ ) : a(
7248
7377
  this.componentName,
7249
7378
  {
7250
7379
  ref: "element",
@@ -7266,8 +7395,10 @@ const Oe = r({
7266
7395
  onInput: (e) => this.$emit("input", e)
7267
7396
  },
7268
7397
  [
7398
+ // @ts-ignore
7399
+ this.$slots.default && this.$slots.default(),
7269
7400
  // @slot icon Slot to add an icon to tab.
7270
- a("icon", this.$slots.icon)
7401
+ n("icon", this.$slots.icon)
7271
7402
  ]
7272
7403
  );
7273
7404
  }
@@ -7382,11 +7513,11 @@ const Oe = r({
7382
7513
  }
7383
7514
  },
7384
7515
  setup(e, t) {
7385
- const i = d("tabs", he), o = s(null);
7516
+ const i = d("tabs", he), o = l(null);
7386
7517
  return { componentName: i, element: o };
7387
7518
  },
7388
7519
  render() {
7389
- return l ? n(
7520
+ return s ? a(
7390
7521
  this.componentName,
7391
7522
  {
7392
7523
  ref: "element",
@@ -7410,7 +7541,7 @@ const Oe = r({
7410
7541
  }
7411
7542
  },
7412
7543
  [this.$slots.default]
7413
- ) : n(
7544
+ ) : a(
7414
7545
  this.componentName,
7415
7546
  {
7416
7547
  ref: "element",
@@ -7480,11 +7611,11 @@ const Oe = r({
7480
7611
  ],
7481
7612
  methods: {},
7482
7613
  setup(e, t) {
7483
- const i = d("tab-panel", ue), o = s(null);
7614
+ const i = d("tab-panel", ue), o = l(null);
7484
7615
  return { componentName: i, element: o };
7485
7616
  },
7486
7617
  render() {
7487
- return l ? n(
7618
+ return s ? a(
7488
7619
  this.componentName,
7489
7620
  {
7490
7621
  ref: "element",
@@ -7502,7 +7633,7 @@ const Oe = r({
7502
7633
  }
7503
7634
  },
7504
7635
  [this.$slots.default]
7505
- ) : n(
7636
+ ) : a(
7506
7637
  this.componentName,
7507
7638
  {
7508
7639
  ref: "element",
@@ -7523,7 +7654,7 @@ const Oe = r({
7523
7654
  }
7524
7655
  }), Ni = r({
7525
7656
  name: "VTextArea",
7526
- model: l ? {
7657
+ model: s ? {
7527
7658
  prop: "modelValue",
7528
7659
  event: "update:modelValue"
7529
7660
  } : void 0,
@@ -7695,11 +7826,11 @@ const Oe = r({
7695
7826
  }
7696
7827
  },
7697
7828
  setup(e, t) {
7698
- const i = d("text-area", ce), o = s(null);
7829
+ const i = d("text-area", ce), o = l(null);
7699
7830
  return { componentName: i, element: o };
7700
7831
  },
7701
7832
  render() {
7702
- return l ? n(
7833
+ return s ? a(
7703
7834
  this.componentName,
7704
7835
  {
7705
7836
  ref: "element",
@@ -7744,8 +7875,8 @@ const Oe = r({
7744
7875
  change: (e) => this.$emit("change", e)
7745
7876
  }
7746
7877
  },
7747
- []
7748
- ) : n(
7878
+ [this.$slots.default]
7879
+ ) : a(
7749
7880
  this.componentName,
7750
7881
  {
7751
7882
  ref: "element",
@@ -7786,12 +7917,15 @@ const Oe = r({
7786
7917
  },
7787
7918
  onChange: (e) => this.$emit("change", e)
7788
7919
  },
7789
- []
7920
+ [
7921
+ // @ts-ignore
7922
+ this.$slots.default && this.$slots.default()
7923
+ ]
7790
7924
  );
7791
7925
  }
7792
7926
  }), zi = r({
7793
7927
  name: "VTextField",
7794
- model: l ? {
7928
+ model: s ? {
7795
7929
  prop: "modelValue",
7796
7930
  event: "update:modelValue"
7797
7931
  } : void 0,
@@ -7966,11 +8100,11 @@ const Oe = r({
7966
8100
  }
7967
8101
  },
7968
8102
  setup(e, t) {
7969
- const i = d("text-field", pe), o = s(null);
8103
+ const i = d("text-field", pe), o = l(null);
7970
8104
  return { componentName: i, element: o };
7971
8105
  },
7972
8106
  render() {
7973
- return l ? n(
8107
+ return s ? a(
7974
8108
  this.componentName,
7975
8109
  {
7976
8110
  ref: "element",
@@ -8018,15 +8152,16 @@ const Oe = r({
8018
8152
  }
8019
8153
  },
8020
8154
  [
8155
+ this.$slots.default,
8021
8156
  // @slot leading-action-items Used to add action items to the start of the text-field.
8022
- a(
8157
+ n(
8023
8158
  "leading-action-items",
8024
8159
  this.$slots["leading-action-items"]
8025
8160
  ),
8026
8161
  // @slot action-items Used to add action items to the end of the text-field.
8027
- a("action-items", this.$slots["action-items"])
8162
+ n("action-items", this.$slots["action-items"])
8028
8163
  ]
8029
- ) : n(
8164
+ ) : a(
8030
8165
  this.componentName,
8031
8166
  {
8032
8167
  ref: "element",
@@ -8070,13 +8205,15 @@ const Oe = r({
8070
8205
  onChange: (e) => this.$emit("change", e)
8071
8206
  },
8072
8207
  [
8208
+ // @ts-ignore
8209
+ this.$slots.default && this.$slots.default(),
8073
8210
  // @slot leading-action-items Used to add action items to the start of the text-field.
8074
- a(
8211
+ n(
8075
8212
  "leading-action-items",
8076
8213
  this.$slots["leading-action-items"]
8077
8214
  ),
8078
8215
  // @slot action-items Used to add action items to the end of the text-field.
8079
- a("action-items", this.$slots["action-items"])
8216
+ n("action-items", this.$slots["action-items"])
8080
8217
  ]
8081
8218
  );
8082
8219
  }
@@ -8156,11 +8293,11 @@ const Oe = r({
8156
8293
  }
8157
8294
  },
8158
8295
  setup(e, t) {
8159
- const i = d("toggletip", ve), o = s(null);
8296
+ const i = d("toggletip", ve), o = l(null);
8160
8297
  return { componentName: i, element: o };
8161
8298
  },
8162
8299
  render() {
8163
- return l ? n(
8300
+ return s ? a(
8164
8301
  this.componentName,
8165
8302
  {
8166
8303
  ref: "element",
@@ -8187,9 +8324,9 @@ const Oe = r({
8187
8324
  [
8188
8325
  this.$slots.default,
8189
8326
  // @slot action-items The content to display in the toggletip action items.
8190
- a("action-items", this.$slots["action-items"])
8327
+ n("action-items", this.$slots["action-items"])
8191
8328
  ]
8192
- ) : n(
8329
+ ) : a(
8193
8330
  this.componentName,
8194
8331
  {
8195
8332
  ref: "element",
@@ -8211,7 +8348,7 @@ const Oe = r({
8211
8348
  // @ts-ignore
8212
8349
  this.$slots.default && this.$slots.default(),
8213
8350
  // @slot action-items The content to display in the toggletip action items.
8214
- a("action-items", this.$slots["action-items"])
8351
+ n("action-items", this.$slots["action-items"])
8215
8352
  ]
8216
8353
  );
8217
8354
  }
@@ -8277,11 +8414,11 @@ const Oe = r({
8277
8414
  ],
8278
8415
  methods: {},
8279
8416
  setup(e, t) {
8280
- const i = d("tooltip", me), o = s(null);
8417
+ const i = d("tooltip", me), o = l(null);
8281
8418
  return { componentName: i, element: o };
8282
8419
  },
8283
8420
  render() {
8284
- return l ? n(
8421
+ return s ? a(
8285
8422
  this.componentName,
8286
8423
  {
8287
8424
  ref: "element",
@@ -8304,8 +8441,8 @@ const Oe = r({
8304
8441
  input: (e) => this.$emit("input", e)
8305
8442
  }
8306
8443
  },
8307
- []
8308
- ) : n(
8444
+ [this.$slots.default]
8445
+ ) : a(
8309
8446
  this.componentName,
8310
8447
  {
8311
8448
  ref: "element",
@@ -8322,7 +8459,10 @@ const Oe = r({
8322
8459
  onKeyup: (e) => this.$emit("keyup", e),
8323
8460
  onInput: (e) => this.$emit("input", e)
8324
8461
  },
8325
- []
8462
+ [
8463
+ // @ts-ignore
8464
+ this.$slots.default && this.$slots.default()
8465
+ ]
8326
8466
  );
8327
8467
  }
8328
8468
  }), Ki = r({
@@ -8401,11 +8541,11 @@ const Oe = r({
8401
8541
  ],
8402
8542
  methods: {},
8403
8543
  setup(e, t) {
8404
- const i = d("tree-item", fe), o = s(null);
8544
+ const i = d("tree-item", fe), o = l(null);
8405
8545
  return { componentName: i, element: o };
8406
8546
  },
8407
8547
  render() {
8408
- return l ? n(
8548
+ return s ? a(
8409
8549
  this.componentName,
8410
8550
  {
8411
8551
  ref: "element",
@@ -8430,10 +8570,13 @@ const Oe = r({
8430
8570
  }
8431
8571
  },
8432
8572
  [
8573
+ this.$slots.default,
8433
8574
  // @slot item To specify a child tree item.
8434
- a("item", this.$slots.item)
8575
+ n("item", this.$slots.item),
8576
+ // @slot icon Add an icon to the component.
8577
+ n("icon", this.$slots.icon)
8435
8578
  ]
8436
- ) : n(
8579
+ ) : a(
8437
8580
  this.componentName,
8438
8581
  {
8439
8582
  ref: "element",
@@ -8454,8 +8597,12 @@ const Oe = r({
8454
8597
  onSelectedChange: (e) => this.$emit("selected-change", e)
8455
8598
  },
8456
8599
  [
8600
+ // @ts-ignore
8601
+ this.$slots.default && this.$slots.default(),
8457
8602
  // @slot item To specify a child tree item.
8458
- a("item", this.$slots.item)
8603
+ n("item", this.$slots.item),
8604
+ // @slot icon Add an icon to the component.
8605
+ n("icon", this.$slots.icon)
8459
8606
  ]
8460
8607
  );
8461
8608
  }
@@ -8512,11 +8659,11 @@ const Oe = r({
8512
8659
  ],
8513
8660
  methods: {},
8514
8661
  setup(e, t) {
8515
- const i = d("tree-view", ge), o = s(null);
8662
+ const i = d("tree-view", ge), o = l(null);
8516
8663
  return { componentName: i, element: o };
8517
8664
  },
8518
8665
  render() {
8519
- return l ? n(
8666
+ return s ? a(
8520
8667
  this.componentName,
8521
8668
  {
8522
8669
  ref: "element",
@@ -8535,7 +8682,7 @@ const Oe = r({
8535
8682
  }
8536
8683
  },
8537
8684
  [this.$slots.default]
8538
- ) : n(
8685
+ ) : a(
8539
8686
  this.componentName,
8540
8687
  {
8541
8688
  ref: "element",
@@ -8656,11 +8803,11 @@ const Oe = r({
8656
8803
  }
8657
8804
  },
8658
8805
  setup(e, t) {
8659
- const i = d("tag", ye), o = s(null);
8806
+ const i = d("tag", ye), o = l(null);
8660
8807
  return { componentName: i, element: o };
8661
8808
  },
8662
8809
  render() {
8663
- return l ? n(
8810
+ return s ? a(
8664
8811
  this.componentName,
8665
8812
  {
8666
8813
  ref: "element",
@@ -8686,8 +8833,12 @@ const Oe = r({
8686
8833
  input: (e) => this.$emit("input", e)
8687
8834
  }
8688
8835
  },
8689
- []
8690
- ) : n(
8836
+ [
8837
+ this.$slots.default,
8838
+ // @slot icon Add an icon to the component.
8839
+ n("icon", this.$slots.icon)
8840
+ ]
8841
+ ) : a(
8691
8842
  this.componentName,
8692
8843
  {
8693
8844
  ref: "element",
@@ -8709,7 +8860,12 @@ const Oe = r({
8709
8860
  onKeyup: (e) => this.$emit("keyup", e),
8710
8861
  onInput: (e) => this.$emit("input", e)
8711
8862
  },
8712
- []
8863
+ [
8864
+ // @ts-ignore
8865
+ this.$slots.default && this.$slots.default(),
8866
+ // @slot icon Add an icon to the component.
8867
+ n("icon", this.$slots.icon)
8868
+ ]
8713
8869
  );
8714
8870
  }
8715
8871
  }), qi = r({
@@ -8758,11 +8914,11 @@ const Oe = r({
8758
8914
  ],
8759
8915
  methods: {},
8760
8916
  setup(e, t) {
8761
- const i = d("tag-group", be), o = s(null);
8917
+ const i = d("tag-group", be), o = l(null);
8762
8918
  return { componentName: i, element: o };
8763
8919
  },
8764
8920
  render() {
8765
- return l ? n(
8921
+ return s ? a(
8766
8922
  this.componentName,
8767
8923
  {
8768
8924
  ref: "element",
@@ -8781,7 +8937,7 @@ const Oe = r({
8781
8937
  }
8782
8938
  },
8783
8939
  [this.$slots.default]
8784
- ) : n(
8940
+ ) : a(
8785
8941
  this.componentName,
8786
8942
  {
8787
8943
  ref: "element",
@@ -8805,19 +8961,19 @@ const Oe = r({
8805
8961
  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
8962
  const we = `/**
8807
8963
  * Do not edit directly
8808
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8964
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
8809
8965
  */
8810
8966
  /**
8811
8967
  * Do not edit directly
8812
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8968
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
8813
8969
  */
8814
8970
  /**
8815
8971
  * Do not edit directly
8816
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8972
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
8817
8973
  */
8818
8974
  /**
8819
8975
  * Do not edit directly
8820
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
8976
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
8821
8977
  */
8822
8978
  @property --vvd-size-density {
8823
8979
  syntax: "<integer>";
@@ -9029,23 +9185,21 @@ const we = `/**
9029
9185
  --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #00000040) drop-shadow(0px 16px 24px #00000040) drop-shadow(0px 8px 12px #00000040);
9030
9186
  --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000040) drop-shadow(0px 24px 32px #00000040) drop-shadow(0px 12px 16px #00000040);
9031
9187
  }
9032
-
9033
- /*# sourceMappingURL=theme-light.css.map */
9034
9188
  `, Ce = `/**
9035
9189
  * Do not edit directly
9036
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9190
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9037
9191
  */
9038
9192
  /**
9039
9193
  * Do not edit directly
9040
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9194
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9041
9195
  */
9042
9196
  /**
9043
9197
  * Do not edit directly
9044
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9198
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9045
9199
  */
9046
9200
  /**
9047
9201
  * Do not edit directly
9048
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9202
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9049
9203
  */
9050
9204
  @property --vvd-size-density {
9051
9205
  syntax: "<integer>";
@@ -9257,8 +9411,6 @@ const we = `/**
9257
9411
  --vvd-shadow-surface-16dp: drop-shadow(0px 6px 32px #0000001a) drop-shadow(0px 16px 24px #0000000d) drop-shadow(0px 8px 12px #0000000d);
9258
9412
  --vvd-shadow-surface-24dp: drop-shadow(0px 12px 48px #00000033) drop-shadow(0px 24px 32px #0000000d) drop-shadow(0px 12px 16px #0000000d);
9259
9413
  }
9260
-
9261
- /*# sourceMappingURL=theme-dark.css.map */
9262
9414
  `, Le = `@font-face {
9263
9415
  font-family: SpeziaCompleteVariableUpright;
9264
9416
  font-stretch: 50% 200%;
@@ -9288,11 +9440,9 @@ const we = `/**
9288
9440
  --vvd-typography-base-extended: 400 ultra-condensed calc(var(--vvd-size-font-scale-base, 16px))/1.5 SpeziaCompleteVariableUpright;
9289
9441
  --vvd-typography-base-extended-bold: 600 ultra-condensed calc(var(--vvd-size-font-scale-base, 16px))/1.5 SpeziaCompleteVariableUpright;
9290
9442
  }
9291
-
9292
- /*# sourceMappingURL=spezia-variable.css.map */
9293
9443
  `, Ve = `/**
9294
9444
  * Do not edit directly
9295
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9445
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9296
9446
  */
9297
9447
  .vvd-root, ::part(vvd-root),
9298
9448
  .vvd-theme-alternate, ::part(vvd-theme-alternate) {
@@ -9302,22 +9452,18 @@ const we = `/**
9302
9452
  .vvd-component:not(.vvd-theme-alternate) {
9303
9453
  --vvd-color-neutral-50: var(--_vvd3--vvd-color-neutral-50);
9304
9454
  }
9305
-
9306
- /*# sourceMappingURL=vivid-2-compat.css.map */
9307
9455
  `, Be = `/**
9308
9456
  * Do not edit directly
9309
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9457
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9310
9458
  */
9311
9459
  .vvd-root {
9312
9460
  color-scheme: var(--vvd-color-scheme);
9313
9461
  background-color: var(--vvd-color-canvas);
9314
9462
  color: var(--vvd-color-canvas-text);
9315
9463
  }
9316
-
9317
- /*# sourceMappingURL=theme.css.map */
9318
9464
  `, Te = `/**
9319
9465
  * Do not edit directly
9320
- * Generated on Mon, 15 Jan 2024 13:38:12 GMT
9466
+ * Generated on Wed, 24 Jan 2024 15:06:53 GMT
9321
9467
  */
9322
9468
  .vvd-root:root {
9323
9469
  --vvd-size-font-scale-base: 1rem;
@@ -9449,8 +9595,6 @@ const we = `/**
9449
9595
  .vvd-root sup {
9450
9596
  top: -0.5em;
9451
9597
  }
9452
-
9453
- /*# sourceMappingURL=typography.css.map */
9454
9598
  `, Ne = {
9455
9599
  name: "core/theme",
9456
9600
  css: Be
@@ -9531,12 +9675,12 @@ export {
9531
9675
  Oe as VAlert,
9532
9676
  Pe as VAvatar,
9533
9677
  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,
9678
+ Ee as VBanner,
9679
+ Ge as VBreadcrumb,
9680
+ Re as VBreadcrumbItem,
9681
+ We as VButton,
9682
+ He as VCalendar,
9683
+ je as VCalendarEvent,
9540
9684
  Je as VCard,
9541
9685
  _e as VCheckbox,
9542
9686
  Xe as VCombobox,
@@ -9548,10 +9692,10 @@ export {
9548
9692
  ii as VDialog,
9549
9693
  ti as VDivider,
9550
9694
  oi as VEmptyState,
9551
- ni as VFab,
9552
- ai as VHeader,
9553
- li as VIcon,
9554
- si as VLayout,
9695
+ ai as VFab,
9696
+ ni as VHeader,
9697
+ si as VIcon,
9698
+ li as VLayout,
9555
9699
  ri as VMenu,
9556
9700
  di as VMenuItem,
9557
9701
  hi as VNav,
@@ -9565,8 +9709,8 @@ export {
9565
9709
  yi as VProgressRing,
9566
9710
  bi as VRadio,
9567
9711
  ki as VRadioGroup,
9568
- $i as VSelect,
9569
- Si as VSelectableBox,
9712
+ Si as VSelect,
9713
+ $i as VSelectableBox,
9570
9714
  xi as VSideDrawer,
9571
9715
  wi as VSlider,
9572
9716
  Ci as VSplitButton,