@eodash/eodash 5.0.0-alpha.2 → 5.0.0-alpha.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/LICENSE +21 -0
  2. package/bin/serverConfig.js +1 -1
  3. package/core/SuspensedDashboard.ce.vue +8 -2
  4. package/core/components/DashboardLayout.vue +3 -13
  5. package/core/types.d.ts +2 -1
  6. package/core/views/Dashboard.vue +1 -1
  7. package/dist/DashboardLayout-Dp8AnYD9.js +141 -0
  8. package/dist/{DynamicWebComponent-BDOQsEcj.js → DynamicWebComponent-BrHVTesn.js} +1 -1
  9. package/dist/{EodashDatePicker-DlehqSgz.js → EodashDatePicker-D_udZ26j.js} +33 -33
  10. package/dist/{EodashItemFilter-TSp7XRGy.js → EodashItemFilter-BLAGx2UD.js} +2 -2
  11. package/dist/{EodashMap-DInb9cfS.js → EodashMap-Bxl_aqY2.js} +4 -4
  12. package/dist/{Footer-CIzHgJbK.js → Footer-AohCH8U7.js} +17 -17
  13. package/dist/{Header-C5PSB8Uc.js → Header-DC50S6GR.js} +21 -21
  14. package/dist/{IframeWrapper-DYHQQRUh.js → IframeWrapper-Dd9zrX9s.js} +1 -1
  15. package/dist/{MobileLayout-DZmqrpub.js → MobileLayout-CgToA7Gp.js} +5 -5
  16. package/dist/{VBtn-CFPhsIX8.js → VBtn-Bz7ruRUg.js} +35 -35
  17. package/dist/{VMain-deI9jyIf.js → VMain-BHfWJU2j.js} +2 -2
  18. package/dist/{WidgetsContainer-D_PLP1qf.js → WidgetsContainer-DxfCu0I3.js} +3 -3
  19. package/dist/{asWebComponent-BKe6Spni.js → asWebComponent-C8rb3b1D.js} +1237 -1237
  20. package/dist/{color-D72nEBIR.js → color-DpYEub1f.js} +12 -12
  21. package/dist/{decoder-kAoyGIq9-HAkjSTCt.js → decoder-kAoyGIq9-BBR5CgzS.js} +1 -1
  22. package/dist/{dimensions-BZkmIizV.js → dimensions-CJaGeSrj.js} +1 -1
  23. package/dist/eo-dash.js +1 -1
  24. package/dist/{index-8ch8xKfa.js → index-DTkOfh2g.js} +5 -5
  25. package/dist/{index-DIt8GjSR.js → index-Sa2Vg_gx.js} +1 -1
  26. package/dist/{lerc-C9VL9kri-DyVxBvsf.js → lerc-C9VL9kri-cIdbW0sg.js} +1 -1
  27. package/dist/{ssrBoot-Cm5pWM14.js → ssrBoot-D-b4-M19.js} +1 -1
  28. package/package.json +1 -1
  29. package/dist/DashboardLayout-YLfAa8wH.js +0 -168
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 EOX IT Services GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -29,7 +29,7 @@ export const indexHtml = `
29
29
  </head>
30
30
 
31
31
  <body>
32
- ${userConfig.lib ? `<eo-dash/>
32
+ ${userConfig.lib ? `<eo-dash style="height:100dvh;"/>
33
33
  <script type="module" src="${path.resolve(`/@fs/${appPath}`, `core/asWebComponent.js`)}"></script>
34
34
  `: ` <div id="app"/>
35
35
  <script type="module" src="${path.resolve(`/@fs/${appPath}`, `core/render.js`)}"></script>
@@ -43,7 +43,7 @@ function setStylesFromHead() {
43
43
  return
44
44
  }
45
45
 
46
- if (child.tagName == 'LINK' && child.getAttribute('rel') === 'stylesheet') {
46
+ if (child.tagName == 'LINK' && child.getAttribute('rel')?.includes('stylesheet')) {
47
47
  eodashComponent?.shadowRoot?.appendChild(child.cloneNode(true))
48
48
  }
49
49
  });
@@ -52,7 +52,13 @@ function setStylesFromHead() {
52
52
  font-family:${
53
53
  //@ts-expect-error
54
54
  /** @type {import("@/types").Eodash} */ (inst.provides[eodashKey])?.brand.font?.family ?? 'Roboto'}
55
- }`
55
+ }
56
+ ${//@ts-expect-error
57
+ /** @type {import("@/types").Eodash} */ (inst.provides[eodashKey]).brand.noLayout ?
58
+ `div.v-application__wrap {
59
+ min-height: fit-content;
60
+ }`: ""}
61
+ `
56
62
  styleSheet.replaceSync(stylesStr.replaceAll(":root", ":host"))
57
63
  eodashComponent?.shadowRoot?.adoptedStyleSheets.push(styleSheet)
58
64
  }
@@ -2,12 +2,7 @@
2
2
  <v-main>
3
3
  <eox-layout :gap="eodash.template.gap ?? 2">
4
4
  <eox-layout-item style="z-index: 0;" x="0" y="0" h="12" w="12">
5
- <Suspense>
6
- <component id="bg-widget" :is="bgWidget.component" v-bind="bgWidget.props" />
7
- <template #fallback>
8
- <Loading />
9
- </template>
10
- </Suspense>
5
+ <component id="bg-widget" :is="bgWidget.component" v-bind="bgWidget.props" />
11
6
  </eox-layout-item>
12
7
  <eox-layout-item v-for="(config, idx) in widgetsConfig" ref="itemEls" :key="idx"
13
8
  style="position: relative; overflow: visible; z-index: 1; border-radius: 0px; background: rgb(var(--v-theme-surface))"
@@ -17,13 +12,8 @@
17
12
  class="slide-btn" @click="slideInOut(idx)">
18
13
  <v-icon :icon="slideBtns[idx].active ? slideBtns[idx].icon.in : slideBtns[idx].icon.out" />
19
14
  </v-btn>
20
- <Suspense>
21
- <component :key="importedWidgets[idx].value.id" :is="importedWidgets[idx].value.component"
22
- v-bind="importedWidgets[idx].value.props" />
23
- <template #fallback>
24
- <Loading />
25
- </template>
26
- </Suspense>
15
+ <component :key="importedWidgets[idx].value.id" :is="importedWidgets[idx].value.component"
16
+ v-bind="importedWidgets[idx].value.props" />
27
17
 
28
18
  </eox-layout-item>
29
19
  </eox-layout>
package/core/types.d.ts CHANGED
@@ -350,6 +350,7 @@ export interface EodashStore {
350
350
  * @group Eodash
351
351
  * @param configCallback
352
352
  */
353
- export declare const createEodash: typeof import("./composables/DefineEodash").createEodash
353
+ export declare const createEodash: (config: ((store: EodashStore) => Eodash | Promise<Eodash>) | Eodash) => Eodash | Promise<Eodash>
354
+
354
355
  /** @group EodashStore */
355
356
  export declare const store: EodashStore
@@ -2,7 +2,7 @@
2
2
  <HeaderComponent v-if="!eodash.brand.noLayout" />
3
3
  <Suspense>
4
4
  <TemplateComponent @vue:mounted="onTemplateMount?.()"
5
- :style="`height: ${eodash.brand.noLayout ? '90dvh' : 'calc(100dvh - ' + mainRect['top'] + mainRect['bottom'] + 'px)'}`" />
5
+ :style="`height: ${eodash.brand.noLayout ? (onTemplateMount ? '100%' : '90dvh') : 'calc(100dvh - ' + mainRect['top'] + mainRect['bottom'] + 'px)'}`" />
6
6
  <template #fallback>
7
7
  <div v-if="onTemplateMount" style="height: 100dvh; display: flex; align-items: center; justify-content: center;">
8
8
  <Loading />
@@ -0,0 +1,141 @@
1
+ import { y as w, z as x, A as p, r as _, R as v, D as r, E as l, G as h, S as g, J as e, H as m, m as y, K as b, F as k, L as C, N as A, a as E, T as V } from "./asWebComponent-C8rb3b1D.js";
2
+ import { V as L, b as $ } from "./VBtn-Bz7ruRUg.js";
3
+ import { V as B } from "./VMain-BHfWJU2j.js";
4
+ class z extends HTMLElement {
5
+ static get observedAttributes() {
6
+ return ["gap"];
7
+ }
8
+ constructor() {
9
+ super(), this.attachShadow({ mode: "open" }), this.render();
10
+ }
11
+ render() {
12
+ this.shadowRoot.innerHTML = `
13
+ <style>
14
+ :host {
15
+ display: grid;
16
+ padding: ${this.getAttribute("gap") || 0}px;
17
+ height: 100%;
18
+ box-sizing: border-box;
19
+ gap: ${this.getAttribute("gap") || "0"}px;
20
+ grid-template-columns: repeat(12, 1fr);
21
+ grid-template-rows: repeat(12, 1fr);
22
+ }
23
+ </style>
24
+ <slot></slot>
25
+ `;
26
+ }
27
+ attributeChangedCallback(o, a, s) {
28
+ a !== s && (this[o] = s), this.render();
29
+ }
30
+ }
31
+ class H extends HTMLElement {
32
+ static get observedAttributes() {
33
+ return ["x", "y", "w", "h"];
34
+ }
35
+ constructor() {
36
+ super(), this.attachShadow({ mode: "open" }), this.render();
37
+ }
38
+ render() {
39
+ this.shadowRoot.innerHTML = `
40
+ <style>
41
+ :host {
42
+ background: lightgrey;
43
+ border: 1px solid darkgrey;
44
+ border-radius: 4px;
45
+ padding: 4px 8px;
46
+ overflow: hidden;
47
+
48
+
49
+ grid-column: ${parseInt(this.getAttribute("x")) + 1} / span ${this.getAttribute("w")};
50
+ grid-row: ${parseInt(this.getAttribute("y")) + 1} / span ${this.getAttribute("h")};
51
+ }
52
+ </style>
53
+ <slot></slot>
54
+ `;
55
+ }
56
+ attributeChangedCallback(o, a, s) {
57
+ a !== s && (this[o] = s), this.render();
58
+ }
59
+ }
60
+ customElements.define("eox-layout", z);
61
+ customElements.define("eox-layout-item", H);
62
+ const M = ["gap"], S = {
63
+ style: { "z-index": "0" },
64
+ x: "0",
65
+ y: "0",
66
+ h: "12",
67
+ w: "12"
68
+ }, T = ["x", "y", "h", "w"], K = {
69
+ __name: "DashboardLayout",
70
+ setup(u) {
71
+ const o = (
72
+ /** @type {import("@/types").Eodash} */
73
+ w(x)
74
+ ), [a] = p([o.template?.background]), s = o.template?.widgets, d = p(s), c = _([]), { slideBtns: n, slideInOut: f } = v(c, s);
75
+ return (D, I) => (r(), l(B, null, {
76
+ default: h(() => [
77
+ g("eox-layout", {
78
+ gap: e(o).template.gap ?? 2
79
+ }, [
80
+ g("eox-layout-item", S, [
81
+ (r(), l(
82
+ m(e(a).component),
83
+ y({ id: "bg-widget" }, e(a).props),
84
+ null,
85
+ 16
86
+ /* FULL_PROPS */
87
+ ))
88
+ ]),
89
+ (r(!0), b(
90
+ k,
91
+ null,
92
+ C(e(s), (i, t) => (r(), b("eox-layout-item", {
93
+ ref_for: !0,
94
+ ref_key: "itemEls",
95
+ ref: c,
96
+ key: t,
97
+ style: { position: "relative", overflow: "visible", "z-index": "1", "border-radius": "0px", background: "rgb(var(--v-theme-surface))" },
98
+ x: i.layout.x,
99
+ y: i.layout.y,
100
+ h: i.layout.h,
101
+ w: i.layout.w
102
+ }, [
103
+ e(n)[t].enabled ? (r(), l(L, {
104
+ key: 0,
105
+ position: "absolute",
106
+ variant: "tonal",
107
+ style: A(e(n)[t].style),
108
+ class: "slide-btn",
109
+ onClick: (N) => e(f)(t)
110
+ }, {
111
+ default: h(() => [
112
+ E($, {
113
+ icon: e(n)[t].active ? e(n)[t].icon.in : e(n)[t].icon.out
114
+ }, null, 8, ["icon"])
115
+ ]),
116
+ _: 2
117
+ /* DYNAMIC */
118
+ }, 1032, ["style", "onClick"])) : V("v-if", !0),
119
+ (r(), l(
120
+ m(e(d)[t].value.component),
121
+ y({
122
+ key: e(d)[t].value.id
123
+ }, e(d)[t].value.props),
124
+ null,
125
+ 16
126
+ /* FULL_PROPS */
127
+ ))
128
+ ], 8, T))),
129
+ 128
130
+ /* KEYED_FRAGMENT */
131
+ ))
132
+ ], 8, M)
133
+ ]),
134
+ _: 1
135
+ /* STABLE */
136
+ }));
137
+ }
138
+ };
139
+ export {
140
+ K as default
141
+ };
@@ -1,4 +1,4 @@
1
- import { aN as i, aO as m, r as p, C as d, aP as f, D as c, K as g, E as y, m as _, H as k } from "./asWebComponent-BKe6Spni.js";
1
+ import { aL as i, aM as m, r as p, C as d, aN as f, D as c, K as g, E as y, m as _, H as k } from "./asWebComponent-C8rb3b1D.js";
2
2
  const h = { class: "d-flex flex-column fill-height overflow-auto" }, x = {
3
3
  __name: "DynamicWebComponent",
4
4
  props: {
@@ -1,9 +1,9 @@
1
- import { g as B, a8 as at, a9 as nt, b as z, aa as lt, p as I, c as v, u as Y, a, ab as j, ac as G, n as R, ad as U, ae as it, r as O, s as Z, O as st, af as pe, a5 as we, m as N, v as ue, C as de, Z as ie, e as ot, a0 as ce, a1 as Ie, t as ve, o as se, ag as Me, w as J, F as X, M as fe, P as Ae, ah as Be, I as q, f as $e, ai as me, aj as rt, ak as ut, y as dt, J as ct, X as vt, _ as ft, a4 as ke, al as mt, $ as yt, am as ht, an as kt, D as re, K as ge, E as gt, ao as ne } from "./asWebComponent-BKe6Spni.js";
2
- import { V as bt, b as Fe, c as Vt } from "./index-8ch8xKfa.js";
3
- import { M as ye, m as Oe, i as Ct } from "./index-DIt8GjSR.js";
4
- import { V as W, e as xt, f as Pt, g as _t, h as St, b as Dt, i as pt, j as wt, L as It, c as Mt, d as At } from "./VBtn-CFPhsIX8.js";
5
- import { a as oe, c as Bt, d as $t, m as Ye, e as Ft, f as Ot, b as Ne, u as Te } from "./color-D72nEBIR.js";
6
- import { V as Q, m as Yt, u as Nt } from "./dimensions-BZkmIizV.js";
1
+ import { g as B, a6 as at, a7 as nt, b as z, a8 as lt, p as I, c as v, u as O, a, a9 as j, aa as G, n as R, ab as U, ac as it, r as Y, s as Z, O as st, ad as pe, a3 as we, m as N, v as ue, C as de, X as ie, e as ot, _ as ce, $ as Ie, t as ve, o as se, ae as Me, w as J, F as X, M as fe, P as Ae, af as Be, I as q, f as $e, ag as me, ah as rt, ai as ut, y as dt, J as ct, V as vt, Y as ft, a2 as ke, aj as mt, Z as yt, ak as ht, al as kt, D as re, K as ge, E as gt, am as ne } from "./asWebComponent-C8rb3b1D.js";
2
+ import { V as bt, b as Fe, c as Vt } from "./index-DTkOfh2g.js";
3
+ import { M as ye, m as Ye, i as Ct } from "./index-Sa2Vg_gx.js";
4
+ import { V as W, e as xt, f as Pt, g as _t, h as St, b as Dt, i as pt, j as wt, L as It, c as Mt, d as At } from "./VBtn-Bz7ruRUg.js";
5
+ import { a as oe, c as Bt, d as $t, m as Oe, e as Ft, f as Yt, b as Ne, u as Te } from "./color-DpYEub1f.js";
6
+ import { V as Q, m as Ot, u as Nt } from "./dimensions-CJaGeSrj.js";
7
7
  import { n as Tt, a as Et, s as Rt, f as Lt } from "./forwardRefs-Bxeu9Obx.js";
8
8
  function Ee(e) {
9
9
  let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "div", s = arguments.length > 2 ? arguments[2] : void 0;
@@ -80,7 +80,7 @@ const Wt = Ee("v-spacer", "div", "VSpacer"), Re = I({
80
80
  function f() {
81
81
  s("click:month");
82
82
  }
83
- return Y(() => a("div", {
83
+ return O(() => a("div", {
84
84
  class: ["v-date-picker-controls"]
85
85
  }, [a(W, {
86
86
  class: "v-date-picker-controls__month-btn",
@@ -142,7 +142,7 @@ const Wt = Ee("v-spacer", "div", "VSpacer"), Re = I({
142
142
  function d() {
143
143
  s("click:append");
144
144
  }
145
- return Y(() => {
145
+ return O(() => {
146
146
  const c = !!(r.default || e.header), u = !!(r.append || e.appendIcon);
147
147
  return a("div", {
148
148
  class: ["v-date-picker-header", {
@@ -282,7 +282,7 @@ const Le = I({
282
282
  emit: s,
283
283
  slots: r
284
284
  } = n;
285
- const t = O(), {
285
+ const t = Y(), {
286
286
  daysInMonth: i,
287
287
  model: l,
288
288
  weekNumbers: d
@@ -401,7 +401,7 @@ const Le = I({
401
401
  });
402
402
  return we(() => {
403
403
  i.value = i.value ?? t.getMonth(t.date());
404
- }), Y(() => a("div", {
404
+ }), O(() => a("div", {
405
405
  class: "v-date-picker-months",
406
406
  style: {
407
407
  height: ue(e.height)
@@ -466,12 +466,12 @@ const Le = I({
466
466
  we(() => {
467
467
  i.value = i.value ?? t.getYear(t.date());
468
468
  });
469
- const d = O();
469
+ const d = Y();
470
470
  return de(async () => {
471
471
  await ie(), d.value?.$el.scrollIntoView({
472
472
  block: "center"
473
473
  });
474
- }), Y(() => a("div", {
474
+ }), O(() => a("div", {
475
475
  class: "v-date-picker-years",
476
476
  style: {
477
477
  height: ue(e.height)
@@ -507,11 +507,11 @@ const Le = I({
507
507
  color: String,
508
508
  ...Bt(),
509
509
  ...z(),
510
- ...Yt(),
510
+ ...Ot(),
511
511
  ...$t(),
512
512
  ...xt(),
513
513
  ...Pt(),
514
- ...Ye(),
514
+ ...Oe(),
515
515
  ...ot(),
516
516
  ...ce()
517
517
  }, "VSheet"), _e = B()({
@@ -532,14 +532,14 @@ const Le = I({
532
532
  dimensionStyles: d
533
533
  } = Nt(e), {
534
534
  elevationClasses: c
535
- } = Ot(e), {
535
+ } = Yt(e), {
536
536
  locationStyles: u
537
537
  } = _t(e), {
538
538
  positionClasses: f
539
539
  } = St(e), {
540
540
  roundedClasses: V
541
541
  } = Ne(e);
542
- return Y(() => a(e.tag, {
542
+ return O(() => a(e.tag, {
543
543
  class: ["v-sheet", r.value, t.value, l.value, c.value, f.value, V.value, e.class],
544
544
  style: [i.value, d.value, u.value, e.style]
545
545
  }, s)), {};
@@ -561,7 +561,7 @@ const Le = I({
561
561
  backgroundColorClasses: r,
562
562
  backgroundColorStyles: t
563
563
  } = oe(ve(e, "color"));
564
- return Y(() => {
564
+ return O(() => {
565
565
  const i = _e.filterProps(e), l = !!(e.title || s.title);
566
566
  return a(_e, N(i, {
567
567
  color: e.bgColor,
@@ -652,7 +652,7 @@ const Le = I({
652
652
  } = Me(), l = R(e, "modelValue", void 0, (h) => U(h), (h) => e.multiple ? h : h[0]), d = R(e, "viewMode"), c = v(() => {
653
653
  const h = t.date(l.value?.[0]);
654
654
  return h && t.isValid(h) ? h : t.date();
655
- }), u = O(Number(e.month ?? t.getMonth(t.startOfMonth(c.value)))), f = O(Number(e.year ?? t.getYear(t.startOfYear(t.setMonth(c.value, u.value))))), V = Z(!1), m = v(() => e.multiple && l.value.length > 1 ? i("$vuetify.datePicker.itemsSelected", l.value.length) : l.value[0] && t.isValid(l.value[0]) ? t.format(t.date(l.value[0]), "normalDateWithWeekday") : i(e.header)), k = v(() => {
655
+ }), u = Y(Number(e.month ?? t.getMonth(t.startOfMonth(c.value)))), f = Y(Number(e.year ?? t.getYear(t.startOfYear(t.setMonth(c.value, u.value))))), V = Z(!1), m = v(() => e.multiple && l.value.length > 1 ? i("$vuetify.datePicker.itemsSelected", l.value.length) : l.value[0] && t.isValid(l.value[0]) ? t.format(t.date(l.value[0]), "normalDateWithWeekday") : i(e.header)), k = v(() => {
656
656
  let h = t.date();
657
657
  return h = t.setYear(h, f.value), h = t.setMonth(h, u.value), h = t.setDate(h, 1), t.format(h, "monthAndYear");
658
658
  }), y = v(() => `date-picker-header${V.value ? "-reverse" : ""}-transition`), o = v(() => {
@@ -704,7 +704,7 @@ const Le = I({
704
704
  return J(l, (h, M) => {
705
705
  const A = t.date(U(h)[0]), H = t.date(U(M)[0]);
706
706
  V.value = t.isBefore(A, H);
707
- }), Y(() => {
707
+ }), O(() => {
708
708
  const h = Se.filterProps(e), M = be.filterProps(e), A = Ve.filterProps(e), H = Ce.filterProps(e), E = se(xe.filterProps(e), ["modelValue"]), $ = se(Pe.filterProps(e), ["modelValue"]), F = {
709
709
  header: m.value,
710
710
  transition: y.value
@@ -783,7 +783,7 @@ const Le = I({
783
783
  default: 0
784
784
  },
785
785
  ...z(),
786
- ...Oe({
786
+ ...Ye({
787
787
  transition: {
788
788
  component: Fe
789
789
  }
@@ -797,7 +797,7 @@ const Le = I({
797
797
  slots: s
798
798
  } = n;
799
799
  const r = v(() => e.max ? `${e.value} / ${e.max}` : String(e.value));
800
- return Y(() => a(ye, {
800
+ return O(() => a(ye, {
801
801
  transition: e.transition
802
802
  }, {
803
803
  default: () => [fe(a("div", {
@@ -822,7 +822,7 @@ const Le = I({
822
822
  let {
823
823
  slots: s
824
824
  } = n;
825
- return Y(() => a("label", {
825
+ return O(() => a("label", {
826
826
  class: ["v-label", {
827
827
  "v-label--clickable": !!e.onClick
828
828
  }, e.class],
@@ -840,7 +840,7 @@ const Le = I({
840
840
  let {
841
841
  slots: s
842
842
  } = n;
843
- return Y(() => a(Gt, {
843
+ return O(() => a(Gt, {
844
844
  class: ["v-field-label", {
845
845
  "v-field-label--floating": e.floating
846
846
  }, e.class],
@@ -933,7 +933,7 @@ const ea = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
933
933
  "onClick:prependInner": j(),
934
934
  ...z(),
935
935
  ...pt(),
936
- ...Ye(),
936
+ ...Oe(),
937
937
  ...ce()
938
938
  }, "VField"), qe = B()({
939
939
  name: "VField",
@@ -968,7 +968,7 @@ const ea = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
968
968
  roundedClasses: m
969
969
  } = Ne(e), {
970
970
  rtlClasses: k
971
- } = $e(), y = v(() => e.dirty || e.active), o = v(() => !e.singleLine && !!(e.label || t.label)), g = me(), b = v(() => e.id || `input-${g}`), w = v(() => `${b.value}-messages`), P = O(), x = O(), _ = O(), C = v(() => ["plain", "underlined"].includes(e.variant)), {
971
+ } = $e(), y = v(() => e.dirty || e.active), o = v(() => !e.singleLine && !!(e.label || t.label)), g = me(), b = v(() => e.id || `input-${g}`), w = v(() => `${b.value}-messages`), P = Y(), x = Y(), _ = Y(), C = v(() => ["plain", "underlined"].includes(e.variant)), {
972
972
  backgroundColorClasses: S,
973
973
  backgroundColorStyles: p
974
974
  } = oe(ve(e, "bgColor")), {
@@ -1011,7 +1011,7 @@ const ea = ["underlined", "outlined", "filled", "solo", "solo-inverted", "solo-f
1011
1011
  function E($) {
1012
1012
  $.key !== "Enter" && $.key !== " " || ($.preventDefault(), $.stopPropagation(), e["onClick:clear"]?.(new MouseEvent("click")));
1013
1013
  }
1014
- return Y(() => {
1014
+ return O(() => {
1015
1015
  const $ = e.variant === "outlined", F = !!(t["prepend-inner"] || e.prependInnerIcon), D = !!(e.clearable || t.clear), L = !!(t["append-inner"] || e.appendInnerIcon || D), T = () => t.label ? t.label({
1016
1016
  ...A.value,
1017
1017
  label: e.label,
@@ -1153,7 +1153,7 @@ const aa = I({
1153
1153
  default: () => []
1154
1154
  },
1155
1155
  ...z(),
1156
- ...Oe({
1156
+ ...Ye({
1157
1157
  transition: {
1158
1158
  component: Fe,
1159
1159
  leaveAbsolute: !0,
@@ -1171,7 +1171,7 @@ const aa = I({
1171
1171
  textColorClasses: t,
1172
1172
  textColorStyles: i
1173
1173
  } = Te(v(() => e.color));
1174
- return Y(() => a(ye, {
1174
+ return O(() => a(ye, {
1175
1175
  transition: e.transition,
1176
1176
  tag: "div",
1177
1177
  class: ["v-messages", t.value, e.class],
@@ -1222,7 +1222,7 @@ const sa = I({
1222
1222
  }, "validation");
1223
1223
  function oa(e) {
1224
1224
  let n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : Be(), s = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : me();
1225
- const r = R(e, "modelValue"), t = v(() => e.validationValue === void 0 ? r.value : e.validationValue), i = ia(), l = O([]), d = Z(!0), c = v(() => !!(U(r.value === "" ? null : r.value).length || U(t.value === "" ? null : t.value).length)), u = v(() => !!(e.disabled ?? i?.isDisabled.value)), f = v(() => !!(e.readonly ?? i?.isReadonly.value)), V = v(() => e.errorMessages?.length ? U(e.errorMessages).concat(l.value).slice(0, Math.max(0, +e.maxErrors)) : l.value), m = v(() => {
1225
+ const r = R(e, "modelValue"), t = v(() => e.validationValue === void 0 ? r.value : e.validationValue), i = ia(), l = Y([]), d = Z(!0), c = v(() => !!(U(r.value === "" ? null : r.value).length || U(t.value === "" ? null : t.value).length)), u = v(() => !!(e.disabled ?? i?.isDisabled.value)), f = v(() => !!(e.readonly ?? i?.isReadonly.value)), V = v(() => e.errorMessages?.length ? U(e.errorMessages).concat(l.value).slice(0, Math.max(0, +e.maxErrors)) : l.value), m = v(() => {
1226
1226
  let x = (e.validateOn ?? i?.validateOn.value) || "input";
1227
1227
  x === "lazy" && (x = "input lazy");
1228
1228
  const _ = new Set(x?.split(" ") ?? []);
@@ -1375,7 +1375,7 @@ const Ze = I({
1375
1375
  resetValidation: P,
1376
1376
  validate: x
1377
1377
  })), S = v(() => e.errorMessages?.length || !o.value && V.value.length ? V.value : e.hint && (e.persistentHint || e.focused) ? e.hint : e.messages);
1378
- return Y(() => {
1378
+ return O(() => {
1379
1379
  const p = !!(r.prepend || e.prependIcon), h = !!(r.append || e.appendIcon), M = S.value.length > 0, A = !e.hideDetails || e.hideDetails === "auto" && (M || !!r.details);
1380
1380
  return a("div", {
1381
1381
  class: ["v-input", `v-input--${e.direction}`, {
@@ -1463,7 +1463,7 @@ const Ze = I({
1463
1463
  function m(C, S) {
1464
1464
  !e.autofocus || !C || S[0].target?.focus?.();
1465
1465
  }
1466
- const k = O(), y = O(), o = O(), g = v(() => ra.includes(e.type) || e.persistentPlaceholder || l.value || e.active);
1466
+ const k = Y(), y = Y(), o = Y(), g = v(() => ra.includes(e.type) || e.persistentPlaceholder || l.value || e.active);
1467
1467
  function b() {
1468
1468
  o.value !== document.activeElement && o.value?.focus(), l.value || d();
1469
1469
  }
@@ -1487,7 +1487,7 @@ const Ze = I({
1487
1487
  });
1488
1488
  }
1489
1489
  }
1490
- return Y(() => {
1490
+ return O(() => {
1491
1491
  const C = !!(t.counter || e.counter !== !1 && e.counter != null), S = !!(C || t.details), [p, h] = mt(s), {
1492
1492
  modelValue: M,
1493
1493
  ...A
@@ -1601,7 +1601,7 @@ const Ze = I({
1601
1601
  set(l) {
1602
1602
  n.inline && (l = new Date(l)), l instanceof Date && !isNaN(l) ? ne.value = new Date(l.getTime() - l.getTimezoneOffset() * 6e4).toISOString() : ne.value = (/* @__PURE__ */ new Date()).toISOString();
1603
1603
  }
1604
- }), r = O(null), t = O(), i = O();
1604
+ }), r = Y(null), t = Y(), i = Y();
1605
1605
  return de(() => {
1606
1606
  const l = r.value?.$el.parentElement?.parentElement;
1607
1607
  t.value = l?.clientWidth ? l.clientWidth + "px" : void 0, i.value = l?.clientHeight ? l.clientHeight + "px" : void 0;
@@ -1,5 +1,5 @@
1
- import { D as n, E as s, aI as a } from "./asWebComponent-BKe6Spni.js";
2
- import p from "./DynamicWebComponent-BDOQsEcj.js";
1
+ import { D as n, E as s, aG as a } from "./asWebComponent-C8rb3b1D.js";
2
+ import p from "./DynamicWebComponent-BrHVTesn.js";
3
3
  const u = {
4
4
  __name: "EodashItemFilter",
5
5
  setup(m) {
@@ -1,6 +1,6 @@
1
- import { y as J1, aJ as vi, D as tx, E as ex, z as rx, aK as nx, w as ix, ao as sx } from "./asWebComponent-BKe6Spni.js";
1
+ import { y as J1, aH as vi, D as tx, E as ex, z as rx, aI as nx, w as ix, am as sx } from "./asWebComponent-C8rb3b1D.js";
2
2
  import { c as Ii, g as ox } from "./_commonjsHelpers-DaMA6jEr.js";
3
- import ax from "./DynamicWebComponent-BDOQsEcj.js";
3
+ import ax from "./DynamicWebComponent-BrHVTesn.js";
4
4
  var Om = { exports: {} }, vo = { exports: {} };
5
5
  /*! https://mths.be/punycode v1.4.0 by @mathias */
6
6
  vo.exports;
@@ -39497,7 +39497,7 @@ _i([8, 32946], () => import("./deflate-Be2Arps5-hDqMz3RA.js").then((r) => r.defa
39497
39497
  _i(32773, () => import("./packbits-DaUD6MLm-Bu1PoTGa.js").then((r) => r.default));
39498
39498
  _i(
39499
39499
  34887,
39500
- () => import("./lerc-C9VL9kri-DyVxBvsf.js").then(async (r) => (await r.zstd.init(), r)).then((r) => r.default)
39500
+ () => import("./lerc-C9VL9kri-cIdbW0sg.js").then(async (r) => (await r.zstd.init(), r)).then((r) => r.default)
39501
39501
  );
39502
39502
  _i(50001, () => import("./webimage-D2c098k3-DLj1LQxB.js").then((r) => r.default));
39503
39503
  function Xh(r, t, e, n = 1) {
@@ -40423,7 +40423,7 @@ class eL {
40423
40423
  */
40424
40424
  constructor(t = tL, e) {
40425
40425
  this.workers = null, this._awaitingDecoder = null, this.size = t, this.messageId = 0, t && (this._awaitingDecoder = e ? Promise.resolve(e) : new Promise((n) => {
40426
- import("./decoder-kAoyGIq9-HAkjSTCt.js").then((i) => {
40426
+ import("./decoder-kAoyGIq9-BBR5CgzS.js").then((i) => {
40427
40427
  n(i.create);
40428
40428
  });
40429
40429
  }), this._awaitingDecoder.then((n) => {
@@ -1,6 +1,6 @@
1
- import { p as y, b as _, a3 as k, e as w, a0 as x, g as b, a1 as C, t as f, s as z, i as B, c as e, a6 as P, u as M, a as R, v as S, r as T, y as V, z as F, h as X, D as Z, E as I, G as D, T as t, Q as L, J as n, O as N } from "./asWebComponent-BKe6Spni.js";
2
- import { c as j, d as E, m as H, a as O, e as A, f as G, b as J } from "./color-D72nEBIR.js";
3
- const K = y({
1
+ import { p as y, b as _, a1 as k, e as w, _ as x, g as b, $ as C, t as f, s as z, i as B, c as e, a4 as P, u as S, a as M, v as R, r as V, y as F, z as T, h as X, D as Z, E as I, G as D, S as t, Q as L, J as n, O as N } from "./asWebComponent-C8rb3b1D.js";
2
+ import { c as j, d as E, m as H, a as O, e as $, f as A, b as G } from "./color-DpYEub1f.js";
3
+ const J = y({
4
4
  app: Boolean,
5
5
  color: String,
6
6
  height: {
@@ -16,9 +16,9 @@ const K = y({
16
16
  tag: "footer"
17
17
  }),
18
18
  ...x()
19
- }, "VFooter"), Q = b()({
19
+ }, "VFooter"), K = b()({
20
20
  name: "VFooter",
21
- props: K(),
21
+ props: J(),
22
22
  setup(l, a) {
23
23
  let {
24
24
  slots: s
@@ -30,11 +30,11 @@ const K = y({
30
30
  backgroundColorStyles: r
31
31
  } = O(f(l, "color")), {
32
32
  borderClasses: i
33
- } = A(l), {
33
+ } = $(l), {
34
34
  elevationClasses: m
35
- } = G(l), {
35
+ } = A(l), {
36
36
  roundedClasses: g
37
- } = J(l), h = z(32), {
37
+ } = G(l), h = z(32), {
38
38
  resizeRef: p
39
39
  } = B((u) => {
40
40
  u.length && (h.value = u[0].target.clientHeight);
@@ -49,18 +49,18 @@ const K = y({
49
49
  active: e(() => l.app),
50
50
  absolute: f(l, "absolute")
51
51
  });
52
- return M(() => R(l.tag, {
52
+ return S(() => M(l.tag, {
53
53
  ref: p,
54
54
  class: ["v-footer", o.value, c.value, i.value, m.value, g.value, l.class],
55
55
  style: [r.value, l.app ? v.value : {
56
- height: S(l.height)
56
+ height: R(l.height)
57
57
  }, l.style]
58
58
  }, s)), {};
59
59
  }
60
- }), U = {
60
+ }), Q = {
61
61
  class: "pt-0",
62
62
  style: { "font-size": "0.8rem" }
63
- }, $ = /* @__PURE__ */ t(
63
+ }, U = /* @__PURE__ */ t(
64
64
  "a",
65
65
  {
66
66
  href: "https://github.com/eodash/eodash",
@@ -77,11 +77,11 @@ const K = y({
77
77
  }, W = ["src"], Y = '<svg width="100%" height="100%" viewBox="0 0 355 85" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g id="ink_ext_XXXXXX"><path id="path5076" d="M152.986,40.52l-0.75,-0.019l-0.737,-0.056l-0.725,-0.093l-0.713,-0.127l-0.7,-0.162l-0.7,-0.196l-0.675,-0.228l-0.65,-0.261l-0.65,-0.292l-0.625,-0.319l-0.612,-0.352l-0.588,-0.377l-0.562,-0.407l-0.55,-0.431l-0.538,-0.457l-0.5,-0.481l-0.487,-0.505l-0.45,-0.528l-0.438,-0.55l-0.4,-0.57l-0.375,-0.59l-0.35,-0.609l-0.325,-0.627l-0.287,-0.645l-0.263,-0.66l-0.225,-0.676l-0.2,-0.69l-0.162,-0.704l-0.125,-0.717l-0.1,-0.728l-0.05,-0.739l-0.025,-0.748c0,-8.023 6.512,-14.532 14.537,-14.532c8.038,0 14.538,6.509 14.538,14.532c0,8.036 -6.5,14.544 -14.538,14.544Z" style="fill:none;"/><path id="path5078" d="M165.748,-0.002c-42.009,0 -76.06,18.985 -76.06,42.402c0,13.268 10.921,25.102 28.021,32.875c-8.081,-5.487 -13.403,-12.973 -14.584,-21.859c-2.685,-20.186 16.83,-40.82 45.148,-49.615c-14.687,6.665 -24.923,21.427 -24.923,38.599c0,23.218 18.648,42.046 41.773,42.383c-0.037,0.005 -0.087,0.015 -0.137,0.02c0.263,0 0.512,0.009 0.762,0.009c42.013,0 76.076,-18.984 76.076,-42.412c0,-13.261 -10.937,-25.097 -28.037,-32.871l0.75,0.522l0.736,0.531l0.713,0.543l0.7,0.555l0.687,0.566l0.664,0.578l0.649,0.588l0.625,0.6l0.613,0.609l0.588,0.621l0.574,0.631l0.562,0.643l0.538,0.652l0.513,0.662l0.5,0.672l0.475,0.684l0.449,0.693l0.438,0.703l0.425,0.713l0.387,0.723l0.375,0.73l0.352,0.74l0.336,0.75l0.3,0.76l0.287,0.77l0.264,0.777l0.25,0.787l0.211,0.795l0.188,0.805l0.175,0.812l0.151,0.82l0.125,0.831c2.675,20.19 -16.838,40.825 -45.151,49.619c14.688,-6.665 24.926,-21.426 24.926,-38.614c0,-23.202 -18.65,-42.026 -41.775,-42.367c0.05,-0.005 0.1,-0.015 0.15,-0.025c-0.262,0 -0.526,-0.01 -0.789,-0.01Zm-13.248,11.314c7.817,0 14.25,6.433 14.25,14.25c0,0.001 0,0.001 0,0.001c0,7.817 -6.433,14.249 -14.25,14.249c-7.817,0 -14.25,-6.432 -14.25,-14.249c0,-0.001 0,-0.001 0,-0.001c0,-7.817 6.433,-14.25 14.25,-14.25Z" style="fill:#fff;fill-rule:nonzero;"/><path id="path5080" d="M213.786,9.529l0.75,0.521l0.738,0.532l0.712,0.544l0.7,0.555l0.688,0.566l0.662,0.577l0.65,0.588l0.625,0.6l0.613,0.61l0.587,0.62l0.575,0.631l0.563,0.643l0.537,0.652l0.513,0.663l0.5,0.672l0.475,0.684l0.45,0.692l0.437,0.703l0.425,0.712l0.388,0.723l0.375,0.731l0.35,0.741l0.337,0.75l0.3,0.76l0.288,0.769l0.262,0.777l0.25,0.786l0.213,0.797l0.187,0.804l0.175,0.812l0.15,0.821l0.125,0.83c2.675,20.19 -16.837,40.825 -45.15,49.619c14.688,-6.665 24.925,-21.426 24.925,-38.614c0,-23.202 -18.65,-42.025 -41.775,-42.367c0.05,-0.005 0.1,-0.015 0.15,-0.025c-0.262,0 -0.525,-0.01 -0.787,-0.01c-42.01,0 -76.062,18.985 -76.062,42.402c0,13.268 10.922,25.103 28.022,32.876c-8.081,-5.487 -13.403,-12.973 -14.584,-21.859c-2.685,-20.187 16.831,-40.82 45.149,-49.615c-14.688,6.665 -24.925,21.426 -24.925,38.598c0,23.218 18.65,42.046 41.775,42.383c-0.038,0.005 -0.088,0.015 -0.138,0.02c0.263,0 0.513,0.01 0.763,0.01c42.012,-0.001 76.075,-18.985 76.075,-42.413c0,-13.261 -10.938,-25.097 -28.038,-32.871Z" style="fill:none;"/><path id="path5082" d="M354.323,82.586l-41.999,-42.002l38.524,-38.515l-29.913,0l-23.562,23.559l-23.563,-23.559l-29.924,0l38.525,38.515l-42,42.002l29.913,0l27.049,-27.046l27.05,27.046l29.9,0" style="fill:#fff;fill-rule:nonzero;"/><path id="path5084" d="M354.323,82.586l-41.999,-42.002l38.524,-38.515l-29.913,0l-23.562,23.559l-23.563,-23.559l-29.924,0l38.525,38.515l-42,42.002l29.913,0l27.049,-27.046l27.05,27.046l29.9,0Z" style="fill:none;"/><path id="path5086" d="M0,2.069l75.033,0l0,16.489l-51.629,0l0,14.931l40.258,0l0,16.495l-40.258,0l0,16.05l53.124,0l0,16.488l-76.528,0l0,-80.453" style="fill:#fff;fill-rule:nonzero;"/><path id="path5088" d="M0,2.069l75.033,0l0,16.489l-51.629,0l0,14.931l40.258,0l0,16.495l-40.258,0l0,16.05l53.124,0l0,16.488l-76.528,0l0,-80.453Z" style="fill:none;"/></g></svg>', t0 = {
78
78
  __name: "Footer",
79
79
  setup(l) {
80
- const a = T(null), s = (
80
+ const a = V(null), s = (
81
81
  /** @type {import("@/types").Eodash} */
82
- V(F)
82
+ F(T)
83
83
  ), { mdAndDown: o } = X(), c = window.btoa(Y);
84
- return (r, i) => (Z(), I(Q, {
84
+ return (r, i) => (Z(), I(K, {
85
85
  ref_key: "footer",
86
86
  ref: a,
87
87
  height: n(o) ? "48px" : "auto",
@@ -92,13 +92,13 @@ const K = y({
92
92
  default: D(() => [
93
93
  t(
94
94
  "p",
95
- U,
95
+ Q,
96
96
  L(n(s).brand.footerText ?? ""),
97
97
  1
98
98
  /* TEXT */
99
99
  ),
100
100
  t("div", null, [
101
- $,
101
+ U,
102
102
  N(" by "),
103
103
  t("a", q, [
104
104
  t("img", {