@indxsearch/systm 2.4.0 → 2.6.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/CHANGELOG.md +23 -0
- package/dist/components/Spinner/Spinner.d.ts +14 -0
- package/dist/components/Spinner/spinners.generated.d.ts +126 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +385 -120
- package/dist/systm.css +1 -1
- package/package.json +4 -2
package/dist/index.es.js
CHANGED
|
@@ -465,7 +465,7 @@ var P = {
|
|
|
465
465
|
viewport: "_viewport_15fsv_76",
|
|
466
466
|
item: "_item_15fsv_82",
|
|
467
467
|
itemIndicator: "_itemIndicator_15fsv_105"
|
|
468
|
-
},
|
|
468
|
+
}, ne = ({ value: t, onValueChange: n, options: r, placeholder: i = "Select...", className: a = "", disabled: u = !1, label: d, size: f = "default", "aria-label": p, id: m }) => {
|
|
469
469
|
let h = e.useId(), g = m || h, v = `${g}-label`, y = r.find((e) => e.value === t), b = /* @__PURE__ */ s(_.Root, {
|
|
470
470
|
value: t,
|
|
471
471
|
onValueChange: n,
|
|
@@ -527,14 +527,14 @@ var P = {
|
|
|
527
527
|
children: d
|
|
528
528
|
}), b]
|
|
529
529
|
}) : b;
|
|
530
|
-
},
|
|
530
|
+
}, re = { content: "_content_1qahr_1" }, ie = ({ trigger: e, children: t, open: n, onOpenChange: r, align: i = "end", side: a = "bottom", sideOffset: c = 5, className: l = "", "aria-label": u, "aria-describedby": d }) => /* @__PURE__ */ s(v.Root, {
|
|
531
531
|
open: n,
|
|
532
532
|
onOpenChange: r,
|
|
533
533
|
children: [/* @__PURE__ */ o(v.Trigger, {
|
|
534
534
|
asChild: !0,
|
|
535
535
|
children: e
|
|
536
536
|
}), /* @__PURE__ */ o(v.Portal, { children: /* @__PURE__ */ o(v.Content, {
|
|
537
|
-
className: `${
|
|
537
|
+
className: `${re.content} ${l}`,
|
|
538
538
|
align: i,
|
|
539
539
|
side: a,
|
|
540
540
|
sideOffset: c,
|
|
@@ -542,7 +542,7 @@ var P = {
|
|
|
542
542
|
"aria-describedby": d,
|
|
543
543
|
children: t
|
|
544
544
|
}) })]
|
|
545
|
-
}),
|
|
545
|
+
}), z = {
|
|
546
546
|
table: "_table_1b0iq_1",
|
|
547
547
|
caption: "_caption_1b0iq_8",
|
|
548
548
|
headerRow: "_headerRow_1b0iq_25",
|
|
@@ -555,49 +555,49 @@ var P = {
|
|
|
555
555
|
};
|
|
556
556
|
//#endregion
|
|
557
557
|
//#region src/components/Table/Table.tsx
|
|
558
|
-
function
|
|
558
|
+
function ae({ children: e, caption: t, "aria-label": n }) {
|
|
559
559
|
return process.env.NODE_ENV !== "production" && !t && !n && console.warn("Table: Component should have either a caption or aria-label for accessibility."), /* @__PURE__ */ s("table", {
|
|
560
|
-
className:
|
|
560
|
+
className: z.table,
|
|
561
561
|
"aria-label": n,
|
|
562
562
|
children: [t && /* @__PURE__ */ o("caption", {
|
|
563
|
-
className:
|
|
563
|
+
className: z.caption,
|
|
564
564
|
children: t
|
|
565
565
|
}), e]
|
|
566
566
|
});
|
|
567
567
|
}
|
|
568
568
|
//#endregion
|
|
569
569
|
//#region src/components/Table/TableHeader.tsx
|
|
570
|
-
function
|
|
570
|
+
function oe({ children: t }) {
|
|
571
571
|
let n = e.Children.map(t, (t) => e.isValidElement(t) && t.type === "td" ? /* @__PURE__ */ o("th", {
|
|
572
572
|
scope: "col",
|
|
573
573
|
...t.props
|
|
574
574
|
}) : t);
|
|
575
575
|
return /* @__PURE__ */ o("thead", { children: /* @__PURE__ */ o("tr", {
|
|
576
|
-
className:
|
|
576
|
+
className: z.headerRow,
|
|
577
577
|
children: n
|
|
578
578
|
}) });
|
|
579
579
|
}
|
|
580
580
|
//#endregion
|
|
581
581
|
//#region src/components/Table/TableRow.tsx
|
|
582
|
-
function
|
|
582
|
+
function se({ children: e }) {
|
|
583
583
|
return /* @__PURE__ */ o("tr", {
|
|
584
|
-
className:
|
|
584
|
+
className: z.dataRow,
|
|
585
585
|
children: e
|
|
586
586
|
});
|
|
587
587
|
}
|
|
588
588
|
//#endregion
|
|
589
589
|
//#region src/components/Table/TableCell.tsx
|
|
590
|
-
function
|
|
590
|
+
function ce({ label: e, children: t, isHeader: n = !1, scope: r }) {
|
|
591
591
|
let i = n ? "th" : "td", a = n && r ? { scope: r } : {};
|
|
592
592
|
return e || t ? /* @__PURE__ */ o(i, {
|
|
593
593
|
...a,
|
|
594
594
|
children: /* @__PURE__ */ s("div", {
|
|
595
|
-
className:
|
|
595
|
+
className: z.cellInner,
|
|
596
596
|
children: [e && /* @__PURE__ */ o("span", {
|
|
597
|
-
className:
|
|
597
|
+
className: z.cellLabel,
|
|
598
598
|
children: e
|
|
599
599
|
}), t && /* @__PURE__ */ o("div", {
|
|
600
|
-
className:
|
|
600
|
+
className: z.cellContent,
|
|
601
601
|
children: t
|
|
602
602
|
})]
|
|
603
603
|
})
|
|
@@ -608,18 +608,18 @@ function V({ label: e, children: t, isHeader: n = !1, scope: r }) {
|
|
|
608
608
|
}
|
|
609
609
|
//#endregion
|
|
610
610
|
//#region src/components/Table/TableValue.tsx
|
|
611
|
-
function
|
|
611
|
+
function le({ children: e }) {
|
|
612
612
|
return /* @__PURE__ */ o("span", {
|
|
613
|
-
className:
|
|
613
|
+
className: z.value,
|
|
614
614
|
children: e
|
|
615
615
|
});
|
|
616
616
|
}
|
|
617
617
|
//#endregion
|
|
618
618
|
//#region src/components/Table/TableIcon.tsx
|
|
619
|
-
function
|
|
619
|
+
function ue({ children: t, "aria-label": n }) {
|
|
620
620
|
let r = !n;
|
|
621
621
|
return /* @__PURE__ */ o("span", {
|
|
622
|
-
className:
|
|
622
|
+
className: z.icon,
|
|
623
623
|
"aria-hidden": r ? "true" : void 0,
|
|
624
624
|
"aria-label": n,
|
|
625
625
|
children: e.cloneElement(t, {
|
|
@@ -628,7 +628,7 @@ function ce({ children: t, "aria-label": n }) {
|
|
|
628
628
|
})
|
|
629
629
|
});
|
|
630
630
|
}
|
|
631
|
-
var
|
|
631
|
+
var B = {
|
|
632
632
|
tabs: "_tabs_11q71_1",
|
|
633
633
|
scrollable: "_scrollable_11q71_11",
|
|
634
634
|
tab: "_tab_11q71_1",
|
|
@@ -639,7 +639,7 @@ var H = {
|
|
|
639
639
|
};
|
|
640
640
|
//#endregion
|
|
641
641
|
//#region src/components/Tabs/Tabs.tsx
|
|
642
|
-
function
|
|
642
|
+
function de({ items: e, value: t, onValueChange: a, size: s = "default", scrollable: c = !1 }) {
|
|
643
643
|
let l = r(null), [u, d] = i({
|
|
644
644
|
start: !1,
|
|
645
645
|
end: !1
|
|
@@ -661,7 +661,7 @@ function le({ items: e, value: t, onValueChange: a, size: s = "default", scrolla
|
|
|
661
661
|
};
|
|
662
662
|
}, [c, e.length]), /* @__PURE__ */ o("div", {
|
|
663
663
|
ref: l,
|
|
664
|
-
className: `${
|
|
664
|
+
className: `${B.tabs} ${c ? B.scrollable : ""}`,
|
|
665
665
|
"data-overflow-start": c && u.start ? "" : void 0,
|
|
666
666
|
"data-overflow-end": c && u.end ? "" : void 0,
|
|
667
667
|
role: "tablist",
|
|
@@ -669,13 +669,13 @@ function le({ items: e, value: t, onValueChange: a, size: s = "default", scrolla
|
|
|
669
669
|
role: "tab",
|
|
670
670
|
type: "button",
|
|
671
671
|
"aria-selected": t === e.value,
|
|
672
|
-
className: `${
|
|
672
|
+
className: `${B.tab} ${B[s]} ${t === e.value ? B.active : ""}`,
|
|
673
673
|
onClick: () => a(e.value),
|
|
674
674
|
children: e.label
|
|
675
675
|
}, e.value))
|
|
676
676
|
});
|
|
677
677
|
}
|
|
678
|
-
var
|
|
678
|
+
var V = {
|
|
679
679
|
wrapper: "_wrapper_1a9jo_1",
|
|
680
680
|
track: "_track_1a9jo_8",
|
|
681
681
|
fill: "_fill_1a9jo_36",
|
|
@@ -683,42 +683,42 @@ var U = {
|
|
|
683
683
|
};
|
|
684
684
|
//#endregion
|
|
685
685
|
//#region src/components/ProgressBar/ProgressBar.tsx
|
|
686
|
-
function
|
|
686
|
+
function fe({ value: e, showLabel: t = !1, fulfilledColor: n = !1, className: r = "" }) {
|
|
687
687
|
let i = Math.min(100, Math.max(0, e)), a = `${Math.round(i)}%`, c = n && i >= 100 ? "var(--CPureBlue)" : void 0;
|
|
688
688
|
return /* @__PURE__ */ s("div", {
|
|
689
|
-
className: `${
|
|
689
|
+
className: `${V.wrapper} ${r}`,
|
|
690
690
|
role: "progressbar",
|
|
691
691
|
"aria-valuenow": i,
|
|
692
692
|
"aria-valuemin": 0,
|
|
693
693
|
"aria-valuemax": 100,
|
|
694
694
|
children: [/* @__PURE__ */ o("div", {
|
|
695
|
-
className:
|
|
695
|
+
className: V.track,
|
|
696
696
|
children: /* @__PURE__ */ o("div", {
|
|
697
|
-
className:
|
|
697
|
+
className: V.fill,
|
|
698
698
|
style: {
|
|
699
699
|
width: `${i}%`,
|
|
700
700
|
backgroundColor: c
|
|
701
701
|
}
|
|
702
702
|
})
|
|
703
703
|
}), t && /* @__PURE__ */ o("span", {
|
|
704
|
-
className:
|
|
704
|
+
className: V.label,
|
|
705
705
|
"aria-hidden": "true",
|
|
706
706
|
children: a
|
|
707
707
|
})]
|
|
708
708
|
});
|
|
709
709
|
}
|
|
710
|
-
var
|
|
710
|
+
var H = {
|
|
711
711
|
chip: "_chip_iaxe0_1",
|
|
712
712
|
large: "_large_iaxe0_14"
|
|
713
713
|
};
|
|
714
714
|
//#endregion
|
|
715
715
|
//#region src/components/Chip/Chip.tsx
|
|
716
|
-
function
|
|
716
|
+
function pe({ children: t, color: n, textColor: r, className: i, icon: a, size: o = "default" }) {
|
|
717
717
|
let c = {};
|
|
718
718
|
return n && (c.backgroundColor = n), r && (c.color = r), /* @__PURE__ */ s("span", {
|
|
719
719
|
className: [
|
|
720
|
-
|
|
721
|
-
o === "large" &&
|
|
720
|
+
H.chip,
|
|
721
|
+
o === "large" && H.large,
|
|
722
722
|
i
|
|
723
723
|
].filter(Boolean).join(" "),
|
|
724
724
|
style: c,
|
|
@@ -728,13 +728,13 @@ function de({ children: t, color: n, textColor: r, className: i, icon: a, size:
|
|
|
728
728
|
}), t]
|
|
729
729
|
});
|
|
730
730
|
}
|
|
731
|
-
var
|
|
731
|
+
var U = {
|
|
732
732
|
tooltip: "_tooltip_1de7z_1",
|
|
733
733
|
arrow: "_arrow_1de7z_13"
|
|
734
734
|
};
|
|
735
735
|
//#endregion
|
|
736
736
|
//#region src/components/Tooltip/Tooltip.tsx
|
|
737
|
-
function
|
|
737
|
+
function me({ content: e, position: t = "top", children: n, className: r }) {
|
|
738
738
|
return /* @__PURE__ */ o(y.Provider, {
|
|
739
739
|
delayDuration: 80,
|
|
740
740
|
children: /* @__PURE__ */ s(y.Root, { children: [/* @__PURE__ */ o(y.Trigger, {
|
|
@@ -743,12 +743,12 @@ function fe({ content: e, position: t = "top", children: n, className: r }) {
|
|
|
743
743
|
}), /* @__PURE__ */ o(y.Portal, { children: /* @__PURE__ */ s(y.Content, {
|
|
744
744
|
side: t,
|
|
745
745
|
sideOffset: 7,
|
|
746
|
-
className: [
|
|
747
|
-
children: [e, /* @__PURE__ */ o(y.Arrow, { className:
|
|
746
|
+
className: [U.tooltip, r].filter(Boolean).join(" "),
|
|
747
|
+
children: [e, /* @__PURE__ */ o(y.Arrow, { className: U.arrow })]
|
|
748
748
|
}) })] })
|
|
749
749
|
});
|
|
750
750
|
}
|
|
751
|
-
var
|
|
751
|
+
var W = {
|
|
752
752
|
wrapper: "_wrapper_1w5vh_1",
|
|
753
753
|
chart: "_chart_1w5vh_8",
|
|
754
754
|
svg: "_svg_1w5vh_33",
|
|
@@ -762,11 +762,11 @@ var K = {
|
|
|
762
762
|
legendItem: "_legendItem_1w5vh_90",
|
|
763
763
|
legendMark: "_legendMark_1w5vh_96",
|
|
764
764
|
legendLabel: "_legendLabel_1w5vh_102"
|
|
765
|
-
},
|
|
766
|
-
function
|
|
765
|
+
}, G = "var(--lv4)", K = 12, he = 20, ge = 8, _e = 28, q = 20;
|
|
766
|
+
function ve(e) {
|
|
767
767
|
return Number.isInteger(e) ? String(e) : e.toLocaleString(void 0, { maximumFractionDigits: 2 });
|
|
768
768
|
}
|
|
769
|
-
function
|
|
769
|
+
function ye({ series: e, labels: a, type: c = "line", height: l = 200, showLegend: u = !0, className: d }) {
|
|
770
770
|
let f = r(null), [p, m] = i(0), [h, g] = i(null);
|
|
771
771
|
n(() => {
|
|
772
772
|
let e = f.current;
|
|
@@ -774,18 +774,18 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
774
774
|
let t = new ResizeObserver(([e]) => m(e.contentRect.width));
|
|
775
775
|
return t.observe(e), m(e.clientWidth), () => t.disconnect();
|
|
776
776
|
}, []);
|
|
777
|
-
let _ = a?.length ?
|
|
777
|
+
let _ = a?.length ? _e : ge, v = Math.max(p - q - he, 0), y = Math.max(l - K - _, 0), b = e.flatMap((e) => e.data.filter(Number.isFinite)), x = b.length ? Math.max(...b, 0) : 1, S = c === "bar" ? 0 : Math.min(...b, 0), C = x - S || 1, w = Math.max(...e.map((e) => e.data.length), 0), T = (e) => K + (1 - (e - S) / C) * y, E = (e) => w <= 1 ? q + v / 2 : q + e / (w - 1) * v, D = t((e) => {
|
|
778
778
|
if (w === 0) return;
|
|
779
779
|
let t = e.currentTarget.getBoundingClientRect(), n = e.clientX - t.left, r = e.clientY - t.top;
|
|
780
780
|
if (c === "line") {
|
|
781
|
-
let e = Math.round((n -
|
|
781
|
+
let e = Math.round((n - q) / v * (w - 1));
|
|
782
782
|
g({
|
|
783
783
|
index: Math.max(0, Math.min(w - 1, e)),
|
|
784
784
|
x: n,
|
|
785
785
|
y: r
|
|
786
786
|
});
|
|
787
787
|
} else {
|
|
788
|
-
let e = v / w, t = Math.floor((n -
|
|
788
|
+
let e = v / w, t = Math.floor((n - q) / e);
|
|
789
789
|
g({
|
|
790
790
|
index: Math.max(0, Math.min(w - 1, t)),
|
|
791
791
|
x: n,
|
|
@@ -797,31 +797,31 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
797
797
|
w,
|
|
798
798
|
v
|
|
799
799
|
]), O = t(() => g(null), []), k = /* @__PURE__ */ o("line", {
|
|
800
|
-
x1:
|
|
801
|
-
y1:
|
|
802
|
-
x2:
|
|
803
|
-
y2:
|
|
800
|
+
x1: q,
|
|
801
|
+
y1: K + y * .5,
|
|
802
|
+
x2: q + v,
|
|
803
|
+
y2: K + y * .5,
|
|
804
804
|
stroke: "var(--chart-midline)",
|
|
805
805
|
strokeWidth: "0.5"
|
|
806
806
|
}), A = /* @__PURE__ */ o("line", {
|
|
807
|
-
x1:
|
|
808
|
-
y1:
|
|
809
|
-
x2:
|
|
810
|
-
y2:
|
|
807
|
+
x1: q,
|
|
808
|
+
y1: K + y,
|
|
809
|
+
x2: q + v,
|
|
810
|
+
y2: K + y,
|
|
811
811
|
stroke: "var(--chart-baseline)",
|
|
812
812
|
strokeWidth: "1"
|
|
813
813
|
}), j = h && c === "bar" ? (() => {
|
|
814
814
|
let e = v / w;
|
|
815
815
|
return /* @__PURE__ */ o("rect", {
|
|
816
|
-
x:
|
|
817
|
-
y:
|
|
816
|
+
x: q + h.index * e,
|
|
817
|
+
y: K,
|
|
818
818
|
width: e,
|
|
819
819
|
height: y,
|
|
820
820
|
fill: "var(--chart-column-hover)"
|
|
821
821
|
});
|
|
822
822
|
})() : null, M = () => e.map((e, t) => {
|
|
823
823
|
if (!e.data.length) return null;
|
|
824
|
-
let n = e.color ??
|
|
824
|
+
let n = e.color ?? G;
|
|
825
825
|
return /* @__PURE__ */ s("g", { children: [/* @__PURE__ */ o("polyline", {
|
|
826
826
|
points: e.data.map((e, t) => `${E(t).toFixed(2)},${T(e).toFixed(2)}`).join(" "),
|
|
827
827
|
fill: "none",
|
|
@@ -841,9 +841,9 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
841
841
|
})] }, t);
|
|
842
842
|
}), N = () => {
|
|
843
843
|
if (!w) return null;
|
|
844
|
-
let t = e.length, n = v / w, r = Math.max((n - 2 * (t + 1)) / t, 2), i =
|
|
844
|
+
let t = e.length, n = v / w, r = Math.max((n - 2 * (t + 1)) / t, 2), i = K + y;
|
|
845
845
|
return e.map((e, t) => e.data.map((a, s) => {
|
|
846
|
-
let c =
|
|
846
|
+
let c = q + s * n + 2 + t * (r + 2), l = T(a);
|
|
847
847
|
return /* @__PURE__ */ o("rect", {
|
|
848
848
|
x: c,
|
|
849
849
|
y: l,
|
|
@@ -854,9 +854,9 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
854
854
|
}));
|
|
855
855
|
}, P = () => {
|
|
856
856
|
if (!a?.length) return null;
|
|
857
|
-
let e =
|
|
857
|
+
let e = K + y + 18;
|
|
858
858
|
return a.map((t, n) => /* @__PURE__ */ o("text", {
|
|
859
|
-
x: c === "line" ? E(n) :
|
|
859
|
+
x: c === "line" ? E(n) : q + (n + .5) * (v / w),
|
|
860
860
|
y: e,
|
|
861
861
|
textAnchor: "middle",
|
|
862
862
|
fill: "var(--lv4)",
|
|
@@ -865,16 +865,16 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
865
865
|
}, n));
|
|
866
866
|
}, F = h && c === "line" ? /* @__PURE__ */ o("line", {
|
|
867
867
|
x1: E(h.index),
|
|
868
|
-
y1:
|
|
868
|
+
y1: K,
|
|
869
869
|
x2: E(h.index),
|
|
870
|
-
y2:
|
|
870
|
+
y2: K + y,
|
|
871
871
|
stroke: "var(--chart-crosshair)",
|
|
872
872
|
strokeWidth: "1",
|
|
873
873
|
strokeDasharray: "3 3"
|
|
874
874
|
}) : null, I = h ? (() => {
|
|
875
875
|
let t = a?.[h.index] ?? String(h.index + 1), n = Math.min(Math.max(h.x, 60), p - 60);
|
|
876
876
|
return /* @__PURE__ */ s("div", {
|
|
877
|
-
className:
|
|
877
|
+
className: W.tooltip,
|
|
878
878
|
style: h.y < 80 ? {
|
|
879
879
|
left: n,
|
|
880
880
|
top: h.y + 12,
|
|
@@ -885,37 +885,37 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
885
885
|
transform: "translate(-50%, -100%)"
|
|
886
886
|
},
|
|
887
887
|
children: [/* @__PURE__ */ o("div", {
|
|
888
|
-
className:
|
|
888
|
+
className: W.tooltipLabel,
|
|
889
889
|
children: t
|
|
890
890
|
}), e.map((e, t) => /* @__PURE__ */ s("div", {
|
|
891
|
-
className:
|
|
891
|
+
className: W.tooltipRow,
|
|
892
892
|
children: [
|
|
893
893
|
/* @__PURE__ */ o("span", {
|
|
894
|
-
className:
|
|
895
|
-
style: { background: e.color ??
|
|
894
|
+
className: W.tooltipDot,
|
|
895
|
+
style: { background: e.color ?? G }
|
|
896
896
|
}),
|
|
897
897
|
/* @__PURE__ */ o("span", {
|
|
898
|
-
className:
|
|
898
|
+
className: W.tooltipName,
|
|
899
899
|
children: e.label
|
|
900
900
|
}),
|
|
901
901
|
/* @__PURE__ */ o("span", {
|
|
902
|
-
className:
|
|
903
|
-
children:
|
|
902
|
+
className: W.tooltipValue,
|
|
903
|
+
children: ve(e.data[h.index] ?? 0)
|
|
904
904
|
})
|
|
905
905
|
]
|
|
906
906
|
}, t))]
|
|
907
907
|
});
|
|
908
908
|
})() : null;
|
|
909
909
|
return /* @__PURE__ */ s("div", {
|
|
910
|
-
className: [
|
|
910
|
+
className: [W.wrapper, d].filter(Boolean).join(" "),
|
|
911
911
|
children: [/* @__PURE__ */ s("div", {
|
|
912
912
|
ref: f,
|
|
913
|
-
className:
|
|
913
|
+
className: W.chart,
|
|
914
914
|
style: { height: l },
|
|
915
915
|
children: [p > 0 && /* @__PURE__ */ s("svg", {
|
|
916
916
|
width: p,
|
|
917
917
|
height: l,
|
|
918
|
-
className:
|
|
918
|
+
className: W.svg,
|
|
919
919
|
onMouseMove: D,
|
|
920
920
|
onMouseLeave: O,
|
|
921
921
|
children: [
|
|
@@ -928,21 +928,21 @@ function _e({ series: e, labels: a, type: c = "line", height: l = 200, showLegen
|
|
|
928
928
|
]
|
|
929
929
|
}), I]
|
|
930
930
|
}), u && e.length > 1 && /* @__PURE__ */ o("div", {
|
|
931
|
-
className:
|
|
931
|
+
className: W.legend,
|
|
932
932
|
children: e.map((e, t) => /* @__PURE__ */ s("div", {
|
|
933
|
-
className:
|
|
933
|
+
className: W.legendItem,
|
|
934
934
|
children: [/* @__PURE__ */ o("div", {
|
|
935
|
-
className:
|
|
936
|
-
style: { background: e.color ??
|
|
935
|
+
className: W.legendMark,
|
|
936
|
+
style: { background: e.color ?? G }
|
|
937
937
|
}), /* @__PURE__ */ o("span", {
|
|
938
|
-
className:
|
|
938
|
+
className: W.legendLabel,
|
|
939
939
|
children: e.label
|
|
940
940
|
})]
|
|
941
941
|
}, t))
|
|
942
942
|
})]
|
|
943
943
|
});
|
|
944
944
|
}
|
|
945
|
-
var
|
|
945
|
+
var J = {
|
|
946
946
|
wrapper: "_wrapper_17ws4_1",
|
|
947
947
|
label: "_label_17ws4_7",
|
|
948
948
|
textarea: "_textarea_17ws4_12",
|
|
@@ -951,14 +951,14 @@ var X = {
|
|
|
951
951
|
};
|
|
952
952
|
//#endregion
|
|
953
953
|
//#region src/components/Textarea/Textarea.tsx
|
|
954
|
-
function
|
|
954
|
+
function be({ label: t, error: n, className: r = "", isValid: i = !0, id: a, rows: c = 4, ...l }) {
|
|
955
955
|
let u = e.useId(), d = a || u, f = `${d}-error`, p = n || !i;
|
|
956
956
|
return /* @__PURE__ */ s("div", {
|
|
957
|
-
className: `${
|
|
957
|
+
className: `${J.wrapper} ${r}`,
|
|
958
958
|
children: [
|
|
959
959
|
t && /* @__PURE__ */ s("label", {
|
|
960
960
|
htmlFor: d,
|
|
961
|
-
className:
|
|
961
|
+
className: J.label,
|
|
962
962
|
children: [t, l.required && /* @__PURE__ */ o("span", {
|
|
963
963
|
"aria-label": "required",
|
|
964
964
|
children: " *"
|
|
@@ -967,46 +967,46 @@ function ve({ label: t, error: n, className: r = "", isValid: i = !0, id: a, row
|
|
|
967
967
|
/* @__PURE__ */ o("textarea", {
|
|
968
968
|
id: d,
|
|
969
969
|
rows: c,
|
|
970
|
-
className: `${
|
|
970
|
+
className: `${J.textarea} ${p ? J.error : ""}`,
|
|
971
971
|
"aria-invalid": p ? "true" : "false",
|
|
972
972
|
"aria-describedby": n ? f : void 0,
|
|
973
973
|
...l
|
|
974
974
|
}),
|
|
975
975
|
n && /* @__PURE__ */ o("span", {
|
|
976
976
|
id: f,
|
|
977
|
-
className:
|
|
977
|
+
className: J.errorText,
|
|
978
978
|
role: "alert",
|
|
979
979
|
children: n
|
|
980
980
|
})
|
|
981
981
|
]
|
|
982
982
|
});
|
|
983
983
|
}
|
|
984
|
-
var
|
|
984
|
+
var Y = {
|
|
985
985
|
overlay: "_overlay_xud7c_1",
|
|
986
986
|
content: "_content_xud7c_8",
|
|
987
987
|
title: "_title_xud7c_26",
|
|
988
988
|
description: "_description_xud7c_34",
|
|
989
989
|
close: "_close_xud7c_40",
|
|
990
990
|
srOnly: "_srOnly_xud7c_62"
|
|
991
|
-
},
|
|
991
|
+
}, xe = ({ trigger: e, children: t, open: n, onOpenChange: r, title: i, description: a, className: c = "", showClose: l = !0 }) => /* @__PURE__ */ s(b.Root, {
|
|
992
992
|
open: n,
|
|
993
993
|
onOpenChange: r,
|
|
994
994
|
children: [e && /* @__PURE__ */ o(b.Trigger, {
|
|
995
995
|
asChild: !0,
|
|
996
996
|
children: e
|
|
997
|
-
}), /* @__PURE__ */ s(b.Portal, { children: [/* @__PURE__ */ o(b.Overlay, { className:
|
|
998
|
-
className: `${
|
|
997
|
+
}), /* @__PURE__ */ s(b.Portal, { children: [/* @__PURE__ */ o(b.Overlay, { className: Y.overlay }), /* @__PURE__ */ s(b.Content, {
|
|
998
|
+
className: `${Y.content} ${c}`,
|
|
999
999
|
children: [
|
|
1000
1000
|
/* @__PURE__ */ o(b.Title, {
|
|
1001
|
-
className: i ?
|
|
1001
|
+
className: i ? Y.title : Y.srOnly,
|
|
1002
1002
|
children: i || "Dialog"
|
|
1003
1003
|
}),
|
|
1004
1004
|
a && /* @__PURE__ */ o(b.Description, {
|
|
1005
|
-
className:
|
|
1005
|
+
className: Y.description,
|
|
1006
1006
|
children: a
|
|
1007
1007
|
}),
|
|
1008
1008
|
l && /* @__PURE__ */ o(b.Close, {
|
|
1009
|
-
className:
|
|
1009
|
+
className: Y.close,
|
|
1010
1010
|
"aria-label": "Close",
|
|
1011
1011
|
children: /* @__PURE__ */ o(h, {
|
|
1012
1012
|
size: 16,
|
|
@@ -1016,7 +1016,7 @@ var Z = {
|
|
|
1016
1016
|
t
|
|
1017
1017
|
]
|
|
1018
1018
|
})] })]
|
|
1019
|
-
}),
|
|
1019
|
+
}), X = {
|
|
1020
1020
|
wrapper: "_wrapper_aimna_1",
|
|
1021
1021
|
label: "_label_aimna_7",
|
|
1022
1022
|
trigger: "_trigger_aimna_12",
|
|
@@ -1035,7 +1035,7 @@ var Z = {
|
|
|
1035
1035
|
today: "_today_aimna_131",
|
|
1036
1036
|
selected: "_selected_aimna_136",
|
|
1037
1037
|
errorText: "_errorText_aimna_142"
|
|
1038
|
-
},
|
|
1038
|
+
}, Se = [
|
|
1039
1039
|
"Mo",
|
|
1040
1040
|
"Tu",
|
|
1041
1041
|
"We",
|
|
@@ -1043,7 +1043,7 @@ var Z = {
|
|
|
1043
1043
|
"Fr",
|
|
1044
1044
|
"Sa",
|
|
1045
1045
|
"Su"
|
|
1046
|
-
],
|
|
1046
|
+
], Ce = [
|
|
1047
1047
|
"January",
|
|
1048
1048
|
"February",
|
|
1049
1049
|
"March",
|
|
@@ -1057,19 +1057,19 @@ var Z = {
|
|
|
1057
1057
|
"November",
|
|
1058
1058
|
"December"
|
|
1059
1059
|
];
|
|
1060
|
-
function
|
|
1060
|
+
function we(e) {
|
|
1061
1061
|
let t = String(e.getMonth() + 1).padStart(2, "0"), n = String(e.getDate()).padStart(2, "0");
|
|
1062
1062
|
return `${e.getFullYear()}-${t}-${n}`;
|
|
1063
1063
|
}
|
|
1064
|
-
function
|
|
1064
|
+
function Z(e, t) {
|
|
1065
1065
|
return !!e && !!t && e.getFullYear() === t.getFullYear() && e.getMonth() === t.getMonth() && e.getDate() === t.getDate();
|
|
1066
1066
|
}
|
|
1067
|
-
function
|
|
1067
|
+
function Te(e, t) {
|
|
1068
1068
|
let n = (new Date(e, t, 1).getDay() + 6) % 7, r = [];
|
|
1069
1069
|
for (let i = 0; i < 42; i++) r.push(new Date(e, t, 1 - n + i));
|
|
1070
1070
|
return r;
|
|
1071
1071
|
}
|
|
1072
|
-
var
|
|
1072
|
+
var Ee = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", error: c, isValid: f = !0, disabled: p = !1, className: m = "", formatDate: h = we }) => {
|
|
1073
1073
|
let g = `${e.useId()}-error`, _ = !!c || !f, [y, b] = i(!1), x = /* @__PURE__ */ new Date(), S = t ?? x, [C, w] = i(S.getFullYear()), [T, E] = i(S.getMonth());
|
|
1074
1074
|
e.useEffect(() => {
|
|
1075
1075
|
y && t && (w(t.getFullYear()), E(t.getMonth()));
|
|
@@ -1080,12 +1080,12 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1080
1080
|
T === 11 ? (E(0), w(C + 1)) : E(T + 1);
|
|
1081
1081
|
}, k = (e) => {
|
|
1082
1082
|
n?.(e), b(!1);
|
|
1083
|
-
}, A =
|
|
1083
|
+
}, A = Te(C, T);
|
|
1084
1084
|
return /* @__PURE__ */ s("div", {
|
|
1085
|
-
className: `${
|
|
1085
|
+
className: `${X.wrapper} ${m}`,
|
|
1086
1086
|
children: [
|
|
1087
1087
|
r && /* @__PURE__ */ o("span", {
|
|
1088
|
-
className:
|
|
1088
|
+
className: X.label,
|
|
1089
1089
|
children: r
|
|
1090
1090
|
}),
|
|
1091
1091
|
/* @__PURE__ */ s(v.Root, {
|
|
@@ -1095,12 +1095,12 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1095
1095
|
asChild: !0,
|
|
1096
1096
|
children: /* @__PURE__ */ s("button", {
|
|
1097
1097
|
type: "button",
|
|
1098
|
-
className: `${
|
|
1098
|
+
className: `${X.trigger} ${_ ? X.error : ""}`,
|
|
1099
1099
|
disabled: p,
|
|
1100
1100
|
"aria-invalid": _ ? "true" : "false",
|
|
1101
1101
|
"aria-describedby": c ? g : void 0,
|
|
1102
1102
|
children: [/* @__PURE__ */ o("span", {
|
|
1103
|
-
className: t ?
|
|
1103
|
+
className: t ? X.valueText : X.placeholder,
|
|
1104
1104
|
children: t ? h(t) : a
|
|
1105
1105
|
}), /* @__PURE__ */ o(l, {
|
|
1106
1106
|
size: 14,
|
|
@@ -1108,16 +1108,16 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1108
1108
|
})]
|
|
1109
1109
|
})
|
|
1110
1110
|
}), /* @__PURE__ */ o(v.Portal, { children: /* @__PURE__ */ s(v.Content, {
|
|
1111
|
-
className:
|
|
1111
|
+
className: X.calendar,
|
|
1112
1112
|
align: "start",
|
|
1113
1113
|
sideOffset: 5,
|
|
1114
1114
|
children: [
|
|
1115
1115
|
/* @__PURE__ */ s("div", {
|
|
1116
|
-
className:
|
|
1116
|
+
className: X.header,
|
|
1117
1117
|
children: [
|
|
1118
1118
|
/* @__PURE__ */ o("button", {
|
|
1119
1119
|
type: "button",
|
|
1120
|
-
className:
|
|
1120
|
+
className: X.navButton,
|
|
1121
1121
|
onClick: D,
|
|
1122
1122
|
"aria-label": "Previous month",
|
|
1123
1123
|
children: /* @__PURE__ */ o(u, {
|
|
@@ -1126,16 +1126,16 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1126
1126
|
})
|
|
1127
1127
|
}),
|
|
1128
1128
|
/* @__PURE__ */ s("span", {
|
|
1129
|
-
className:
|
|
1129
|
+
className: X.monthLabel,
|
|
1130
1130
|
children: [
|
|
1131
|
-
|
|
1131
|
+
Ce[T],
|
|
1132
1132
|
" ",
|
|
1133
1133
|
C
|
|
1134
1134
|
]
|
|
1135
1135
|
}),
|
|
1136
1136
|
/* @__PURE__ */ o("button", {
|
|
1137
1137
|
type: "button",
|
|
1138
|
-
className:
|
|
1138
|
+
className: X.navButton,
|
|
1139
1139
|
onClick: O,
|
|
1140
1140
|
"aria-label": "Next month",
|
|
1141
1141
|
children: /* @__PURE__ */ o(d, {
|
|
@@ -1146,23 +1146,23 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1146
1146
|
]
|
|
1147
1147
|
}),
|
|
1148
1148
|
/* @__PURE__ */ o("div", {
|
|
1149
|
-
className:
|
|
1150
|
-
children:
|
|
1151
|
-
className:
|
|
1149
|
+
className: X.weekdays,
|
|
1150
|
+
children: Se.map((e) => /* @__PURE__ */ o("span", {
|
|
1151
|
+
className: X.weekday,
|
|
1152
1152
|
children: e
|
|
1153
1153
|
}, e))
|
|
1154
1154
|
}),
|
|
1155
1155
|
/* @__PURE__ */ o("div", {
|
|
1156
|
-
className:
|
|
1156
|
+
className: X.grid,
|
|
1157
1157
|
children: A.map((e) => {
|
|
1158
|
-
let n = e.getMonth() !== T, r =
|
|
1158
|
+
let n = e.getMonth() !== T, r = Z(e, t), i = Z(e, x);
|
|
1159
1159
|
return /* @__PURE__ */ o("button", {
|
|
1160
1160
|
type: "button",
|
|
1161
1161
|
className: [
|
|
1162
|
-
|
|
1163
|
-
n ?
|
|
1164
|
-
r ?
|
|
1165
|
-
i && !r ?
|
|
1162
|
+
X.day,
|
|
1163
|
+
n ? X.outside : "",
|
|
1164
|
+
r ? X.selected : "",
|
|
1165
|
+
i && !r ? X.today : ""
|
|
1166
1166
|
].filter(Boolean).join(" "),
|
|
1167
1167
|
onClick: () => k(e),
|
|
1168
1168
|
children: e.getDate()
|
|
@@ -1174,12 +1174,277 @@ var we = ({ value: t, onChange: n, label: r, placeholder: a = "Select a date", e
|
|
|
1174
1174
|
}),
|
|
1175
1175
|
c && /* @__PURE__ */ o("span", {
|
|
1176
1176
|
id: g,
|
|
1177
|
-
className:
|
|
1177
|
+
className: X.errorText,
|
|
1178
1178
|
role: "alert",
|
|
1179
1179
|
children: c
|
|
1180
1180
|
})
|
|
1181
1181
|
]
|
|
1182
1182
|
});
|
|
1183
|
-
}
|
|
1183
|
+
}, Q = {
|
|
1184
|
+
spinner: "_spinner_wspyi_1",
|
|
1185
|
+
frame: "_frame_wspyi_8"
|
|
1186
|
+
}, $ = {
|
|
1187
|
+
accelerate: {
|
|
1188
|
+
viewBox: "0 0 7 5",
|
|
1189
|
+
delay: 50,
|
|
1190
|
+
frames: [
|
|
1191
|
+
"M0 2H1V3H0V2Z",
|
|
1192
|
+
"M0 2H1V3H0V2Z",
|
|
1193
|
+
"M0 2H1V3H0V2Z",
|
|
1194
|
+
"M1 2H2V3H1V2Z M2 2H3V3H2V2Z",
|
|
1195
|
+
"M1 2H2V3H1V2Z M2 2H3V3H2V2Z",
|
|
1196
|
+
"M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z",
|
|
1197
|
+
"M4 2H5V3H4V2Z M5 2H6V3H5V2Z",
|
|
1198
|
+
"M4 2H5V3H4V2Z M5 2H6V3H5V2Z",
|
|
1199
|
+
"M6 2H7V3H6V2Z",
|
|
1200
|
+
"M6 2H7V3H6V2Z",
|
|
1201
|
+
"M6 2H7V3H6V2Z",
|
|
1202
|
+
"M6 2H7V3H6V2Z",
|
|
1203
|
+
"M6 2H7V3H6V2Z",
|
|
1204
|
+
"M4 2H5V3H4V2Z M5 2H6V3H5V2Z",
|
|
1205
|
+
"M4 2H5V3H4V2Z M5 2H6V3H5V2Z",
|
|
1206
|
+
"M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z",
|
|
1207
|
+
"M1 2H2V3H1V2Z M2 2H3V3H2V2Z",
|
|
1208
|
+
"M1 2H2V3H1V2Z M2 2H3V3H2V2Z",
|
|
1209
|
+
"M0 2H1V3H0V2Z",
|
|
1210
|
+
"M0 2H1V3H0V2Z"
|
|
1211
|
+
]
|
|
1212
|
+
},
|
|
1213
|
+
accordion: {
|
|
1214
|
+
viewBox: "0 0 7 5",
|
|
1215
|
+
delay: 100,
|
|
1216
|
+
frames: [
|
|
1217
|
+
"M0 2H1V3H0V2Z",
|
|
1218
|
+
"M1 2H2V3H1V2Z",
|
|
1219
|
+
"M2 2H3V3H2V2Z",
|
|
1220
|
+
"M3 2H4V3H3V2Z",
|
|
1221
|
+
"M4 2H5V3H4V2Z",
|
|
1222
|
+
"M5 2H6V3H5V2Z",
|
|
1223
|
+
"M6 2H7V3H6V2Z",
|
|
1224
|
+
"M5 2H6V3H5V2Z",
|
|
1225
|
+
"M4 2H5V3H4V2Z",
|
|
1226
|
+
"M3 2H4V3H3V2Z",
|
|
1227
|
+
"M2 2H3V3H2V2Z",
|
|
1228
|
+
"M1 2H2V3H1V2Z"
|
|
1229
|
+
]
|
|
1230
|
+
},
|
|
1231
|
+
"circle-open-close": {
|
|
1232
|
+
viewBox: "0 0 7 5",
|
|
1233
|
+
delay: 100,
|
|
1234
|
+
frames: [
|
|
1235
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1236
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1237
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1238
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1239
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1240
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1241
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1242
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1243
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1244
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1245
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1246
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1247
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1248
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1249
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1250
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M3 2H4V3H3V2Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M2 3H3V4H2V3Z M2 2H3V3H2V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z"
|
|
1251
|
+
]
|
|
1252
|
+
},
|
|
1253
|
+
"circle-rotate": {
|
|
1254
|
+
viewBox: "0 0 7 5",
|
|
1255
|
+
delay: 100,
|
|
1256
|
+
frames: [
|
|
1257
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1258
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M4 1H5V2H4V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1259
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 2H5V3H4V2Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1260
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1261
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1262
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1263
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1264
|
+
"M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M1 2H2V3H1V2Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z M4 1H5V2H4V1Z M5 2H6V3H5V2Z M1 3H2V4H1V3Z M3 3H4V4H3V3Z M4 3H5V4H4V3Z M4 2H5V3H4V2Z M5 3H6V4H5V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z"
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
clock: {
|
|
1268
|
+
viewBox: "0 0 7 5",
|
|
1269
|
+
delay: 250,
|
|
1270
|
+
frames: [
|
|
1271
|
+
"M3 2H4V3H3V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z",
|
|
1272
|
+
"M3 2H4V3H3V2Z M4 2H5V3H4V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z",
|
|
1273
|
+
"M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z",
|
|
1274
|
+
"M3 2H4V3H3V2Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 0H3V1H2V0Z M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z"
|
|
1275
|
+
]
|
|
1276
|
+
},
|
|
1277
|
+
coffee: {
|
|
1278
|
+
viewBox: "0 0 7 5",
|
|
1279
|
+
delay: 250,
|
|
1280
|
+
frames: [
|
|
1281
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z",
|
|
1282
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z",
|
|
1283
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z",
|
|
1284
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 1H6V4H3V1Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z",
|
|
1285
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 2H6V4H3V2Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z",
|
|
1286
|
+
"M5 4H6V5H5V4Z M4 4H5V5H4V4Z M3 4H4V5H3V4Z M3 3H6V4H3V3Z M2 3H3V4H2V3Z M0 1H1V2H0V1Z M1 1H2V2H1V1Z M0 2H1V3H0V2Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z"
|
|
1287
|
+
]
|
|
1288
|
+
},
|
|
1289
|
+
grow: {
|
|
1290
|
+
viewBox: "0 0 7 5",
|
|
1291
|
+
delay: 250,
|
|
1292
|
+
frames: [
|
|
1293
|
+
"M3 2H4V3H3V2Z",
|
|
1294
|
+
"M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z",
|
|
1295
|
+
"M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z",
|
|
1296
|
+
"M1 0H6V5H1V0Z",
|
|
1297
|
+
"M2 5H1L1 4H2L2 5ZM4 5H3V4H4V5ZM6 5H5V4H6V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM2 1L1 1L1 0L2 0V1ZM4 1L3 1V0L4 0V1ZM6 1L5 1V0L6 0V1Z",
|
|
1298
|
+
"M4 5H3V4H4V5ZM2 3H1L1 2L2 2L2 3ZM4 3H3V2L4 2V3ZM6 3H5V2L6 2V3ZM4 1L3 1V0L4 0V1Z"
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
hourglass: {
|
|
1302
|
+
viewBox: "0 0 7 5",
|
|
1303
|
+
delay: 500,
|
|
1304
|
+
frames: [
|
|
1305
|
+
"M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 3H4V4H3V3Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1306
|
+
"M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 2H4V3H3V2Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M3 1H4V2H3V1Z M3 3H4V4H3V3Z",
|
|
1307
|
+
"M4 1H5V2H4V1Z M5 0H6V1H5V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 1H3V2H2V1Z M3 2H4V3H3V2Z M4 3H5V4H4V3Z M5 4H6V5H5V4Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M3 1H4V2H3V1Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z",
|
|
1308
|
+
"M3 3L3 4L2 4L2 5L1 5L1 -2.18557e-07L2 -1.74846e-07L2 1L3 1L3 2L4 2L4 3L3 3ZM5 5L5 4L4 4L4 3L5 3L5 2L4 2L4 1L5 1L5 -4.37114e-08L6 0L6 5L5 5Z"
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1311
|
+
loop: {
|
|
1312
|
+
viewBox: "0 0 7 5",
|
|
1313
|
+
delay: 100,
|
|
1314
|
+
frames: /* @__PURE__ */ "M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M3 3H4V4H3V3Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M2 2H3V3H2V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 1H3V2H2V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M4 1H5V2H4V1Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M3 3H4V4H3V3Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M2 4H3V5H2V4Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M1 4H2V5H1V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z.M3 0H4V1H3V0Z M2 1H3V2H2V1Z M2 2H3V3H2V2Z M4 1H5V2H4V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z M5 4H6V5H5V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M4 4H5V5H4V4Z M0 2H1V3H0V2Z".split(".")
|
|
1315
|
+
},
|
|
1316
|
+
pacman: {
|
|
1317
|
+
viewBox: "0 0 7 5",
|
|
1318
|
+
delay: 250,
|
|
1319
|
+
frames: ["M1 1H2V2H1V1Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M5 2H6V3H5V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M1 2H2V3H1V2Z M2 2H3V3H2V2Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M3 3H4V4H3V3Z", "M0 1H1V2H0V1Z M1 1H2V2H1V1Z M2 1H3V2H2V1Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 1H5V2H4V1Z M3 0H4V1H3V0Z M0 2H1V3H0V2Z M1 2H2V3H1V2Z M0 3H1V4H0V3Z M1 3H2V4H1V3Z M2 3H3V4H2V3Z M1 4H2V5H1V4Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 3H5V4H4V3Z M3 3H4V4H3V3Z M6 2H7V3H6V2Z"]
|
|
1320
|
+
},
|
|
1321
|
+
pong: {
|
|
1322
|
+
viewBox: "0 0 7 5",
|
|
1323
|
+
delay: 250,
|
|
1324
|
+
frames: [
|
|
1325
|
+
"M0 2H1V3H0V2Z M6 4H7V5H6V4Z M0 1H1V2H0V1Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M0 0H1V1H0V0Z M6 2H7V3H6V2Z",
|
|
1326
|
+
"M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z",
|
|
1327
|
+
"M0 4H1V5H0V4Z M6 2H7V3H6V2Z M0 3H1V4H0V3Z M6 1H7V2H6V1Z M5 2H6V3H5V2Z M0 2H1V3H0V2Z M6 0H7V1H6V0Z",
|
|
1328
|
+
"M0 3H1V4H0V3Z M6 3H7V4H6V3Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 2H4V3H3V2Z M0 1H1V2H0V1Z M6 1H7V2H6V1Z"
|
|
1329
|
+
]
|
|
1330
|
+
},
|
|
1331
|
+
pulse: {
|
|
1332
|
+
viewBox: "0 0 7 5",
|
|
1333
|
+
delay: 250,
|
|
1334
|
+
frames: [
|
|
1335
|
+
"M3 2H4V3H3V2Z",
|
|
1336
|
+
"M2 2H3V3H2V2Z M3 1H4V2H3V1Z M4 2H5V3H4V2Z M3 3H4V4H3V3Z",
|
|
1337
|
+
"M1 1H2V2H1V1Z M1 2H2V3H1V2Z M1 3H2V4H1V3Z M2 4H3V5H2V4Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 3H6V4H5V3Z M5 2H6V3H5V2Z M5 1H6V2H5V1Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M2 0H3V1H2V0Z"
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
rotate: {
|
|
1341
|
+
viewBox: "0 0 7 5",
|
|
1342
|
+
delay: 250,
|
|
1343
|
+
frames: [
|
|
1344
|
+
"M1 0H2V1H1V0Z",
|
|
1345
|
+
"M5 0H6V1H5V0Z",
|
|
1346
|
+
"M5 4H6V5H5V4Z",
|
|
1347
|
+
"M1 4H2V5H1V4Z"
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1350
|
+
rowing: {
|
|
1351
|
+
viewBox: "0 0 7 5",
|
|
1352
|
+
delay: 250,
|
|
1353
|
+
frames: [
|
|
1354
|
+
"M4 2H7V5H1V4H2V3H1V4H0V2H3V1H4V2ZM5 1H4V0H5V1ZM3 4H6V3H3V4Z",
|
|
1355
|
+
"M4 2H7V5H1V4H3V3H1V4H0V2H3V1H4V2ZM4 4H6V3H4V4ZM3 1H2V0H3V1Z",
|
|
1356
|
+
"M4 2H7V5H1V4H4V3H1V4H0V2H3V1H4V2ZM5 4H6V3H5V4ZM3 1H2V0H3V1Z",
|
|
1357
|
+
"M4 2H7V5H1V4H6V3H1V4H0V2H3V0H4V2Z"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
sliders: {
|
|
1361
|
+
viewBox: "0 0 7 5",
|
|
1362
|
+
delay: 250,
|
|
1363
|
+
frames: [
|
|
1364
|
+
"M0 0H1V1H0V0Z M4 3H5V4H4V3Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M2 0H3V1H2V0Z M6 3H7V4H6V3Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 2H2V3H1V2Z M5 1H6V2H5V1Z M1 3H2V4H1V3Z M1 4H2V5H1V4Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 1H1V2H0V1Z M4 2H5V3H4V2Z",
|
|
1365
|
+
"M0 1H1V2H0V1Z M4 2H5V3H4V2Z M0 3H1V4H0V3Z M4 0H5V1H4V0Z M2 3H3V4H2V3Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z M6 2H7V3H6V2Z M1 1H2V2H1V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M5 0H6V1H5V0Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M0 2H1V3H0V2Z M4 1H5V2H4V1Z",
|
|
1366
|
+
"M0 2H1V3H0V2Z M4 3H5V4H4V3Z M0 4H1V5H0V4Z M4 1H5V2H4V1Z M2 4H3V5H2V4Z M6 1H7V2H6V1Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 2H2V3H1V2Z M5 3H6V4H5V3Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M1 4H2V5H1V4Z M5 1H6V2H5V1Z M1 1H2V2H1V1Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z",
|
|
1367
|
+
"M0 1H1V2H0V1Z M4 4H5V5H4V4Z M0 3H1V4H0V3Z M4 2H5V3H4V2Z M2 3H3V4H2V3Z M6 2H7V3H6V2Z M2 1H3V2H2V1Z M6 4H7V5H6V4Z M1 1H2V2H1V1Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M6 3H7V4H6V3Z M1 3H2V4H1V3Z M5 2H6V3H5V2Z M1 4H2V5H1V4Z M1 0H2V1H1V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M0 2H1V3H0V2Z M4 3H5V4H4V3Z"
|
|
1368
|
+
]
|
|
1369
|
+
},
|
|
1370
|
+
"smile-wink": {
|
|
1371
|
+
viewBox: "0 0 7 5",
|
|
1372
|
+
delay: 500,
|
|
1373
|
+
frames: ["M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM5 2H4V1H5V2ZM7 2H6V1H7V2ZM2 1H1V0H2V1ZM6 1H5V0H6V1Z", "M5 5H2V4H5V5ZM2 4H1V3H2V4ZM6 4H5V3H6V4ZM1 2H0V1H1V2ZM3 2H2V1H3V2ZM7 2H4V1H7V2ZM2 1H1V0H2V1Z"]
|
|
1374
|
+
},
|
|
1375
|
+
snake: {
|
|
1376
|
+
viewBox: "0 0 7 5",
|
|
1377
|
+
delay: 100,
|
|
1378
|
+
frames: /* @__PURE__ */ "M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M5 0H6V1H5V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M5 1H6V2H5V1Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 2H6V3H5V2Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M5 3H6V4H5V3Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M5 4H6V5H5V4Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M4 4H5V5H4V4Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 4H3V5H2V4Z M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 3H3V4H2V3Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 2H3V3H2V2Z M2 2H3V3H2V2Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z M2 1H3V2H2V1Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M3 0H4V1H3V0Z M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M4 0H5V1H4V0Z M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M5 0H6V1H5V0Z M6 0H7V1H6V0Z.M6 0H7V1H6V0Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M1 2H2V3H1V2Z M2 1H3V2H2V1Z M2 3H3V4H2V3Z M3 2H4V3H3V2Z.M2 2H3V3H2V2Z.M2 2H3V3H2V2Z".split(".")
|
|
1379
|
+
},
|
|
1380
|
+
"snake-eight": {
|
|
1381
|
+
viewBox: "0 0 7 5",
|
|
1382
|
+
delay: 100,
|
|
1383
|
+
frames: /* @__PURE__ */ "M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z.M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z M2 0H3V1H2V0Z.M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z M1 0H2V1H1V0Z.M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z M0 0H1V1H0V0Z.M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z M0 1H1V2H0V1Z.M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z M0 2H1V3H0V2Z.M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z M0 3H1V4H0V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z M0 4H1V5H0V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z M1 4H2V5H1V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M2 4H3V5H2V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z.M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z.M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z M3 0H4V1H3V0Z.M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z M4 0H5V1H4V0Z.M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z M5 0H6V1H5V0Z.M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z M6 0H7V1H6V0Z.M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z M6 1H7V2H6V1Z.M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z M6 2H7V3H6V2Z.M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z M6 3H7V4H6V3Z.M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z M6 4H7V5H6V4Z.M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z M5 4H6V5H5V4Z.M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z M4 4H5V5H4V4Z.M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z M3 4H4V5H3V4Z.M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z M3 3H4V4H3V3Z.M1 0H2V1H1V0Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M3 1H4V2H3V1Z M3 2H4V3H3V2Z".split(".")
|
|
1384
|
+
},
|
|
1385
|
+
spark: {
|
|
1386
|
+
viewBox: "0 0 7 5",
|
|
1387
|
+
delay: 250,
|
|
1388
|
+
frames: ["M1 0H2V1H1V0Z M3 1H4V2H3V1Z M5 0H6V1H5V0Z M0 2H1V3H0V2Z M6 2H7V3H6V2Z M3 3H4V4H3V3Z M1 4H2V5H1V4Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z M5 4H6V5H5V4Z", "M0 1H1V2H0V1Z M3 1H4V2H3V1Z M6 1H7V2H6V1Z M6 3H7V4H6V3Z M3 3H4V4H3V3Z M0 3H1V4H0V3Z M2 2H3V3H2V2Z M4 2H5V3H4V2Z"]
|
|
1389
|
+
},
|
|
1390
|
+
spectrum: {
|
|
1391
|
+
viewBox: "0 0 7 5",
|
|
1392
|
+
delay: 250,
|
|
1393
|
+
frames: [
|
|
1394
|
+
"M0 1H1V4H0V1Z M2 0H3V5H2V0Z M4 2H5V3H4V2Z M6 1H7V4H6V1Z",
|
|
1395
|
+
"M0 2H1V3H0V2Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 0H7V5H6V0Z",
|
|
1396
|
+
"M0 1H1V4H0V1Z M2 2H3V3H2V2Z M4 0H5V5H4V0Z M6 1H7V4H6V1Z",
|
|
1397
|
+
"M0 0H1V5H0V0Z M2 1H3V4H2V1Z M4 1H5V4H4V1Z M6 2H7V3H6V2Z"
|
|
1398
|
+
]
|
|
1399
|
+
},
|
|
1400
|
+
speedometer: {
|
|
1401
|
+
viewBox: "0 0 7 5",
|
|
1402
|
+
delay: 250,
|
|
1403
|
+
frames: [
|
|
1404
|
+
"M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M2 2H3V3H2V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z",
|
|
1405
|
+
"M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z",
|
|
1406
|
+
"M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M4 2H5V3H4V2Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z",
|
|
1407
|
+
"M1 4H2V5H1V4Z M0 2H1V3H0V2Z M1 1H2V2H1V1Z M2 0H3V1H2V0Z M3 0H4V1H3V0Z M6 2H7V3H6V2Z M6 3H7V4H6V3Z M5 4H6V5H5V4Z M0 3H1V4H0V3Z M3 3H4V4H3V3Z M3 2H4V3H3V2Z M3 1H4V2H3V1Z M4 0H5V1H4V0Z M5 1H6V2H5V1Z"
|
|
1408
|
+
]
|
|
1409
|
+
},
|
|
1410
|
+
terminal: {
|
|
1411
|
+
viewBox: "0 0 7 5",
|
|
1412
|
+
delay: 500,
|
|
1413
|
+
frames: ["M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H5V3H4V0Z M4 4H5V5H4V4Z M5 0H6V3H5V0Z M5 4H6V5H5V4Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z", "M1 2H2V3H1V2Z M1 0H2V1H1V0Z M1 4H2V5H1V4Z M2 3H3V4H2V3Z M2 1H3V2H2V1Z M2 0H3V1H2V0Z M3 0H4V5H3V0Z M4 0H6V5H4V0Z M6 0H7V5H6V0Z M2 4H3V5H2V4Z M0 0H1V5H0V0Z"]
|
|
1414
|
+
},
|
|
1415
|
+
"wi-fi": {
|
|
1416
|
+
viewBox: "0 0 7 5",
|
|
1417
|
+
delay: 250,
|
|
1418
|
+
frames: [
|
|
1419
|
+
"M3 4H4V5H3V4Z",
|
|
1420
|
+
"M3 4H4V5H3V4Z M5 3H6V4H5V3Z M1 3H2V4H1V3Z M2 2H5V3H2V2Z",
|
|
1421
|
+
"M3 4H4V5H3V4Z M5 3H6V4H5V3Z M6 1H7V2H6V1Z M1 3H2V4H1V3Z M0 1H1V2H0V1Z M2 2H5V3H2V2Z M1 0H6V1H1V0Z"
|
|
1422
|
+
]
|
|
1423
|
+
}
|
|
1424
|
+
}, De = Object.keys($);
|
|
1425
|
+
//#endregion
|
|
1426
|
+
//#region src/components/Spinner/Spinner.tsx
|
|
1427
|
+
function Oe({ name: e = De[0], size: t = 21, color: n = "currentColor", delay: r, className: i = "", "aria-label": a = "Loading" }) {
|
|
1428
|
+
let s = $[e], [, , c, l] = s.viewBox.split(" ").map(Number), u = l / c, d = typeof t == "number" ? t * u : `calc(${t} * ${u})`, f = r ?? s.delay, p = s.frames.length, m = p * f;
|
|
1429
|
+
return /* @__PURE__ */ o("svg", {
|
|
1430
|
+
className: `${Q.spinner} ${i}`,
|
|
1431
|
+
width: t,
|
|
1432
|
+
height: d,
|
|
1433
|
+
viewBox: s.viewBox,
|
|
1434
|
+
fill: "none",
|
|
1435
|
+
role: "status",
|
|
1436
|
+
"aria-label": a,
|
|
1437
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1438
|
+
children: s.frames.map((e, t) => e ? /* @__PURE__ */ o("path", {
|
|
1439
|
+
className: Q.frame,
|
|
1440
|
+
d: e,
|
|
1441
|
+
fill: n,
|
|
1442
|
+
style: {
|
|
1443
|
+
animation: `indx-spinner-${p} ${m}ms step-end infinite`,
|
|
1444
|
+
animationDelay: `${t * f - m}ms`
|
|
1445
|
+
}
|
|
1446
|
+
}, t) : null)
|
|
1447
|
+
});
|
|
1448
|
+
}
|
|
1184
1449
|
//#endregion
|
|
1185
|
-
export { E as Base, S as Button,
|
|
1450
|
+
export { E as Base, S as Button, ye as Chart, w as Checkbox, pe as Chip, Ee as DatePicker, O as FilterPanelBase, N as InputField, xe as Modal, ie as Popover, fe as ProgressBar, F as RadioButton, j as SearchField, ne as Select, te as Slider, Oe as Spinner, ae as Table, ce as TableCell, oe as TableHeader, ue as TableIcon, se as TableRow, le as TableValue, de as Tabs, be as Textarea, ee as ToggleSwitch, me as Tooltip, De as spinnerNames };
|