@evercam/ui 0.0.24 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
- import V from "vue";
2
- var w = /* @__PURE__ */ ((e) => (e.dot = "dot", e.xs = "xs", e.sm = "sm", e.md = "base", e.base = "base", e.lg = "lg", e.xl = "xl", e["2xl"] = "2xl", e["3xl"] = "3xl", e["4xl"] = "4xl", e["5xl"] = "5xl", e["6xl"] = "6xl", e["7xl"] = "7xl", e["8xl"] = "8xl", e["9xl"] = "9xl", e))(w || {}), L = /* @__PURE__ */ ((e) => (e.warning = "warning", e.error = "error", e.info = "info", e.success = "success", e.primary = "primary", e.brand = "brand", e.default = "default", e))(L || {});
3
- const Pe = V.extend({
1
+ import W from "vue";
2
+ var w = /* @__PURE__ */ ((e) => (e.dot = "dot", e.xs = "xs", e.sm = "sm", e.md = "base", e.base = "base", e.lg = "lg", e.xl = "xl", e["2xl"] = "2xl", e["3xl"] = "3xl", e["4xl"] = "4xl", e["5xl"] = "5xl", e["6xl"] = "6xl", e["7xl"] = "7xl", e["8xl"] = "8xl", e["9xl"] = "9xl", e))(w || {}), D = /* @__PURE__ */ ((e) => (e.warning = "warning", e.error = "error", e.info = "info", e.success = "success", e.primary = "primary", e.brand = "brand", e.default = "default", e))(D || {});
3
+ const $e = W.extend({
4
4
  name: "EBadge",
5
5
  props: {
6
6
  text: {
@@ -9,7 +9,7 @@ const Pe = V.extend({
9
9
  },
10
10
  color: {
11
11
  type: String,
12
- default: L.default
12
+ default: D.default
13
13
  },
14
14
  size: {
15
15
  type: String,
@@ -19,12 +19,12 @@ const Pe = V.extend({
19
19
  data() {
20
20
  return {
21
21
  colors: {
22
- [L.error]: "e-bg-rose-500 e-text-white",
23
- [L.info]: "e-bg-cyan-500 e-text-white",
24
- [L.warning]: "e-bg-amber-500 e-text-white",
25
- [L.primary]: "e-bg-sky-500 e-text-white",
26
- [L.default]: "e-bg-slate-300 e-text-white",
27
- [L.success]: "e-bg-lime-500 e-text-white"
22
+ [D.error]: "e-bg-rose-500 e-text-white",
23
+ [D.info]: "e-bg-cyan-500 e-text-white",
24
+ [D.warning]: "e-bg-amber-500 e-text-white",
25
+ [D.primary]: "e-bg-sky-500 e-text-white",
26
+ [D.default]: "e-bg-slate-300 e-text-white",
27
+ [D.success]: "e-bg-lime-500 e-text-white"
28
28
  },
29
29
  sizes: {
30
30
  [w.dot]: "e-w-2 e-h-2",
@@ -38,7 +38,7 @@ const Pe = V.extend({
38
38
  },
39
39
  computed: {
40
40
  badgeClasses() {
41
- const e = this.colors[this.color] || this.colors[L.default], t = this.sizes[this.size] || this.sizes[w.md];
41
+ const e = this.colors[this.color] || this.colors[D.default], t = this.sizes[this.size] || this.sizes[w.md];
42
42
  return [
43
43
  "e-flex e-items-center e-justify-center e-rounded-full",
44
44
  e,
@@ -50,7 +50,7 @@ const Pe = V.extend({
50
50
  }
51
51
  }
52
52
  });
53
- function W(e, t, r, o, s, l, i, v) {
53
+ function V(e, t, r, o, s, l, i, b) {
54
54
  var a = typeof e == "function" ? e.options : e;
55
55
  t && (a.render = t, a.staticRenderFns = r, a._compiled = !0), o && (a.functional = !0), l && (a._scopeId = "data-v-" + l);
56
56
  var n;
@@ -58,7 +58,7 @@ function W(e, t, r, o, s, l, i, v) {
58
58
  d = d || // cached call
59
59
  this.$vnode && this.$vnode.ssrContext || // stateful
60
60
  this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !d && typeof __VUE_SSR_CONTEXT__ != "undefined" && (d = __VUE_SSR_CONTEXT__), s && s.call(this, d), d && d._registeredComponents && d._registeredComponents.add(i);
61
- }, a._ssrRegister = n) : s && (n = v ? function() {
61
+ }, a._ssrRegister = n) : s && (n = b ? function() {
62
62
  s.call(
63
63
  this,
64
64
  (a.functional ? this.parent : this).$root.$options.shadowRoot
@@ -82,8 +82,8 @@ function W(e, t, r, o, s, l, i, v) {
82
82
  var Oe = function() {
83
83
  var t = this, r = t._self._c;
84
84
  return r("span", { staticClass: "e-badge", class: t.badgeClasses }, [t.showText ? r("span", [t._v(t._s(t.text))]) : t._e()]);
85
- }, Ae = [], Fe = /* @__PURE__ */ W(
86
- Pe,
85
+ }, Ae = [], Fe = /* @__PURE__ */ V(
86
+ $e,
87
87
  Oe,
88
88
  Ae,
89
89
  !1,
@@ -92,7 +92,7 @@ var Oe = function() {
92
92
  null,
93
93
  null
94
94
  );
95
- const se = Fe.exports, ze = V.extend({
95
+ const se = Fe.exports, ze = W.extend({
96
96
  name: "EAvatar",
97
97
  components: {
98
98
  Badge: se
@@ -108,7 +108,7 @@ const se = Fe.exports, ze = V.extend({
108
108
  },
109
109
  badgeColor: {
110
110
  type: String,
111
- default: L.error
111
+ default: D.error
112
112
  },
113
113
  badgeText: {
114
114
  type: String,
@@ -151,7 +151,7 @@ var Te = function() {
151
151
  }), t.showBadge ? r("div", { staticClass: "e-avatar__badge e-absolute e-top-0 e-right-0" }, [t._t("badge", function() {
152
152
  return [r("Badge", { attrs: { text: t.badgeText, color: t.badgeColor, size: t.badgeSize } })];
153
153
  })], 2) : t._e()], 2);
154
- }, je = [], Me = /* @__PURE__ */ W(
154
+ }, je = [], Le = /* @__PURE__ */ V(
155
155
  ze,
156
156
  Te,
157
157
  je,
@@ -161,8 +161,8 @@ var Te = function() {
161
161
  null,
162
162
  null
163
163
  );
164
- const Le = Me.exports;
165
- function De(e) {
164
+ const De = Le.exports;
165
+ function Me(e) {
166
166
  return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
167
167
  }
168
168
  var oe = {}, le = {}, Z = {};
@@ -418,7 +418,7 @@ var fe = ee.exports;
418
418
  return i;
419
419
  },
420
420
  default: function() {
421
- return v;
421
+ return b;
422
422
  }
423
423
  });
424
424
  const r = /* @__PURE__ */ o(fe);
@@ -434,7 +434,7 @@ var fe = ee.exports;
434
434
  function i(a) {
435
435
  return r.default.dim(a);
436
436
  }
437
- const v = {
437
+ const b = {
438
438
  info(a, n) {
439
439
  l(r.default.bold(r.default.cyan("info")), ...Array.isArray(a) ? [
440
440
  a
@@ -476,9 +476,9 @@ var fe = ee.exports;
476
476
  default: l
477
477
  };
478
478
  }
479
- function o({ version: l, from: i, to: v }) {
479
+ function o({ version: l, from: i, to: b }) {
480
480
  t.default.warn(`${i}-color-renamed`, [
481
- `As of Tailwind CSS ${l}, \`${i}\` has been renamed to \`${v}\`.`,
481
+ `As of Tailwind CSS ${l}, \`${i}\` has been renamed to \`${b}\`.`,
482
482
  "Update your configuration file to silence this warning."
483
483
  ]);
484
484
  }
@@ -823,13 +823,13 @@ var pe = {};
823
823
  });
824
824
  function t(r, ...o) {
825
825
  for (let i of o) {
826
- for (let v in i) {
826
+ for (let b in i) {
827
827
  var s;
828
- !(r == null || (s = r.hasOwnProperty) === null || s === void 0) && s.call(r, v) || (r[v] = i[v]);
828
+ !(r == null || (s = r.hasOwnProperty) === null || s === void 0) && s.call(r, b) || (r[b] = i[b]);
829
829
  }
830
- for (let v of Object.getOwnPropertySymbols(i)) {
830
+ for (let b of Object.getOwnPropertySymbols(i)) {
831
831
  var l;
832
- !(r == null || (l = r.hasOwnProperty) === null || l === void 0) && l.call(r, v) || (r[v] = i[v]);
832
+ !(r == null || (l = r.hasOwnProperty) === null || l === void 0) && l.call(r, b) || (r[b] = i[b]);
833
833
  }
834
834
  }
835
835
  return r;
@@ -868,7 +868,7 @@ var ge = {}, G = {};
868
868
  }
869
869
  t(e, {
870
870
  flagEnabled: function() {
871
- return v;
871
+ return b;
872
872
  },
873
873
  issueFlagNotices: function() {
874
874
  return n;
@@ -904,14 +904,14 @@ var ge = {}, G = {};
904
904
  "generalizedModifiers"
905
905
  ]
906
906
  };
907
- function v(g, d) {
907
+ function b(g, d) {
908
908
  if (i.future.includes(d)) {
909
- var S, h, $;
910
- return g.future === "all" || (($ = (h = g == null || (S = g.future) === null || S === void 0 ? void 0 : S[d]) !== null && h !== void 0 ? h : l[d]) !== null && $ !== void 0 ? $ : !1);
909
+ var S, h, E;
910
+ return g.future === "all" || ((E = (h = g == null || (S = g.future) === null || S === void 0 ? void 0 : S[d]) !== null && h !== void 0 ? h : l[d]) !== null && E !== void 0 ? E : !1);
911
911
  }
912
912
  if (i.experimental.includes(d)) {
913
- var P, z, T;
914
- return g.experimental === "all" || ((T = (z = g == null || (P = g.experimental) === null || P === void 0 ? void 0 : P[d]) !== null && z !== void 0 ? z : l[d]) !== null && T !== void 0 ? T : !1);
913
+ var $, z, T;
914
+ return g.experimental === "all" || ((T = (z = g == null || ($ = g.experimental) === null || $ === void 0 ? void 0 : $[d]) !== null && z !== void 0 ? z : l[d]) !== null && T !== void 0 ? T : !1);
915
915
  }
916
916
  return !1;
917
917
  }
@@ -945,19 +945,19 @@ var ge = {}, G = {};
945
945
  function o(i) {
946
946
  if (typeof WeakMap != "function")
947
947
  return null;
948
- var v = /* @__PURE__ */ new WeakMap(), a = /* @__PURE__ */ new WeakMap();
948
+ var b = /* @__PURE__ */ new WeakMap(), a = /* @__PURE__ */ new WeakMap();
949
949
  return (o = function(n) {
950
- return n ? a : v;
950
+ return n ? a : b;
951
951
  })(i);
952
952
  }
953
- function s(i, v) {
954
- if (!v && i && i.__esModule)
953
+ function s(i, b) {
954
+ if (!b && i && i.__esModule)
955
955
  return i;
956
956
  if (i === null || typeof i != "object" && typeof i != "function")
957
957
  return {
958
958
  default: i
959
959
  };
960
- var a = o(v);
960
+ var a = o(b);
961
961
  if (a && a.has(i))
962
962
  return a.get(i);
963
963
  var n = {}, p = Object.defineProperty && Object.getOwnPropertyDescriptor;
@@ -1043,13 +1043,13 @@ var ge = {}, G = {};
1043
1043
  })(),
1044
1044
  extract: (() => {
1045
1045
  let n = (() => {
1046
- var d, S, h, $, P, z, T, A, j, M;
1047
- return !((d = i.purge) === null || d === void 0) && d.extract ? i.purge.extract : !((S = i.content) === null || S === void 0) && S.extract ? i.content.extract : !((h = i.purge) === null || h === void 0 || ($ = h.extract) === null || $ === void 0) && $.DEFAULT ? i.purge.extract.DEFAULT : !((P = i.content) === null || P === void 0 || (z = P.extract) === null || z === void 0) && z.DEFAULT ? i.content.extract.DEFAULT : !((T = i.purge) === null || T === void 0 || (A = T.options) === null || A === void 0) && A.extractors ? i.purge.options.extractors : !((j = i.content) === null || j === void 0 || (M = j.options) === null || M === void 0) && M.extractors ? i.content.options.extractors : {};
1046
+ var d, S, h, E, $, z, T, A, j, L;
1047
+ return !((d = i.purge) === null || d === void 0) && d.extract ? i.purge.extract : !((S = i.content) === null || S === void 0) && S.extract ? i.content.extract : !((h = i.purge) === null || h === void 0 || (E = h.extract) === null || E === void 0) && E.DEFAULT ? i.purge.extract.DEFAULT : !(($ = i.content) === null || $ === void 0 || (z = $.extract) === null || z === void 0) && z.DEFAULT ? i.content.extract.DEFAULT : !((T = i.purge) === null || T === void 0 || (A = T.options) === null || A === void 0) && A.extractors ? i.purge.options.extractors : !((j = i.content) === null || j === void 0 || (L = j.options) === null || L === void 0) && L.extractors ? i.content.options.extractors : {};
1048
1048
  })(), p = {}, g = (() => {
1049
- var d, S, h, $;
1049
+ var d, S, h, E;
1050
1050
  if (!((d = i.purge) === null || d === void 0 || (S = d.options) === null || S === void 0) && S.defaultExtractor)
1051
1051
  return i.purge.options.defaultExtractor;
1052
- if (!((h = i.content) === null || h === void 0 || ($ = h.options) === null || $ === void 0) && $.defaultExtractor)
1052
+ if (!((h = i.content) === null || h === void 0 || (E = h.options) === null || E === void 0) && E.defaultExtractor)
1053
1053
  return i.content.options.defaultExtractor;
1054
1054
  })();
1055
1055
  if (g !== void 0 && (p.DEFAULT = g), typeof n == "function")
@@ -1064,8 +1064,8 @@ var ge = {}, G = {};
1064
1064
  })(),
1065
1065
  transform: (() => {
1066
1066
  let n = (() => {
1067
- var g, d, S, h, $, P;
1068
- return !((g = i.purge) === null || g === void 0) && g.transform ? i.purge.transform : !((d = i.content) === null || d === void 0) && d.transform ? i.content.transform : !((S = i.purge) === null || S === void 0 || (h = S.transform) === null || h === void 0) && h.DEFAULT ? i.purge.transform.DEFAULT : !(($ = i.content) === null || $ === void 0 || (P = $.transform) === null || P === void 0) && P.DEFAULT ? i.content.transform.DEFAULT : {};
1067
+ var g, d, S, h, E, $;
1068
+ return !((g = i.purge) === null || g === void 0) && g.transform ? i.purge.transform : !((d = i.content) === null || d === void 0) && d.transform ? i.content.transform : !((S = i.purge) === null || S === void 0 || (h = S.transform) === null || h === void 0) && h.DEFAULT ? i.purge.transform.DEFAULT : !((E = i.content) === null || E === void 0 || ($ = E.transform) === null || $ === void 0) && $.DEFAULT ? i.content.transform.DEFAULT : {};
1069
1069
  })(), p = {};
1070
1070
  return typeof n == "function" && (p.DEFAULT = n), typeof n == "object" && n !== null && Object.assign(p, n), p;
1071
1071
  })()
@@ -1115,7 +1115,7 @@ var ye = {};
1115
1115
  ])) : r;
1116
1116
  }
1117
1117
  })(ye);
1118
- var ve = {}, be = {};
1118
+ var be = {}, ve = {};
1119
1119
  (function(e) {
1120
1120
  Object.defineProperty(e, "__esModule", {
1121
1121
  value: !0
@@ -1128,7 +1128,7 @@ var ve = {}, be = {};
1128
1128
  function t(r) {
1129
1129
  return r.replace(/\\,/g, "\\2c ");
1130
1130
  }
1131
- })(be);
1131
+ })(ve);
1132
1132
  var te = {}, re = {}, xe = {};
1133
1133
  (function(e) {
1134
1134
  Object.defineProperty(e, "__esModule", {
@@ -1886,11 +1886,11 @@ var te = {}, re = {}, xe = {};
1886
1886
  Object.defineProperty(e, "__esModule", {
1887
1887
  value: !0
1888
1888
  });
1889
- function t(h, $) {
1890
- for (var P in $)
1891
- Object.defineProperty(h, P, {
1889
+ function t(h, E) {
1890
+ for (var $ in E)
1891
+ Object.defineProperty(h, $, {
1892
1892
  enumerable: !0,
1893
- get: $[P]
1893
+ get: E[$]
1894
1894
  });
1895
1895
  }
1896
1896
  t(e, {
@@ -1907,9 +1907,9 @@ var te = {}, re = {}, xe = {};
1907
1907
  default: h
1908
1908
  };
1909
1909
  }
1910
- let s = /^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i, l = /^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i, i = /(?:\d+|\d*\.\d+)%?/, v = /(?:\s*,\s*|\s+)/, a = /\s*[,/]\s*/, n = /var\(--(?:[^ )]*?)\)/, p = new RegExp(`^(rgba?)\\(\\s*(${i.source}|${n.source})(?:${v.source}(${i.source}|${n.source}))?(?:${v.source}(${i.source}|${n.source}))?(?:${a.source}(${i.source}|${n.source}))?\\s*\\)$`), g = new RegExp(`^(hsla?)\\(\\s*((?:${i.source})(?:deg|rad|grad|turn)?|${n.source})(?:${v.source}(${i.source}|${n.source}))?(?:${v.source}(${i.source}|${n.source}))?(?:${a.source}(${i.source}|${n.source}))?\\s*\\)$`);
1911
- function d(h, { loose: $ = !1 } = {}) {
1912
- var P, z;
1910
+ let s = /^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i, l = /^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i, i = /(?:\d+|\d*\.\d+)%?/, b = /(?:\s*,\s*|\s+)/, a = /\s*[,/]\s*/, n = /var\(--(?:[^ )]*?)\)/, p = new RegExp(`^(rgba?)\\(\\s*(${i.source}|${n.source})(?:${b.source}(${i.source}|${n.source}))?(?:${b.source}(${i.source}|${n.source}))?(?:${a.source}(${i.source}|${n.source}))?\\s*\\)$`), g = new RegExp(`^(hsla?)\\(\\s*((?:${i.source})(?:deg|rad|grad|turn)?|${n.source})(?:${b.source}(${i.source}|${n.source}))?(?:${b.source}(${i.source}|${n.source}))?(?:${a.source}(${i.source}|${n.source}))?\\s*\\)$`);
1911
+ function d(h, { loose: E = !1 } = {}) {
1912
+ var $, z;
1913
1913
  if (typeof h != "string")
1914
1914
  return null;
1915
1915
  if (h = h.trim(), h === "transparent")
@@ -1951,26 +1951,26 @@ var te = {}, re = {}, xe = {};
1951
1951
  let j = (A = h.match(p)) !== null && A !== void 0 ? A : h.match(g);
1952
1952
  if (j === null)
1953
1953
  return null;
1954
- let M = [
1954
+ let L = [
1955
1955
  j[2],
1956
1956
  j[3],
1957
1957
  j[4]
1958
1958
  ].filter(Boolean).map((R) => R.toString());
1959
- return M.length === 2 && M[0].startsWith("var(") ? {
1959
+ return L.length === 2 && L[0].startsWith("var(") ? {
1960
1960
  mode: j[1],
1961
1961
  color: [
1962
- M[0]
1962
+ L[0]
1963
1963
  ],
1964
- alpha: M[1]
1965
- } : !$ && M.length !== 3 || M.length < 3 && !M.some((R) => /^var\(.*?\)$/.test(R)) ? null : {
1964
+ alpha: L[1]
1965
+ } : !E && L.length !== 3 || L.length < 3 && !L.some((R) => /^var\(.*?\)$/.test(R)) ? null : {
1966
1966
  mode: j[1],
1967
- color: M,
1968
- alpha: (P = j[5]) === null || P === void 0 || (z = P.toString) === null || z === void 0 ? void 0 : z.call(P)
1967
+ color: L,
1968
+ alpha: ($ = j[5]) === null || $ === void 0 || (z = $.toString) === null || z === void 0 ? void 0 : z.call($)
1969
1969
  };
1970
1970
  }
1971
- function S({ mode: h, color: $, alpha: P }) {
1972
- let z = P !== void 0;
1973
- return h === "rgba" || h === "hsla" ? `${h}(${$.join(", ")}${z ? `, ${P}` : ""})` : `${h}(${$.join(" ")}${z ? ` / ${P}` : ""})`;
1971
+ function S({ mode: h, color: E, alpha: $ }) {
1972
+ let z = $ !== void 0;
1973
+ return h === "rgba" || h === "hsla" ? `${h}(${E.join(", ")}${z ? `, ${$}` : ""})` : `${h}(${E.join(" ")}${z ? ` / ${$}` : ""})`;
1974
1974
  }
1975
1975
  })(re);
1976
1976
  (function(e) {
@@ -1978,10 +1978,10 @@ var te = {}, re = {}, xe = {};
1978
1978
  value: !0
1979
1979
  });
1980
1980
  function t(l, i) {
1981
- for (var v in i)
1982
- Object.defineProperty(l, v, {
1981
+ for (var b in i)
1982
+ Object.defineProperty(l, b, {
1983
1983
  enumerable: !0,
1984
- get: i[v]
1984
+ get: i[b]
1985
1985
  });
1986
1986
  }
1987
1987
  t(e, {
@@ -1993,7 +1993,7 @@ var te = {}, re = {}, xe = {};
1993
1993
  }
1994
1994
  });
1995
1995
  const r = re;
1996
- function o(l, i, v) {
1996
+ function o(l, i, b) {
1997
1997
  if (typeof l == "function")
1998
1998
  return l({
1999
1999
  opacityValue: i
@@ -2001,21 +2001,21 @@ var te = {}, re = {}, xe = {};
2001
2001
  let a = (0, r.parseColor)(l, {
2002
2002
  loose: !0
2003
2003
  });
2004
- return a === null ? v : (0, r.formatColor)({
2004
+ return a === null ? b : (0, r.formatColor)({
2005
2005
  ...a,
2006
2006
  alpha: i
2007
2007
  });
2008
2008
  }
2009
- function s({ color: l, property: i, variable: v }) {
2009
+ function s({ color: l, property: i, variable: b }) {
2010
2010
  let a = [].concat(i);
2011
2011
  if (typeof l == "function")
2012
2012
  return {
2013
- [v]: "1",
2013
+ [b]: "1",
2014
2014
  ...Object.fromEntries(a.map((p) => [
2015
2015
  p,
2016
2016
  l({
2017
- opacityVariable: v,
2018
- opacityValue: `var(${v})`
2017
+ opacityVariable: b,
2018
+ opacityValue: `var(${b})`
2019
2019
  })
2020
2020
  ]))
2021
2021
  };
@@ -2027,12 +2027,12 @@ var te = {}, re = {}, xe = {};
2027
2027
  p,
2028
2028
  l
2029
2029
  ])) : {
2030
- [v]: "1",
2030
+ [b]: "1",
2031
2031
  ...Object.fromEntries(a.map((p) => [
2032
2032
  p,
2033
2033
  (0, r.formatColor)({
2034
2034
  ...n,
2035
- alpha: `var(${v})`
2035
+ alpha: `var(${b})`
2036
2036
  })
2037
2037
  ]))
2038
2038
  };
@@ -2049,10 +2049,10 @@ var ne = {}, _e = {}, X = {};
2049
2049
  }
2050
2050
  });
2051
2051
  function t(r, o) {
2052
- let s = [], l = [], i = 0, v = !1;
2052
+ let s = [], l = [], i = 0, b = !1;
2053
2053
  for (let a = 0; a < r.length; a++) {
2054
2054
  let n = r[a];
2055
- s.length === 0 && n === o[0] && !v && (o.length === 1 || r.slice(a, a + o.length) === o) && (l.push(r.slice(i, a)), i = a + o.length), v ? v = !1 : n === "\\" && (v = !0), n === "(" || n === "[" || n === "{" ? s.push(n) : (n === ")" && s[s.length - 1] === "(" || n === "]" && s[s.length - 1] === "[" || n === "}" && s[s.length - 1] === "{") && s.pop();
2055
+ s.length === 0 && n === o[0] && !b && (o.length === 1 || r.slice(a, a + o.length) === o) && (l.push(r.slice(i, a)), i = a + o.length), b ? b = !1 : n === "\\" && (b = !0), n === "(" || n === "[" || n === "{" ? s.push(n) : (n === ")" && s[s.length - 1] === "(" || n === "]" && s[s.length - 1] === "[" || n === "}" && s[s.length - 1] === "{") && s.pop();
2056
2056
  }
2057
2057
  return l.push(r.slice(i)), l;
2058
2058
  }
@@ -2073,7 +2073,7 @@ var ne = {}, _e = {}, X = {};
2073
2073
  return i;
2074
2074
  },
2075
2075
  formatBoxShadowValue: function() {
2076
- return v;
2076
+ return b;
2077
2077
  }
2078
2078
  });
2079
2079
  const r = X;
@@ -2089,12 +2089,12 @@ var ne = {}, _e = {}, X = {};
2089
2089
  let g = p.trim(), d = {
2090
2090
  raw: g
2091
2091
  }, S = g.split(s), h = /* @__PURE__ */ new Set();
2092
- for (let $ of S)
2093
- l.lastIndex = 0, !h.has("KEYWORD") && o.has($) ? (d.keyword = $, h.add("KEYWORD")) : l.test($) ? h.has("X") ? h.has("Y") ? h.has("BLUR") ? h.has("SPREAD") || (d.spread = $, h.add("SPREAD")) : (d.blur = $, h.add("BLUR")) : (d.y = $, h.add("Y")) : (d.x = $, h.add("X")) : d.color ? (d.unknown || (d.unknown = []), d.unknown.push($)) : d.color = $;
2092
+ for (let E of S)
2093
+ l.lastIndex = 0, !h.has("KEYWORD") && o.has(E) ? (d.keyword = E, h.add("KEYWORD")) : l.test(E) ? h.has("X") ? h.has("Y") ? h.has("BLUR") ? h.has("SPREAD") || (d.spread = E, h.add("SPREAD")) : (d.blur = E, h.add("BLUR")) : (d.y = E, h.add("Y")) : (d.x = E, h.add("X")) : d.color ? (d.unknown || (d.unknown = []), d.unknown.push(E)) : d.color = E;
2094
2094
  return d.valid = d.x !== void 0 && d.y !== void 0, d;
2095
2095
  });
2096
2096
  }
2097
- function v(a) {
2097
+ function b(a) {
2098
2098
  return a.map((n) => n.valid ? [
2099
2099
  n.keyword,
2100
2100
  n.x,
@@ -2130,7 +2130,7 @@ var ne = {}, _e = {}, X = {};
2130
2130
  return S;
2131
2131
  },
2132
2132
  length: function() {
2133
- return P;
2133
+ return $;
2134
2134
  },
2135
2135
  lineWidth: function() {
2136
2136
  return T;
@@ -2142,7 +2142,7 @@ var ne = {}, _e = {}, X = {};
2142
2142
  return j;
2143
2143
  },
2144
2144
  image: function() {
2145
- return M;
2145
+ return L;
2146
2146
  },
2147
2147
  gradient: function() {
2148
2148
  return B;
@@ -2157,7 +2157,7 @@ var ne = {}, _e = {}, X = {};
2157
2157
  return c;
2158
2158
  },
2159
2159
  absoluteSize: function() {
2160
- return b;
2160
+ return v;
2161
2161
  },
2162
2162
  relativeSize: function() {
2163
2163
  return C;
@@ -2173,14 +2173,14 @@ var ne = {}, _e = {}, X = {};
2173
2173
  function i(u) {
2174
2174
  return l.some((x) => new RegExp(`^${x}\\(.*\\)`).test(u));
2175
2175
  }
2176
- const v = "--tw-placeholder", a = new RegExp(v, "g");
2176
+ const b = "--tw-placeholder", a = new RegExp(b, "g");
2177
2177
  function n(u, x = !0) {
2178
- return u.startsWith("--") ? `var(${u})` : u.includes("url(") ? u.split(/(url\(.*?\))/g).filter(Boolean).map((O) => /^url\(.*?\)$/.test(O) ? O : n(O, !1)).join("") : (u = u.replace(/([^\\])_+/g, (O, E) => E + " ".repeat(O.length - 1)).replace(/^_/g, " ").replace(/\\_/g, "_"), x && (u = u.trim()), u = p(u), u);
2178
+ return u.startsWith("--") ? `var(${u})` : u.includes("url(") ? u.split(/(url\(.*?\))/g).filter(Boolean).map((O) => /^url\(.*?\)$/.test(O) ? O : n(O, !1)).join("") : (u = u.replace(/([^\\])_+/g, (O, P) => P + " ".repeat(O.length - 1)).replace(/^_/g, " ").replace(/\\_/g, "_"), x && (u = u.trim()), u = p(u), u);
2179
2179
  }
2180
2180
  function p(u) {
2181
2181
  return u.replace(/(calc|min|max|clamp)\(.+\)/g, (x) => {
2182
2182
  let O = [];
2183
- return x.replace(/var\((--.+?)[,)]/g, (E, I) => (O.push(I), E.replace(I, v))).replace(/(-?\d*\.?\d(?!\b-\d.+[,)](?![^+\-/*])\D)(?:%|[a-z]+)?|\))([+\-/*])/g, "$1 $2 ").replace(a, () => O.shift());
2183
+ return x.replace(/var\((--.+?)[,)]/g, (P, I) => (O.push(I), P.replace(I, b))).replace(/(-?\d*\.?\d(?!\b-\d.+[,)](?![^+\-/*])\D)(?:%|[a-z]+)?|\))([+\-/*])/g, "$1 $2 ").replace(a, () => O.shift());
2184
2184
  });
2185
2185
  }
2186
2186
  function g(u) {
@@ -2192,7 +2192,7 @@ var ne = {}, _e = {}, X = {};
2192
2192
  function S(u) {
2193
2193
  return u.endsWith("%") && d(u.slice(0, -1)) || i(u);
2194
2194
  }
2195
- let $ = `(?:${[
2195
+ let E = `(?:${[
2196
2196
  "cm",
2197
2197
  "mm",
2198
2198
  "Q",
@@ -2225,8 +2225,8 @@ var ne = {}, _e = {}, X = {};
2225
2225
  "cqmin",
2226
2226
  "cqmax"
2227
2227
  ].join("|")})`;
2228
- function P(u) {
2229
- return u === "0" || new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${$}$`).test(u) || i(u);
2228
+ function $(u) {
2229
+ return u === "0" || new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${E}$`).test(u) || i(u);
2230
2230
  }
2231
2231
  let z = /* @__PURE__ */ new Set([
2232
2232
  "thin",
@@ -2245,18 +2245,18 @@ var ne = {}, _e = {}, X = {};
2245
2245
  }
2246
2246
  function j(u) {
2247
2247
  let x = 0;
2248
- return (0, s.splitAtTopLevelOnly)(u, "_").every((E) => (E = n(E), E.startsWith("var(") ? !0 : (0, r.parseColor)(E, {
2248
+ return (0, s.splitAtTopLevelOnly)(u, "_").every((P) => (P = n(P), P.startsWith("var(") ? !0 : (0, r.parseColor)(P, {
2249
2249
  loose: !0
2250
2250
  }) !== null ? (x++, !0) : !1)) ? x > 0 : !1;
2251
2251
  }
2252
- function M(u) {
2252
+ function L(u) {
2253
2253
  let x = 0;
2254
- return (0, s.splitAtTopLevelOnly)(u, ",").every((E) => (E = n(E), E.startsWith("var(") ? !0 : g(E) || B(E) || [
2254
+ return (0, s.splitAtTopLevelOnly)(u, ",").every((P) => (P = n(P), P.startsWith("var(") ? !0 : g(P) || B(P) || [
2255
2255
  "element(",
2256
2256
  "image(",
2257
2257
  "cross-fade(",
2258
2258
  "image-set("
2259
- ].some((I) => E.startsWith(I)) ? (x++, !0) : !1)) ? x > 0 : !1;
2259
+ ].some((I) => P.startsWith(I)) ? (x++, !0) : !1)) ? x > 0 : !1;
2260
2260
  }
2261
2261
  let R = /* @__PURE__ */ new Set([
2262
2262
  "conic-gradient",
@@ -2282,11 +2282,11 @@ var ne = {}, _e = {}, X = {};
2282
2282
  ]);
2283
2283
  function m(u) {
2284
2284
  let x = 0;
2285
- return (0, s.splitAtTopLevelOnly)(u, "_").every((E) => (E = n(E), E.startsWith("var(") ? !0 : N.has(E) || P(E) || S(E) ? (x++, !0) : !1)) ? x > 0 : !1;
2285
+ return (0, s.splitAtTopLevelOnly)(u, "_").every((P) => (P = n(P), P.startsWith("var(") ? !0 : N.has(P) || $(P) || S(P) ? (x++, !0) : !1)) ? x > 0 : !1;
2286
2286
  }
2287
2287
  function k(u) {
2288
2288
  let x = 0;
2289
- return (0, s.splitAtTopLevelOnly)(u, ",").every((E) => (E = n(E), E.startsWith("var(") ? !0 : E.includes(" ") && !/(['"])([^"']+)\1/g.test(E) || /^\d/g.test(E) ? !1 : (x++, !0))) ? x > 0 : !1;
2289
+ return (0, s.splitAtTopLevelOnly)(u, ",").every((P) => (P = n(P), P.startsWith("var(") ? !0 : P.includes(" ") && !/(['"])([^"']+)\1/g.test(P) || /^\d/g.test(P) ? !1 : (x++, !0))) ? x > 0 : !1;
2290
2290
  }
2291
2291
  let _ = /* @__PURE__ */ new Set([
2292
2292
  "serif",
@@ -2316,7 +2316,7 @@ var ne = {}, _e = {}, X = {};
2316
2316
  "x-large",
2317
2317
  "xxx-large"
2318
2318
  ]);
2319
- function b(u) {
2319
+ function v(u) {
2320
2320
  return y.has(u);
2321
2321
  }
2322
2322
  let f = /* @__PURE__ */ new Set([
@@ -2344,8 +2344,8 @@ var we = {};
2344
2344
  "contain"
2345
2345
  ];
2346
2346
  return (0, r.splitAtTopLevelOnly)(s, ",").every((i) => {
2347
- let v = (0, r.splitAtTopLevelOnly)(i, "_").filter(Boolean);
2348
- return v.length === 1 && l.includes(v[0]) ? !0 : v.length !== 1 && v.length !== 2 ? !1 : v.every((a) => (0, t.length)(a) || (0, t.percentage)(a) || a === "auto");
2347
+ let b = (0, r.splitAtTopLevelOnly)(i, "_").filter(Boolean);
2348
+ return b.length === 1 && l.includes(b[0]) ? !0 : b.length !== 1 && b.length !== 2 ? !1 : b.every((a) => (0, t.length)(a) || (0, t.percentage)(a) || a === "auto");
2349
2349
  });
2350
2350
  }
2351
2351
  })(we);
@@ -2368,7 +2368,7 @@ var we = {};
2368
2368
  return d;
2369
2369
  },
2370
2370
  parseColorFormat: function() {
2371
- return $;
2371
+ return E;
2372
2372
  },
2373
2373
  asColor: function() {
2374
2374
  return z;
@@ -2386,7 +2386,7 @@ var we = {};
2386
2386
  return N;
2387
2387
  }
2388
2388
  });
2389
- const r = /* @__PURE__ */ a(be), o = te, s = ne, l = /* @__PURE__ */ a(Z), i = we, v = G;
2389
+ const r = /* @__PURE__ */ a(ve), o = te, s = ne, l = /* @__PURE__ */ a(Z), i = we, b = G;
2390
2390
  function a(m) {
2391
2391
  return m && m.__esModule ? m : {
2392
2392
  default: m
@@ -2434,27 +2434,27 @@ var we = {};
2434
2434
  m.slice(k + 1)
2435
2435
  ];
2436
2436
  }
2437
- function $(m) {
2437
+ function E(m) {
2438
2438
  if (typeof m == "string" && m.includes("<alpha-value>")) {
2439
2439
  let k = m;
2440
2440
  return ({ opacityValue: _ = 1 }) => k.replace("<alpha-value>", _);
2441
2441
  }
2442
2442
  return m;
2443
2443
  }
2444
- function P(m) {
2444
+ function $(m) {
2445
2445
  return (0, s.normalize)(m.slice(1, -1));
2446
2446
  }
2447
2447
  function z(m, k = {}, { tailwindConfig: _ = {} } = {}) {
2448
2448
  var c;
2449
2449
  if (((c = k.values) === null || c === void 0 ? void 0 : c[m]) !== void 0) {
2450
2450
  var y;
2451
- return $((y = k.values) === null || y === void 0 ? void 0 : y[m]);
2451
+ return E((y = k.values) === null || y === void 0 ? void 0 : y[m]);
2452
2452
  }
2453
- let [b, f] = h(m);
2453
+ let [v, f] = h(m);
2454
2454
  if (f !== void 0) {
2455
2455
  var C, u, x, O;
2456
- let E = (O = (C = k.values) === null || C === void 0 ? void 0 : C[b]) !== null && O !== void 0 ? O : S(b) ? b.slice(1, -1) : void 0;
2457
- return E === void 0 ? void 0 : (E = $(E), S(f) ? (0, o.withAlphaValue)(E, P(f)) : ((u = _.theme) === null || u === void 0 || (x = u.opacity) === null || x === void 0 ? void 0 : x[f]) === void 0 ? void 0 : (0, o.withAlphaValue)(E, _.theme.opacity[f]));
2456
+ let P = (O = (C = k.values) === null || C === void 0 ? void 0 : C[v]) !== null && O !== void 0 ? O : S(v) ? v.slice(1, -1) : void 0;
2457
+ return P === void 0 ? void 0 : (P = E(P), S(f) ? (0, o.withAlphaValue)(P, $(f)) : ((u = _.theme) === null || u === void 0 || (x = u.opacity) === null || x === void 0 ? void 0 : x[f]) === void 0 ? void 0 : (0, o.withAlphaValue)(P, _.theme.opacity[f]));
2458
2458
  }
2459
2459
  return d(m, k, {
2460
2460
  validate: s.color
@@ -2486,7 +2486,7 @@ var we = {};
2486
2486
  "relative-size": A(s.relativeSize),
2487
2487
  shadow: A(s.shadow),
2488
2488
  size: A(i.backgroundSize)
2489
- }, M = Object.keys(j);
2489
+ }, L = Object.keys(j);
2490
2490
  function R(m, k) {
2491
2491
  let _ = m.indexOf(k);
2492
2492
  return _ === -1 ? [
@@ -2499,24 +2499,24 @@ var we = {};
2499
2499
  }
2500
2500
  function B(m, k, _, c) {
2501
2501
  if (_.values && k in _.values)
2502
- for (let { type: b } of m != null ? m : []) {
2503
- let f = j[b](k, _, {
2502
+ for (let { type: v } of m != null ? m : []) {
2503
+ let f = j[v](k, _, {
2504
2504
  tailwindConfig: c
2505
2505
  });
2506
2506
  if (f !== void 0)
2507
2507
  return [
2508
2508
  f,
2509
- b,
2509
+ v,
2510
2510
  null
2511
2511
  ];
2512
2512
  }
2513
2513
  if (S(k)) {
2514
- let b = k.slice(1, -1), [f, C] = R(b, ":");
2514
+ let v = k.slice(1, -1), [f, C] = R(v, ":");
2515
2515
  if (!/^[\w-_]+$/g.test(f))
2516
- C = b;
2517
- else if (f !== void 0 && !M.includes(f))
2516
+ C = v;
2517
+ else if (f !== void 0 && !L.includes(f))
2518
2518
  return [];
2519
- if (C.length > 0 && M.includes(f))
2519
+ if (C.length > 0 && L.includes(f))
2520
2520
  return [
2521
2521
  d(`[${C}]`, _),
2522
2522
  f,
@@ -2524,29 +2524,29 @@ var we = {};
2524
2524
  ];
2525
2525
  }
2526
2526
  let y = N(m, k, _, c);
2527
- for (let b of y)
2528
- return b;
2527
+ for (let v of y)
2528
+ return v;
2529
2529
  return [];
2530
2530
  }
2531
2531
  function* N(m, k, _, c) {
2532
- let y = (0, v.flagEnabled)(c, "generalizedModifiers"), [b, f] = h(k);
2533
- if (y && _.modifiers != null && (_.modifiers === "any" || typeof _.modifiers == "object" && (f && S(f) || f in _.modifiers)) || (b = k, f = void 0), f !== void 0 && b === "" && (b = "DEFAULT"), f !== void 0 && typeof _.modifiers == "object") {
2532
+ let y = (0, b.flagEnabled)(c, "generalizedModifiers"), [v, f] = h(k);
2533
+ if (y && _.modifiers != null && (_.modifiers === "any" || typeof _.modifiers == "object" && (f && S(f) || f in _.modifiers)) || (v = k, f = void 0), f !== void 0 && v === "" && (v = "DEFAULT"), f !== void 0 && typeof _.modifiers == "object") {
2534
2534
  var u, x;
2535
2535
  let O = (x = (u = _.modifiers) === null || u === void 0 ? void 0 : u[f]) !== null && x !== void 0 ? x : null;
2536
- O !== null ? f = O : S(f) && (f = P(f));
2536
+ O !== null ? f = O : S(f) && (f = $(f));
2537
2537
  }
2538
2538
  for (let { type: O } of m != null ? m : []) {
2539
- let E = j[O](b, _, {
2539
+ let P = j[O](v, _, {
2540
2540
  tailwindConfig: c
2541
2541
  });
2542
- E !== void 0 && (yield [
2543
- E,
2542
+ P !== void 0 && (yield [
2543
+ P,
2544
2544
  O,
2545
2545
  f != null ? f : null
2546
2546
  ]);
2547
2547
  }
2548
2548
  }
2549
- })(ve);
2549
+ })(be);
2550
2550
  var Se = {};
2551
2551
  (function(e) {
2552
2552
  Object.defineProperty(e, "__esModule", {
@@ -2570,7 +2570,7 @@ var Se = {};
2570
2570
  return _;
2571
2571
  }
2572
2572
  });
2573
- const t = /* @__PURE__ */ S(Z), r = /* @__PURE__ */ S(ue), o = /* @__PURE__ */ S(ce), s = /* @__PURE__ */ S(Q), l = pe, i = me, v = ge, a = /* @__PURE__ */ S(he), n = ye, p = ve, g = te, d = /* @__PURE__ */ S(Se);
2573
+ const t = /* @__PURE__ */ S(Z), r = /* @__PURE__ */ S(ue), o = /* @__PURE__ */ S(ce), s = /* @__PURE__ */ S(Q), l = pe, i = me, b = ge, a = /* @__PURE__ */ S(he), n = ye, p = be, g = te, d = /* @__PURE__ */ S(Se);
2574
2574
  function S(c) {
2575
2575
  return c && c.__esModule ? c : {
2576
2576
  default: c
@@ -2579,27 +2579,27 @@ var Se = {};
2579
2579
  function h(c) {
2580
2580
  return typeof c == "function";
2581
2581
  }
2582
- function $(c, ...y) {
2583
- let b = y.pop();
2582
+ function E(c, ...y) {
2583
+ let v = y.pop();
2584
2584
  for (let f of y)
2585
2585
  for (let C in f) {
2586
- let u = b(c[C], f[C]);
2587
- u === void 0 ? (0, a.default)(c[C]) && (0, a.default)(f[C]) ? c[C] = $({}, c[C], f[C], b) : c[C] = f[C] : c[C] = u;
2586
+ let u = v(c[C], f[C]);
2587
+ u === void 0 ? (0, a.default)(c[C]) && (0, a.default)(f[C]) ? c[C] = E({}, c[C], f[C], v) : c[C] = f[C] : c[C] = u;
2588
2588
  }
2589
2589
  return c;
2590
2590
  }
2591
- const P = {
2591
+ const $ = {
2592
2592
  colors: s.default,
2593
2593
  negative(c) {
2594
- return Object.keys(c).filter((y) => c[y] !== "0").reduce((y, b) => {
2595
- let f = (0, t.default)(c[b]);
2596
- return f !== void 0 && (y[`-${b}`] = f), y;
2594
+ return Object.keys(c).filter((y) => c[y] !== "0").reduce((y, v) => {
2595
+ let f = (0, t.default)(c[v]);
2596
+ return f !== void 0 && (y[`-${v}`] = f), y;
2597
2597
  }, {});
2598
2598
  },
2599
2599
  breakpoints(c) {
2600
- return Object.keys(c).filter((y) => typeof c[y] == "string").reduce((y, b) => ({
2600
+ return Object.keys(c).filter((y) => typeof c[y] == "string").reduce((y, v) => ({
2601
2601
  ...y,
2602
- [`screen-${b}`]: c[b]
2602
+ [`screen-${v}`]: c[v]
2603
2603
  }), {});
2604
2604
  }
2605
2605
  };
@@ -2607,7 +2607,7 @@ var Se = {};
2607
2607
  return h(c) ? c(...y) : c;
2608
2608
  }
2609
2609
  function T(c) {
2610
- return c.reduce((y, { extend: b }) => $(y, b, (f, C) => f === void 0 ? [
2610
+ return c.reduce((y, { extend: v }) => E(y, v, (f, C) => f === void 0 ? [
2611
2611
  C
2612
2612
  ] : Array.isArray(f) ? [
2613
2613
  C,
@@ -2619,7 +2619,7 @@ var Se = {};
2619
2619
  }
2620
2620
  function A(c) {
2621
2621
  return {
2622
- ...c.reduce((y, b) => (0, l.defaults)(y, b), {}),
2622
+ ...c.reduce((y, v) => (0, l.defaults)(y, v), {}),
2623
2623
  // In order to resolve n config objects, we combine all of their `extend` properties
2624
2624
  // into arrays instead of objects so they aren't overridden.
2625
2625
  extend: T(c)
@@ -2636,9 +2636,9 @@ var Se = {};
2636
2636
  if (Array.isArray(y))
2637
2637
  return y;
2638
2638
  }
2639
- function M({ extend: c, ...y }) {
2640
- return $(y, c, (b, f) => !h(b) && !f.some(h) ? $({}, b, ...f, j) : (C, u) => $({}, ...[
2641
- b,
2639
+ function L({ extend: c, ...y }) {
2640
+ return E(y, c, (v, f) => !h(v) && !f.some(h) ? E({}, v, ...f, j) : (C, u) => E({}, ...[
2641
+ v,
2642
2642
  ...f
2643
2643
  ].map((x) => z(x, C, u)), j));
2644
2644
  }
@@ -2646,18 +2646,18 @@ var Se = {};
2646
2646
  let y = (0, i.toPath)(c);
2647
2647
  if (y.length === 0 || (yield y, Array.isArray(c)))
2648
2648
  return;
2649
- let b = /^(.*?)\s*\/\s*([^/]+)$/, f = c.match(b);
2649
+ let v = /^(.*?)\s*\/\s*([^/]+)$/, f = c.match(v);
2650
2650
  if (f !== null) {
2651
2651
  let [, C, u] = f, x = (0, i.toPath)(C);
2652
2652
  x.alpha = u, yield x;
2653
2653
  }
2654
2654
  }
2655
2655
  function B(c) {
2656
- const y = (b, f) => {
2657
- for (const C of R(b)) {
2656
+ const y = (v, f) => {
2657
+ for (const C of R(v)) {
2658
2658
  let u = 0, x = c;
2659
2659
  for (; x != null && u < C.length; )
2660
- x = x[C[u++]], x = h(x) && (C.alpha === void 0 || u <= C.length - 1) ? x(y, P) : x;
2660
+ x = x[C[u++]], x = h(x) && (C.alpha === void 0 || u <= C.length - 1) ? x(y, $) : x;
2661
2661
  if (x !== void 0) {
2662
2662
  if (C.alpha !== void 0) {
2663
2663
  let O = (0, p.parseColorFormat)(x);
@@ -2670,18 +2670,18 @@ var Se = {};
2670
2670
  };
2671
2671
  return Object.assign(y, {
2672
2672
  theme: y,
2673
- ...P
2674
- }), Object.keys(c).reduce((b, f) => (b[f] = h(c[f]) ? c[f](y, P) : c[f], b), {});
2673
+ ...$
2674
+ }), Object.keys(c).reduce((v, f) => (v[f] = h(c[f]) ? c[f](y, $) : c[f], v), {});
2675
2675
  }
2676
2676
  function N(c) {
2677
2677
  let y = [];
2678
- return c.forEach((b) => {
2678
+ return c.forEach((v) => {
2679
2679
  y = [
2680
2680
  ...y,
2681
- b
2681
+ v
2682
2682
  ];
2683
2683
  var f;
2684
- const C = (f = b == null ? void 0 : b.plugins) !== null && f !== void 0 ? f : [];
2684
+ const C = (f = v == null ? void 0 : v.plugins) !== null && f !== void 0 ? f : [];
2685
2685
  C.length !== 0 && C.forEach((u) => {
2686
2686
  u.__isOptionsFunction && (u = u());
2687
2687
  var x;
@@ -2697,15 +2697,15 @@ var Se = {};
2697
2697
  function m(c) {
2698
2698
  return [
2699
2699
  ...c
2700
- ].reduceRight((b, f) => h(f) ? f({
2701
- corePlugins: b
2702
- }) : (0, o.default)(f, b), r.default);
2700
+ ].reduceRight((v, f) => h(f) ? f({
2701
+ corePlugins: v
2702
+ }) : (0, o.default)(f, v), r.default);
2703
2703
  }
2704
2704
  function k(c) {
2705
2705
  return [
2706
2706
  ...c
2707
- ].reduceRight((b, f) => [
2708
- ...b,
2707
+ ].reduceRight((v, f) => [
2708
+ ...v,
2709
2709
  ...f
2710
2710
  ], []);
2711
2711
  }
@@ -2718,9 +2718,9 @@ var Se = {};
2718
2718
  separator: ":"
2719
2719
  }
2720
2720
  ];
2721
- var b, f;
2722
- return (0, v.normalizeConfig)((0, l.defaults)({
2723
- theme: B(M(A(y.map((C) => (b = C == null ? void 0 : C.theme) !== null && b !== void 0 ? b : {})))),
2721
+ var v, f;
2722
+ return (0, b.normalizeConfig)((0, l.defaults)({
2723
+ theme: B(L(A(y.map((C) => (v = C == null ? void 0 : C.theme) !== null && v !== void 0 ? v : {})))),
2724
2724
  corePlugins: m(y.map((C) => C.corePlugins)),
2725
2725
  plugins: k(c.map((C) => (f = C == null ? void 0 : C.plugins) !== null && f !== void 0 ? f : []))
2726
2726
  }, ...y));
@@ -3734,7 +3734,7 @@ var Ce = {}, Re = {
3734
3734
  }
3735
3735
  function s(l) {
3736
3736
  var i;
3737
- const v = ((i = l == null ? void 0 : l.presets) !== null && i !== void 0 ? i : [
3737
+ const b = ((i = l == null ? void 0 : l.presets) !== null && i !== void 0 ? i : [
3738
3738
  t.default
3739
3739
  ]).slice().reverse().flatMap((p) => s(p instanceof Function ? p() : p)), a = {
3740
3740
  // Add experimental configs here...
@@ -3760,7 +3760,7 @@ var Ce = {}, Re = {
3760
3760
  return [
3761
3761
  l,
3762
3762
  ...n,
3763
- ...v
3763
+ ...b
3764
3764
  ];
3765
3765
  }
3766
3766
  })(Ce);
@@ -3789,7 +3789,7 @@ var Ce = {}, Re = {
3789
3789
  })(oe);
3790
3790
  let Y = oe;
3791
3791
  var Ne = (Y.__esModule ? Y : { default: Y }).default;
3792
- const Ue = /* @__PURE__ */ De(Ne);
3792
+ const Ue = /* @__PURE__ */ Me(Ne);
3793
3793
  let K = Q;
3794
3794
  var U = (K.__esModule ? K : { default: K }).default;
3795
3795
  const Be = {
@@ -3803,7 +3803,7 @@ const Be = {
3803
3803
  700: "#770D11",
3804
3804
  800: "#4E090B",
3805
3805
  900: "#290506"
3806
- }, D = {
3806
+ }, M = {
3807
3807
  onprimary: U.white,
3808
3808
  warning: U.amber,
3809
3809
  error: U.rose,
@@ -3811,34 +3811,34 @@ const Be = {
3811
3811
  success: U.lime,
3812
3812
  primary: U.sky,
3813
3813
  brand: Be
3814
- }, Ve = {
3815
- ...D,
3814
+ }, We = {
3815
+ ...M,
3816
3816
  // Warning
3817
- warning: D.warning[500],
3818
- "warning-darken": D.warning[600],
3819
- "warning-lighten": D.warning[400],
3817
+ warning: M.warning[500],
3818
+ "warning-darken": M.warning[600],
3819
+ "warning-lighten": M.warning[400],
3820
3820
  // Success
3821
- success: D.success[500],
3822
- "success-darken": D.success[600],
3823
- "success-lighten": D.success[400],
3821
+ success: M.success[500],
3822
+ "success-darken": M.success[600],
3823
+ "success-lighten": M.success[400],
3824
3824
  // Error
3825
- error: D.error[500],
3826
- "error-darken": D.error[600],
3827
- "error-lighten": D.error[400],
3825
+ error: M.error[500],
3826
+ "error-darken": M.error[600],
3827
+ "error-lighten": M.error[400],
3828
3828
  // Info
3829
- info: D.info[500],
3830
- "info-darken": D.info[600],
3831
- "info-lighten": D.info[400],
3829
+ info: M.info[500],
3830
+ "info-darken": M.info[600],
3831
+ "info-lighten": M.info[400],
3832
3832
  // Primary
3833
- primary: D.primary[500],
3834
- "primary-darken": D.primary[600],
3835
- "primary-lighten": D.primary[400],
3833
+ primary: M.primary[500],
3834
+ "primary-darken": M.primary[600],
3835
+ "primary-lighten": M.primary[400],
3836
3836
  // Surfaces
3837
3837
  onsurface: U.slate[500],
3838
3838
  onbackground: U.slate[700],
3839
3839
  surface: U.slate[50],
3840
3840
  background: U.white
3841
- }, We = {
3841
+ }, Ve = {
3842
3842
  prefix: "e-",
3843
3843
  corePlugins: {
3844
3844
  preflight: !1
@@ -3846,7 +3846,7 @@ const Be = {
3846
3846
  content: ["./src/**/*.{html,js,vue,ts}"],
3847
3847
  theme: {
3848
3848
  extend: {
3849
- colors: Ve,
3849
+ colors: We,
3850
3850
  maxWidth: {
3851
3851
  "1/12": "8.333333333%",
3852
3852
  "2/12": "16.666666666%",
@@ -3914,7 +3914,7 @@ const Be = {
3914
3914
  pattern: /e-content-(around|baseline|between|center|end|evenly|normal|start|stretch)/
3915
3915
  }
3916
3916
  ]
3917
- }, ke = Ue(We), Ie = ke.theme.fontSize, qe = ke.theme.colors, xt = [
3917
+ }, ke = Ue(Ve), Ie = ke.theme.fontSize, qe = ke.theme.colors, xt = [
3918
3918
  w.dot,
3919
3919
  w.xs,
3920
3920
  w.sm,
@@ -3944,12 +3944,12 @@ const Be = {
3944
3944
  w["8xl"],
3945
3945
  w["9xl"]
3946
3946
  ], wt = [
3947
- L.warning,
3948
- L.error,
3949
- L.info,
3950
- L.success,
3951
- L.primary,
3952
- L.default
3947
+ D.warning,
3948
+ D.error,
3949
+ D.info,
3950
+ D.success,
3951
+ D.primary,
3952
+ D.default
3953
3953
  ], St = [
3954
3954
  "play",
3955
3955
  "pause",
@@ -3961,7 +3961,7 @@ const Be = {
3961
3961
  "canplay",
3962
3962
  "canplaythrough",
3963
3963
  "statechanged"
3964
- ], Ge = V.extend({
3964
+ ], Ge = W.extend({
3965
3965
  name: "EIcon",
3966
3966
  props: {
3967
3967
  icon: {
@@ -3970,7 +3970,7 @@ const Be = {
3970
3970
  },
3971
3971
  color: {
3972
3972
  type: String,
3973
- default: L.default
3973
+ default: D.default
3974
3974
  },
3975
3975
  size: {
3976
3976
  type: String,
@@ -3999,7 +3999,7 @@ const Be = {
3999
3999
  var Xe = function() {
4000
4000
  var t = this, r = t._self._c;
4001
4001
  return r("div", { staticClass: "e-icon" }, [r("i", { class: t.iconClasses })]);
4002
- }, Ye = [], Ke = /* @__PURE__ */ W(
4002
+ }, Ye = [], Ke = /* @__PURE__ */ V(
4003
4003
  Ge,
4004
4004
  Xe,
4005
4005
  Ye,
@@ -4009,7 +4009,7 @@ var Xe = function() {
4009
4009
  null,
4010
4010
  null
4011
4011
  );
4012
- const Je = Ke.exports, Ze = V.extend({
4012
+ const Je = Ke.exports, Ze = W.extend({
4013
4013
  name: "ESpinner",
4014
4014
  props: {
4015
4015
  dark: {
@@ -4077,7 +4077,7 @@ var Qe = function() {
4077
4077
  "e-spinner--dark": t.dark,
4078
4078
  "e-spinner--grey": !t.color
4079
4079
  }, style: { opacity: t.opacity }, attrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1629.32 1608.86", width: t.computedSize, height: t.computedSize } }, [r("path", { staticClass: "e-spinner__primary", style: t.getNthPathStyle(0), attrs: { d: "m1254.12,591.61C992.01,401.11,439.78,0,439.78,0h601.2c14.3,0,48.95,9.02,62.54,38.01,55.27,117.88,111.32,235.46,170.48,351.43,33.16,70.9-8.99,170.35-19.87,202.16" } }), r("path", { staticClass: "e-spinner__secondary", style: t.getNthPathStyle(1), attrs: { d: "m1404.65,131.67c-29.37,89.94-55.8,170.95-82.25,251.93-4.05.87-8.1,1.73-12.15,2.61-40.61-83.95-81.21-167.9-123.12-254.54h217.51Z" } }), r("path", { staticClass: "e-spinner__primary", style: t.getNthPathStyle(2), attrs: { d: "m1129.06,1093.51c100.75-307.98,312.75-956.75,312.75-956.75,0,0,180.36,558.53,184.75,572.14,4.39,13.59,6.45,49.34-16.96,71.19-95.21,88.81-189.88,178.28-282.06,270.2-57.29,53.34-164.86,43.8-198.48,43.21" } }), r("path", { staticClass: "e-spinner__secondary", style: t.getNthPathStyle(3), attrs: { d: "m1342.3,1083.06c66.6-63.43,133.22-126.86,207.93-197.98,21.51,73.55,40.3,137.81,60.64,207.37h-263.35c-1.75-3.13-3.48-6.27-5.22-9.39" } }), r("path", { staticClass: "e-spinner__primary", style: t.getNthPathStyle(4), attrs: { d: "m610.27,1137.17c324.03-.53,1006.55-1.85,1006.55-1.85,0,0-474.19,345.83-485.74,354.25-11.55,8.42-44.87,21.56-72.94,6.14-114.11-62.68-228.69-124.66-344.81-183.5-68.56-37.76-93.12-142.93-103.06-175.04" } }), r("path", { staticClass: "e-spinner__secondary", style: t.getNthPathStyle(5), attrs: { d: "m938.58,1468.29c-62.81,42.58-118.35,80.24-180.28,122.23-28.35-87.22-54.62-168.03-80.89-248.86,2.62-2.92,5.26-5.85,7.9-8.76,81.89,43.78,163.79,87.56,253.26,135.39" } }), r("path", { staticClass: "e-spinner__primary", style: t.getNthPathStyle(6), attrs: { d: "m413.07,652.86c101.35,307.77,314.99,956,314.99,956,0,0-476.23-343.04-487.83-351.39-11.58-8.36-34.44-35.93-28.52-67.4,24.07-127.96,47.3-256.13,67.09-384.8,14.54-76.9,106.84-132.96,134.28-152.42" } }), r("path", { staticClass: "e-spinner__secondary", style: t.getNthPathStyle(7), attrs: { d: "m197.48,1068.8c-62.36-47.73-115.99-88.79-176.78-135.33,75.54-54.91,146.18-106.24,216.83-157.57,3.73,2.24,7.45,4.47,11.19,6.71-16.36,91.3-32.7,182.61-51.25,286.19" } }), r("path", { staticClass: "e-spinner__primary", style: t.getNthPathStyle(8), attrs: { d: "m813.58,314.41C551.63,505.15,0,907.07,0,907.07c0,0,180.68-558.4,185.09-572.01,4.39-13.59,23.65-43.78,55.41-47.8,129.19-16.29,258.32-33.41,386.86-53.99,77.67-9.72,159.3,60.97,186.22,81.13" } }), r("path", { staticClass: "e-spinner__secondary", style: t.getNthPathStyle(9), attrs: { d: "m635.14,199.78c-91.99,12.38-183.97,24.77-288.07,38.76,25.77-73.18,48.3-137.14,73.8-209.53,76.56,55.41,147.27,106.58,217.97,157.75-1.23,4.34-2.46,8.68-3.69,13.02" } })]);
4080
- }, et = [], tt = /* @__PURE__ */ W(
4080
+ }, et = [], tt = /* @__PURE__ */ V(
4081
4081
  Ze,
4082
4082
  Qe,
4083
4083
  et,
@@ -4087,7 +4087,7 @@ var Qe = function() {
4087
4087
  null,
4088
4088
  null
4089
4089
  );
4090
- const $e = tt.exports, rt = V.extend({
4090
+ const Ee = tt.exports, rt = W.extend({
4091
4091
  props: {
4092
4092
  align: {
4093
4093
  type: String,
@@ -4150,7 +4150,7 @@ const $e = tt.exports, rt = V.extend({
4150
4150
  var nt = function() {
4151
4151
  var t = this, r = t._self._c;
4152
4152
  return t._self._setupProxy, r("div", { staticClass: "e-row e-flex e-flex-wrap", class: t.rowClasses }, [t._t("default")], 2);
4153
- }, it = [], at = /* @__PURE__ */ W(
4153
+ }, it = [], at = /* @__PURE__ */ V(
4154
4154
  rt,
4155
4155
  nt,
4156
4156
  it,
@@ -4160,7 +4160,7 @@ var nt = function() {
4160
4160
  null,
4161
4161
  null
4162
4162
  );
4163
- const st = at.exports, ot = V.extend({
4163
+ const st = at.exports, ot = W.extend({
4164
4164
  props: {
4165
4165
  alignSelf: {
4166
4166
  type: String,
@@ -4267,7 +4267,7 @@ const st = at.exports, ot = V.extend({
4267
4267
  var lt = function() {
4268
4268
  var t = this, r = t._self._c;
4269
4269
  return r("div", { staticClass: "e-col", class: t.colClasses }, [t._t("default")], 2);
4270
- }, ut = [], ct = /* @__PURE__ */ W(
4270
+ }, ut = [], ct = /* @__PURE__ */ V(
4271
4271
  ot,
4272
4272
  lt,
4273
4273
  ut,
@@ -4278,11 +4278,11 @@ var lt = function() {
4278
4278
  null
4279
4279
  );
4280
4280
  const dt = ct.exports;
4281
- function Ee() {
4281
+ function Pe() {
4282
4282
  return !!(document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement || document.msFullscreenElement);
4283
4283
  }
4284
4284
  function ft(e) {
4285
- if (Ee())
4285
+ if (Pe())
4286
4286
  return new Promise((t) => t());
4287
4287
  if (e.requestFullscreen)
4288
4288
  return e == null ? void 0 : e.requestFullscreen();
@@ -4294,7 +4294,7 @@ function ft(e) {
4294
4294
  return e == null ? void 0 : e.msRequestFullscreen();
4295
4295
  }
4296
4296
  function pt() {
4297
- if (!Ee())
4297
+ if (!Pe())
4298
4298
  return new Promise((e) => e());
4299
4299
  if (document.exitFullscreen)
4300
4300
  return document.exitFullscreen();
@@ -4323,10 +4323,10 @@ const J = new Intl.NumberFormat(void 0, {
4323
4323
  return o === 0 ? `${r}:${J.format(t)}` : `${o}:${J.format(
4324
4324
  r
4325
4325
  )}:${J.format(t)}`;
4326
- }, mt = V.extend({
4326
+ }, mt = W.extend({
4327
4327
  name: "VideoPlayer",
4328
4328
  components: {
4329
- ESpinner: $e
4329
+ ESpinner: Ee
4330
4330
  },
4331
4331
  props: {
4332
4332
  sources: {
@@ -4346,7 +4346,6 @@ const J = new Intl.NumberFormat(void 0, {
4346
4346
  return {
4347
4347
  playing: !1,
4348
4348
  percentagePlayed: 0,
4349
- videoMuted: !1,
4350
4349
  videoLength: "0:00",
4351
4350
  duration: 0,
4352
4351
  videoDuration: 0,
@@ -4354,7 +4353,6 @@ const J = new Intl.NumberFormat(void 0, {
4354
4353
  realtime: 0,
4355
4354
  isScrubbing: !1,
4356
4355
  wasPaused: !1,
4357
- volume: 1,
4358
4356
  isFullscreen: !1,
4359
4357
  isFinished: !1,
4360
4358
  isLoading: !0
@@ -4417,7 +4415,7 @@ const J = new Intl.NumberFormat(void 0, {
4417
4415
  },
4418
4416
  initializePlayer() {
4419
4417
  const e = this.$refs.player;
4420
- e && (e.muted && this.setMuted(!0), document.addEventListener("mouseup", (t) => {
4418
+ e && (e.autoplay && this.setPlaying(!0), document.addEventListener("mouseup", (t) => {
4421
4419
  this.isScrubbing && this.toggleScrubbing(t);
4422
4420
  }), document.addEventListener("keydown", this.handleKeyDown));
4423
4421
  },
@@ -4474,13 +4472,6 @@ const J = new Intl.NumberFormat(void 0, {
4474
4472
  return;
4475
4473
  e.play() !== void 0 && e.play().then(() => this.setPlaying(!0)).catch(console.error);
4476
4474
  },
4477
- handleVolumeChange(e) {
4478
- const t = this.$refs.player, r = e.target;
4479
- t.volume = Number(r.value), t.muted = Number(r.value) === 0, this.setVolume(Number(r.value)), this.setMuted(Number(r.value) === 0);
4480
- },
4481
- setVolume(e) {
4482
- this.volume = e;
4483
- },
4484
4475
  pause() {
4485
4476
  const e = this.$refs.player;
4486
4477
  e && (e.pause(), this.setPlaying(!1));
@@ -4501,20 +4492,6 @@ const J = new Intl.NumberFormat(void 0, {
4501
4492
  convertTimeToDuration(e) {
4502
4493
  return [parseInt(e / 60 % 60, 10), parseInt(e % 60, 10)].join(":").replace(/\b(\d)\b/g, "0$1");
4503
4494
  },
4504
- mute() {
4505
- const e = this.$refs.player;
4506
- e && (e.muted = !0, this.setMuted(!0));
4507
- },
4508
- unmute() {
4509
- const e = this.$refs.player;
4510
- e && (e.muted = !1, this.setMuted(!1));
4511
- },
4512
- toggleMute() {
4513
- this.videoMuted ? this.unmute() : this.mute();
4514
- },
4515
- setMuted(e) {
4516
- this.videoMuted = e;
4517
- },
4518
4495
  closeFullscreenMode() {
4519
4496
  document.fullscreenElement && (pt().then(() => {
4520
4497
  this.isFullscreen = !1, console.log("Exited fullscreen");
@@ -4594,9 +4571,6 @@ const J = new Intl.NumberFormat(void 0, {
4594
4571
  case "f":
4595
4572
  this.openFullscreenMode(), this.isFullscreen = !0;
4596
4573
  break;
4597
- case "m":
4598
- this.toggleMute();
4599
- break;
4600
4574
  }
4601
4575
  }
4602
4576
  }
@@ -4605,38 +4579,34 @@ var gt = function() {
4605
4579
  var t = this, r = t._self._c;
4606
4580
  return r("div", { ref: "videoContainer", staticClass: "video-container paused", attrs: { "data-volume-level": "high" } }, [r("video", t._g(t._b({ ref: "player", attrs: { controls: !1, preload: "auto" }, on: { ended: t.handleEnded, click: t.togglePlay, loadedmetadata: t.getDuration, timeupdate: t.handleTimeUpdate, loadeddata: t.handleLoading } }, "video", t.videoOptions, !1), t.videoListeners), t._l(t.hasMultipleSources ? t.sources : [{ src: t.sources }], function(o) {
4607
4581
  return r("source", { key: o.src, attrs: { src: o.src, type: o.type } });
4608
- }), 0), t.isLoading ? r("div", { staticClass: "spinner-container" }, [r("ESpinner", { attrs: { size: "9xl", opacity: "0.6", dark: !0 } })], 1) : t._e(), r("div", { class: ["video-controls-container", t.withControls] }, [r("div", { staticClass: "controls" }, [r("button", { ref: "playPauseBtn", staticClass: "play-pause-btn fa-sm fa-solid", class: {
4582
+ }), 0), t.isLoading ? r("div", { staticClass: "spinner-container" }, [r("ESpinner", { attrs: { size: "9xl", opacity: "0.6", dark: !0 } })], 1) : t._e(), r("div", { class: ["video-controls-container", t.withControls] }, [r("div", { staticClass: "controls" }, [r("button", { ref: "playPauseBtn", staticClass: "play-pause-btn fa-lg fa-solid", class: {
4609
4583
  "fa-play": !t.playing,
4610
4584
  "fa-pause": t.playing
4611
- }, attrs: { title: t.playing ? "pause" : "play" }, on: { click: t.togglePlay } }), r("div", { staticClass: "volume-container" }, [r("button", { ref: "muteBtn", staticClass: "mute-btn fa-solid", class: {
4612
- "fa-volume": t.volume > 0.5 && !t.videoMuted,
4613
- "fa-volume-low": t.volume <= 0.5 && !t.videoMuted,
4614
- "fa-volume-slash": t.videoMuted
4615
- }, attrs: { title: t.videoMuted ? "Unmute" : "Mute" }, on: { click: t.toggleMute } }), r("input", { ref: "volumeSlider", staticClass: "volume-slider", attrs: { type: "range", min: "0", max: "1", step: "any" }, domProps: { value: t.volume }, on: { input: t.handleVolumeChange } })]), r("div", { staticClass: "duration-container" }, [r("div", { ref: "currentTimeElem", staticClass: "current-time" }, [t._v(" " + t._s(t.currentTime) + " ")]), t._v(" / "), r("div", { ref: "totalTimeElem", staticClass: "total-time" }, [t._v(t._s(t.videoLength))])]), r("div", { ref: "timelineContainer", staticClass: "timeline-container", on: { mousemove: t.handleTimelineUpdate, mousedown: t.toggleScrubbing } }, [t._m(0)]), r("button", { ref: "fullScreenBtn", staticClass: "full-screen-btn fa-solid", class: {
4585
+ }, attrs: { title: t.playing ? "pause" : "play" }, on: { click: t.togglePlay } }), r("div", { staticClass: "duration-container" }, [r("div", { ref: "currentTimeElem", staticClass: "current-time" }, [t._v(" " + t._s(t.currentTime) + " ")]), t._v(" / "), r("div", { ref: "totalTimeElem", staticClass: "total-time" }, [t._v(t._s(t.videoLength))])]), r("div", { ref: "timelineContainer", staticClass: "timeline-container", on: { mousemove: t.handleTimelineUpdate, mousedown: t.toggleScrubbing } }, [t._m(0)]), r("button", { ref: "fullScreenBtn", staticClass: "full-screen-btn fa-solid", class: {
4616
4586
  "fa-expand": !t.isFullscreen,
4617
4587
  "fa-compress": t.isFullscreen
4618
4588
  }, on: { click: t.toggleFullscreenMode } })])])]);
4619
4589
  }, ht = [function() {
4620
4590
  var e = this, t = e._self._c;
4621
4591
  return t("div", { staticClass: "timeline" }, [t("div", { staticClass: "thumb-indicator" })]);
4622
- }], yt = /* @__PURE__ */ W(
4592
+ }], yt = /* @__PURE__ */ V(
4623
4593
  mt,
4624
4594
  gt,
4625
4595
  ht,
4626
4596
  !1,
4627
4597
  null,
4628
- "e338fc91",
4598
+ "e5c1c90c",
4629
4599
  null,
4630
4600
  null
4631
4601
  );
4632
- const vt = yt.exports, ae = {
4633
- EAvatar: Le,
4602
+ const bt = yt.exports, ae = {
4603
+ EAvatar: De,
4634
4604
  EBadge: se,
4635
4605
  EIcon: Je,
4636
- ESpinner: $e,
4606
+ ESpinner: Ee,
4637
4607
  ERow: st,
4638
4608
  ECol: dt,
4639
- EVideoPlayer: vt
4609
+ EVideoPlayer: bt
4640
4610
  }, Ct = {
4641
4611
  install(e) {
4642
4612
  Object.keys(ae).forEach((t) => {
@@ -4648,16 +4618,16 @@ export {
4648
4618
  _t as AvatarSizes,
4649
4619
  wt as BadgeColors,
4650
4620
  xt as BadgeSizes,
4651
- L as BaseColor,
4621
+ D as BaseColor,
4652
4622
  qe as Colors,
4653
- Le as EAvatar,
4623
+ De as EAvatar,
4654
4624
  se as EBadge,
4655
4625
  dt as ECol,
4656
4626
  Je as EIcon,
4657
4627
  st as ERow,
4658
- $e as ESpinner,
4628
+ Ee as ESpinner,
4659
4629
  St as EVENTS,
4660
- vt as EVideoPlayer,
4630
+ bt as EVideoPlayer,
4661
4631
  He as IconSizes,
4662
4632
  w as Size,
4663
4633
  Ie as TextSizes,
@@ -4665,7 +4635,7 @@ export {
4665
4635
  Ct as default,
4666
4636
  pt as exitFullScreen,
4667
4637
  ke as fullConfig,
4668
- Ee as isFullScreen,
4638
+ Pe as isFullScreen,
4669
4639
  ft as makeFullScreen
4670
4640
  };
4671
4641
  //# sourceMappingURL=index.mjs.map