@vehiclehistory/property-lib 0.0.81 → 0.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ui/Autocomplete/Autocomplete.d.ts +1 -0
- package/dist/main.es.js +399 -381
- package/dist/main.umd.js +1 -1
- package/package.json +1 -1
package/dist/main.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as c, jsxs as M, Fragment as k } from "react/jsx-runtime";
|
|
2
2
|
import m from "classnames";
|
|
3
|
-
import { memo as
|
|
4
|
-
const
|
|
3
|
+
import { memo as A, useState as Z, useEffect as N } from "react";
|
|
4
|
+
const W = {
|
|
5
5
|
xxSmall: "w-4 h-4",
|
|
6
6
|
xSmall: "w-5 h-5",
|
|
7
7
|
small: "w-6 h-6",
|
|
@@ -10,7 +10,7 @@ const R = {
|
|
|
10
10
|
mediumPlus: "w-9 h-9",
|
|
11
11
|
large: "w-10 h-10",
|
|
12
12
|
xLarge: "w-12 h-12"
|
|
13
|
-
},
|
|
13
|
+
}, U = {
|
|
14
14
|
account: {
|
|
15
15
|
path: '<path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" />'
|
|
16
16
|
},
|
|
@@ -494,14 +494,14 @@ const R = {
|
|
|
494
494
|
youtube: {
|
|
495
495
|
path: '<path d="M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.5,18.78 17.18,18.84C15.88,18.91 14.69,18.94 13.59,18.94L12,19C7.81,19 5.2,18.84 4.17,18.56C3.27,18.31 2.69,17.73 2.44,16.83C2.31,16.36 2.22,15.73 2.16,14.93C2.09,14.13 2.06,13.44 2.06,12.84L2,12C2,9.81 2.16,8.2 2.44,7.17C2.69,6.27 3.27,5.69 4.17,5.44C4.64,5.31 5.5,5.22 6.82,5.16C8.12,5.09 9.31,5.06 10.41,5.06L12,5C16.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z" />'
|
|
496
496
|
}
|
|
497
|
-
},
|
|
497
|
+
}, Q = (d) => U[d], G = ({
|
|
498
498
|
color: d = "text-current",
|
|
499
499
|
className: e,
|
|
500
500
|
name: t,
|
|
501
501
|
size: a = "medium",
|
|
502
502
|
viewBox: n = "0 0 20 20"
|
|
503
503
|
}) => {
|
|
504
|
-
const s =
|
|
504
|
+
const s = Q(t), [l, i] = Z(d), [r, o] = Z(s);
|
|
505
505
|
return N(() => {
|
|
506
506
|
o(s);
|
|
507
507
|
}, [s]), N(() => {
|
|
@@ -512,28 +512,28 @@ const R = {
|
|
|
512
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
513
513
|
className: m(
|
|
514
514
|
"fill-current flex-shrink-0",
|
|
515
|
-
|
|
516
|
-
|
|
515
|
+
W[a],
|
|
516
|
+
l,
|
|
517
517
|
e
|
|
518
518
|
),
|
|
519
519
|
style: { maxWidth: "4em" },
|
|
520
520
|
role: "presentation",
|
|
521
521
|
viewBox: n,
|
|
522
522
|
dangerouslySetInnerHTML: {
|
|
523
|
-
__html:
|
|
523
|
+
__html: r && r.path
|
|
524
524
|
}
|
|
525
525
|
}
|
|
526
526
|
);
|
|
527
|
-
},
|
|
527
|
+
}, y = A(G), J = ({
|
|
528
528
|
children: d,
|
|
529
529
|
className: e,
|
|
530
530
|
clickHandler: t,
|
|
531
531
|
panelClass: a,
|
|
532
532
|
title: n,
|
|
533
533
|
unmount: s = !0,
|
|
534
|
-
isOpen:
|
|
534
|
+
isOpen: l = !1
|
|
535
535
|
}) => {
|
|
536
|
-
const [i,
|
|
536
|
+
const [i, r] = Z(l);
|
|
537
537
|
return /* @__PURE__ */ c(
|
|
538
538
|
"div",
|
|
539
539
|
{
|
|
@@ -554,12 +554,12 @@ const R = {
|
|
|
554
554
|
),
|
|
555
555
|
title: n,
|
|
556
556
|
onClick: () => {
|
|
557
|
-
|
|
557
|
+
r(!i), t && t(!i);
|
|
558
558
|
},
|
|
559
559
|
children: [
|
|
560
560
|
/* @__PURE__ */ c("div", { className: "accordion-title font-medium text-slate-700 sm-max:!text-base text-lg flex items-center", children: n }),
|
|
561
561
|
/* @__PURE__ */ c("span", { className: "accordion-icon ml-6 h-7 flex items-center", children: /* @__PURE__ */ c(
|
|
562
|
-
|
|
562
|
+
y,
|
|
563
563
|
{
|
|
564
564
|
name: "chevronDown",
|
|
565
565
|
size: "small",
|
|
@@ -593,17 +593,17 @@ const R = {
|
|
|
593
593
|
] })
|
|
594
594
|
}
|
|
595
595
|
);
|
|
596
|
-
},
|
|
596
|
+
}, F1 = A(J), _ = ({
|
|
597
597
|
children: d,
|
|
598
598
|
className: e,
|
|
599
599
|
messages: t = [],
|
|
600
600
|
messagesClass: a,
|
|
601
601
|
title: n = "",
|
|
602
602
|
titleClass: s = "",
|
|
603
|
-
props:
|
|
603
|
+
props: l = {},
|
|
604
604
|
type: i = "error"
|
|
605
605
|
}) => {
|
|
606
|
-
const
|
|
606
|
+
const r = {
|
|
607
607
|
error: {
|
|
608
608
|
icon: "error",
|
|
609
609
|
iconColor: "text-red-500",
|
|
@@ -624,7 +624,7 @@ const R = {
|
|
|
624
624
|
iconColor: "text-yellow-500",
|
|
625
625
|
styles: "bg-yellow-50 border-yellow-300 text-yellow-700"
|
|
626
626
|
}
|
|
627
|
-
}, { icon: o, iconColor:
|
|
627
|
+
}, { icon: o, iconColor: h, styles: p } = r[i];
|
|
628
628
|
return /* @__PURE__ */ c(
|
|
629
629
|
"div",
|
|
630
630
|
{
|
|
@@ -634,14 +634,14 @@ const R = {
|
|
|
634
634
|
p,
|
|
635
635
|
e
|
|
636
636
|
),
|
|
637
|
-
...
|
|
637
|
+
...l,
|
|
638
638
|
children: /* @__PURE__ */ M("div", { className: "flex", children: [
|
|
639
639
|
/* @__PURE__ */ c("div", { className: "flex-shrink-0", children: /* @__PURE__ */ c(
|
|
640
|
-
|
|
640
|
+
y,
|
|
641
641
|
{
|
|
642
642
|
name: o,
|
|
643
643
|
viewBox: "0 0 24 24",
|
|
644
|
-
className:
|
|
644
|
+
className: h,
|
|
645
645
|
size: "xSmall"
|
|
646
646
|
}
|
|
647
647
|
) }),
|
|
@@ -663,67 +663,69 @@ const R = {
|
|
|
663
663
|
] })
|
|
664
664
|
}
|
|
665
665
|
);
|
|
666
|
-
},
|
|
666
|
+
}, T1 = A(_), D1 = ({
|
|
667
667
|
autoFocus: d = !1,
|
|
668
668
|
className: e,
|
|
669
669
|
dataSearch: t = "container",
|
|
670
670
|
defaultValue: a = "",
|
|
671
671
|
floatingLabel: n = "",
|
|
672
672
|
id: s = "",
|
|
673
|
-
inputClass:
|
|
673
|
+
inputClass: l,
|
|
674
674
|
leftIcon: i = "homeSearch",
|
|
675
|
-
mobileBackdrop:
|
|
675
|
+
mobileBackdrop: r = !1,
|
|
676
676
|
name: o = "",
|
|
677
|
-
options:
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
677
|
+
options: h = [],
|
|
678
|
+
parentProps: p = {},
|
|
679
|
+
placeholder: V = "",
|
|
680
|
+
props: C = {},
|
|
681
|
+
rightIcon: f = "",
|
|
682
|
+
required: v = !1,
|
|
683
|
+
showSearchIcon: x = !0,
|
|
684
|
+
showRightIcon: u = !1,
|
|
685
|
+
size: b = "medium",
|
|
686
|
+
styles: w = null,
|
|
687
|
+
title: g = "",
|
|
688
|
+
type: E,
|
|
689
|
+
useGoogle: j = !1,
|
|
690
|
+
useReact: P = !1
|
|
690
691
|
}) => {
|
|
691
|
-
const
|
|
692
|
+
const R = P ? { defaultValue: a } : { value: a };
|
|
692
693
|
return /* @__PURE__ */ M(
|
|
693
694
|
"div",
|
|
694
695
|
{
|
|
695
696
|
id: s,
|
|
696
697
|
"data-search": t,
|
|
697
|
-
"data-search-type":
|
|
698
|
-
"data-use-google":
|
|
698
|
+
"data-search-type": E,
|
|
699
|
+
"data-use-google": j,
|
|
699
700
|
className: m("Autocomplete", e),
|
|
700
|
-
style:
|
|
701
|
+
style: w ? { ...w } : null,
|
|
702
|
+
...p,
|
|
701
703
|
children: [
|
|
702
|
-
|
|
704
|
+
x && /* @__PURE__ */ M(
|
|
703
705
|
"span",
|
|
704
706
|
{
|
|
705
707
|
className: m(
|
|
706
708
|
"search-icon-left absolute inset-y-0 left-0 flex items-center pl-2",
|
|
707
709
|
{
|
|
708
|
-
"pointer-events-none":
|
|
710
|
+
"pointer-events-none": r
|
|
709
711
|
}
|
|
710
712
|
),
|
|
711
713
|
children: [
|
|
712
714
|
/* @__PURE__ */ c(
|
|
713
|
-
|
|
715
|
+
y,
|
|
714
716
|
{
|
|
715
717
|
className: "home-search select-none text-gray-500",
|
|
716
718
|
name: i,
|
|
717
|
-
size:
|
|
719
|
+
size: b === "xLarge" ? "small" : "xSmall",
|
|
718
720
|
viewBox: "0 0 24 24"
|
|
719
721
|
}
|
|
720
722
|
),
|
|
721
723
|
/* @__PURE__ */ c(
|
|
722
|
-
|
|
724
|
+
y,
|
|
723
725
|
{
|
|
724
726
|
className: "arrow-left select-none text-gray-500 hidden",
|
|
725
727
|
name: "arrowLeft",
|
|
726
|
-
size:
|
|
728
|
+
size: b === "xLarge" ? "small" : "xSmall",
|
|
727
729
|
viewBox: "0 0 24 24"
|
|
728
730
|
}
|
|
729
731
|
)
|
|
@@ -738,22 +740,22 @@ const R = {
|
|
|
738
740
|
className: m(
|
|
739
741
|
"w-full bg-white placeholder:bg-white rounded border border-gray-300 py-2 pr-8 shadow-sm focus:outline-none sm-max:text-sm placeholder:text-gray-500 sm-max:placeholder:text-sm placeholder-shown:text-ellipsis truncate",
|
|
740
742
|
{
|
|
741
|
-
"pl-8":
|
|
742
|
-
"px-3 h-10":
|
|
743
|
-
"px-4 h-12":
|
|
744
|
-
"px-5 h-[60px] sm:!text-base":
|
|
743
|
+
"pl-8": x === !0,
|
|
744
|
+
"px-3 h-10": b === "medium",
|
|
745
|
+
"px-4 h-12": b === "large",
|
|
746
|
+
"px-5 h-[60px] sm:!text-base": b === "xLarge",
|
|
745
747
|
peer: n
|
|
746
748
|
},
|
|
747
|
-
|
|
749
|
+
l
|
|
748
750
|
),
|
|
749
|
-
required:
|
|
751
|
+
required: v,
|
|
750
752
|
autoComplete: "off",
|
|
751
|
-
placeholder: !
|
|
753
|
+
placeholder: !V && n ? " " : V,
|
|
752
754
|
type: "search",
|
|
753
755
|
name: o || "search-input",
|
|
754
756
|
"data-id": "search-input",
|
|
755
|
-
...
|
|
756
|
-
...
|
|
757
|
+
...R,
|
|
758
|
+
...C
|
|
757
759
|
}
|
|
758
760
|
),
|
|
759
761
|
n && /* @__PURE__ */ c(
|
|
@@ -762,10 +764,10 @@ const R = {
|
|
|
762
764
|
className: m(
|
|
763
765
|
"floating-label absolute text-sm !normal-case text-gray-500 duration-300 transform -translate-y-4 scale-75 top-2 z-10 origin-[0] bg-white px-2 peer-focus:text-[#222] peer-focus:px-2 peer-focus:bg-white peer-placeholder-shown:bg-white peer-placeholder-shown:scale-100 peer-placeholder-shown:-translate-y-1/2 peer-placeholder-shown:top-1/2 peer-focus:top-2 peer-focus:scale-75 peer-focus:-translate-y-4 start-1 pointer-events-none",
|
|
764
766
|
{
|
|
765
|
-
"!left-7":
|
|
766
|
-
"left-2":
|
|
767
|
-
"left-3":
|
|
768
|
-
"left-4":
|
|
767
|
+
"!left-7": x === !0,
|
|
768
|
+
"left-2": b === "medium",
|
|
769
|
+
"left-3": b === "large",
|
|
770
|
+
"left-4": b === "xLarge"
|
|
769
771
|
}
|
|
770
772
|
),
|
|
771
773
|
children: n
|
|
@@ -777,7 +779,7 @@ const R = {
|
|
|
777
779
|
"data-id": "search-clear",
|
|
778
780
|
className: "clear-btn absolute inset-y-0 right-0 flex items-center px-2 hidden",
|
|
779
781
|
children: /* @__PURE__ */ c(
|
|
780
|
-
|
|
782
|
+
y,
|
|
781
783
|
{
|
|
782
784
|
className: "cursor-pointer text-gray-500",
|
|
783
785
|
name: "xCircle",
|
|
@@ -793,7 +795,7 @@ const R = {
|
|
|
793
795
|
"data-id": "search-loading",
|
|
794
796
|
className: "absolute inset-y-0 right-0 flex items-center px-2 pointer-events-none hidden",
|
|
795
797
|
children: /* @__PURE__ */ c(
|
|
796
|
-
|
|
798
|
+
y,
|
|
797
799
|
{
|
|
798
800
|
className: "animate-spin text-[#222]] pointer-events-none",
|
|
799
801
|
name: "spinnerDark",
|
|
@@ -803,12 +805,12 @@ const R = {
|
|
|
803
805
|
)
|
|
804
806
|
}
|
|
805
807
|
),
|
|
806
|
-
|
|
808
|
+
f && /* @__PURE__ */ c(
|
|
807
809
|
"span",
|
|
808
810
|
{
|
|
809
811
|
"data-id": "right-icon",
|
|
810
|
-
className: `${
|
|
811
|
-
children: /* @__PURE__ */ c(
|
|
812
|
+
className: `${u ? "" : "hidden"} absolute inset-y-0 right-0 flex items-center px-2 pointer-events-none`,
|
|
813
|
+
children: /* @__PURE__ */ c(y, { name: f, size: "small", viewBox: "0 0 24 24" })
|
|
812
814
|
}
|
|
813
815
|
),
|
|
814
816
|
/* @__PURE__ */ M(
|
|
@@ -823,10 +825,10 @@ const R = {
|
|
|
823
825
|
{
|
|
824
826
|
"data-id": "search-dropdown-body",
|
|
825
827
|
role: "listbox",
|
|
826
|
-
"data-title":
|
|
828
|
+
"data-title": g,
|
|
827
829
|
"aria-labelledby": "Label",
|
|
828
830
|
"aria-activedescendant": "search-item-0",
|
|
829
|
-
children:
|
|
831
|
+
children: h.length > 0 ? h.map((S, z) => /* @__PURE__ */ c(
|
|
830
832
|
"li",
|
|
831
833
|
{
|
|
832
834
|
id: `search-item-${z}`,
|
|
@@ -846,7 +848,7 @@ const R = {
|
|
|
846
848
|
]
|
|
847
849
|
}
|
|
848
850
|
);
|
|
849
|
-
},
|
|
851
|
+
}, B1 = ({
|
|
850
852
|
children: d,
|
|
851
853
|
className: e,
|
|
852
854
|
size: t = "sm",
|
|
@@ -865,47 +867,47 @@ const R = {
|
|
|
865
867
|
),
|
|
866
868
|
children: d
|
|
867
869
|
}
|
|
868
|
-
),
|
|
870
|
+
), Y = ({
|
|
869
871
|
borderless: d = !1,
|
|
870
872
|
leftIcon: e,
|
|
871
873
|
leftIconProps: t = {},
|
|
872
874
|
children: a,
|
|
873
875
|
className: n,
|
|
874
876
|
disabled: s = !1,
|
|
875
|
-
href:
|
|
877
|
+
href: l,
|
|
876
878
|
props: i = {},
|
|
877
|
-
rightIcon:
|
|
879
|
+
rightIcon: r,
|
|
878
880
|
rightIconProps: o = {},
|
|
879
|
-
rounded:
|
|
881
|
+
rounded: h = !1,
|
|
880
882
|
size: p = "md",
|
|
881
883
|
type: V = "button",
|
|
882
884
|
uppercase: C = !1,
|
|
883
885
|
variation: f = "primary"
|
|
884
886
|
}) => {
|
|
885
|
-
const
|
|
887
|
+
const v = l ? "a" : "button";
|
|
886
888
|
return /* @__PURE__ */ M(
|
|
887
|
-
|
|
889
|
+
v,
|
|
888
890
|
{
|
|
889
|
-
type:
|
|
891
|
+
type: v !== "a" ? V : null,
|
|
890
892
|
className: m(
|
|
891
893
|
"button",
|
|
892
894
|
{
|
|
893
895
|
[`button--${f}`]: f,
|
|
894
896
|
[`button--${p}`]: p,
|
|
895
|
-
"button--rounded":
|
|
897
|
+
"button--rounded": h,
|
|
896
898
|
"button--disabled": s,
|
|
897
|
-
"button--custom-link":
|
|
899
|
+
"button--custom-link": l,
|
|
898
900
|
"button--uppercase": C,
|
|
899
901
|
"button--borderless": d || f === "link"
|
|
900
902
|
},
|
|
901
903
|
n
|
|
902
904
|
),
|
|
903
905
|
disabled: s,
|
|
904
|
-
href:
|
|
906
|
+
href: l,
|
|
905
907
|
...i,
|
|
906
908
|
children: [
|
|
907
909
|
e && /* @__PURE__ */ c(
|
|
908
|
-
|
|
910
|
+
y,
|
|
909
911
|
{
|
|
910
912
|
name: e,
|
|
911
913
|
size: p === "md" ? "small" : "xSmall",
|
|
@@ -914,10 +916,10 @@ const R = {
|
|
|
914
916
|
}
|
|
915
917
|
),
|
|
916
918
|
a,
|
|
917
|
-
|
|
918
|
-
|
|
919
|
+
r && /* @__PURE__ */ c(
|
|
920
|
+
y,
|
|
919
921
|
{
|
|
920
|
-
name:
|
|
922
|
+
name: r,
|
|
921
923
|
size: p === "md" ? "small" : "xSmall",
|
|
922
924
|
viewBox: "0 0 24 24",
|
|
923
925
|
...o
|
|
@@ -926,20 +928,20 @@ const R = {
|
|
|
926
928
|
]
|
|
927
929
|
}
|
|
928
930
|
);
|
|
929
|
-
}, F =
|
|
931
|
+
}, F = A(Y), K = ({
|
|
930
932
|
checked: d = !1,
|
|
931
933
|
children: e,
|
|
932
934
|
className: t,
|
|
933
935
|
error: a = !1,
|
|
934
936
|
inputClass: n,
|
|
935
937
|
id: s = "",
|
|
936
|
-
label:
|
|
938
|
+
label: l = "",
|
|
937
939
|
name: i = "",
|
|
938
|
-
props:
|
|
940
|
+
props: r = {},
|
|
939
941
|
variation: o = "primary",
|
|
940
|
-
value:
|
|
942
|
+
value: h = ""
|
|
941
943
|
}) => {
|
|
942
|
-
const p =
|
|
944
|
+
const p = l ? "div" : "label", V = p === "label" ? { htmlFor: s } : {};
|
|
943
945
|
return /* @__PURE__ */ M(
|
|
944
946
|
p,
|
|
945
947
|
{
|
|
@@ -960,34 +962,34 @@ const R = {
|
|
|
960
962
|
id: s,
|
|
961
963
|
name: i,
|
|
962
964
|
type: "checkbox",
|
|
963
|
-
value:
|
|
964
|
-
...
|
|
965
|
+
value: h,
|
|
966
|
+
...r
|
|
965
967
|
}
|
|
966
968
|
),
|
|
967
969
|
e
|
|
968
970
|
]
|
|
969
971
|
}
|
|
970
972
|
);
|
|
971
|
-
},
|
|
973
|
+
}, I1 = A(K), X = ({
|
|
972
974
|
activator: d,
|
|
973
975
|
id: e = "",
|
|
974
976
|
children: t,
|
|
975
977
|
className: a,
|
|
976
978
|
contentClass: n,
|
|
977
979
|
customScrollbar: s = !0,
|
|
978
|
-
dark:
|
|
980
|
+
dark: l = !1,
|
|
979
981
|
footer: i,
|
|
980
|
-
fullMobile:
|
|
982
|
+
fullMobile: r = !0,
|
|
981
983
|
headerClass: o,
|
|
982
|
-
hideClose:
|
|
984
|
+
hideClose: h = !1,
|
|
983
985
|
iconSize: p = "medium",
|
|
984
986
|
preventPageScroll: V = !0,
|
|
985
987
|
stickyHeader: C = !1,
|
|
986
988
|
title: f = "",
|
|
987
|
-
titleClass:
|
|
989
|
+
titleClass: v,
|
|
988
990
|
useFormMethod: x = !0
|
|
989
991
|
}) => {
|
|
990
|
-
const
|
|
992
|
+
const u = x ? "form" : "div";
|
|
991
993
|
return /* @__PURE__ */ M(k, { children: [
|
|
992
994
|
d && /* @__PURE__ */ c("span", { id: `${e}-dialog-activator`, children: d }),
|
|
993
995
|
/* @__PURE__ */ c(
|
|
@@ -998,14 +1000,14 @@ const R = {
|
|
|
998
1000
|
className: m(
|
|
999
1001
|
"dialog",
|
|
1000
1002
|
{
|
|
1001
|
-
"dialog-full-mobile":
|
|
1002
|
-
dark:
|
|
1003
|
+
"dialog-full-mobile": r,
|
|
1004
|
+
dark: l,
|
|
1003
1005
|
"prevent-scroll": V
|
|
1004
1006
|
},
|
|
1005
1007
|
a
|
|
1006
1008
|
),
|
|
1007
1009
|
children: /* @__PURE__ */ M(
|
|
1008
|
-
|
|
1010
|
+
u,
|
|
1009
1011
|
{
|
|
1010
1012
|
className: "dialog-container",
|
|
1011
1013
|
method: x ? "dialog" : null,
|
|
@@ -1023,8 +1025,8 @@ const R = {
|
|
|
1023
1025
|
o
|
|
1024
1026
|
),
|
|
1025
1027
|
children: [
|
|
1026
|
-
f && /* @__PURE__ */ c("h3", { id: `${e}-dialog-title`, className:
|
|
1027
|
-
!
|
|
1028
|
+
f && /* @__PURE__ */ c("h3", { id: `${e}-dialog-title`, className: v, children: f }),
|
|
1029
|
+
!h && /* @__PURE__ */ c(
|
|
1028
1030
|
"button",
|
|
1029
1031
|
{
|
|
1030
1032
|
type: "button",
|
|
@@ -1033,7 +1035,7 @@ const R = {
|
|
|
1033
1035
|
"data-dialog-close": "",
|
|
1034
1036
|
value: "close",
|
|
1035
1037
|
children: /* @__PURE__ */ c(
|
|
1036
|
-
|
|
1038
|
+
y,
|
|
1037
1039
|
{
|
|
1038
1040
|
name: "close",
|
|
1039
1041
|
size: p,
|
|
@@ -1066,7 +1068,7 @@ const R = {
|
|
|
1066
1068
|
}
|
|
1067
1069
|
)
|
|
1068
1070
|
] });
|
|
1069
|
-
},
|
|
1071
|
+
}, O1 = A(X), $1 = ({ className: d }) => /* @__PURE__ */ M("div", { className: m("Dots mx-auto", d), children: [
|
|
1070
1072
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.1s" } }),
|
|
1071
1073
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.2s" } }),
|
|
1072
1074
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.3s" } }),
|
|
@@ -1075,7 +1077,7 @@ const R = {
|
|
|
1075
1077
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.6s" } }),
|
|
1076
1078
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.7s" } }),
|
|
1077
1079
|
/* @__PURE__ */ c("span", { style: { animationDelay: "0.8s" } })
|
|
1078
|
-
] }),
|
|
1080
|
+
] }), e1 = ({
|
|
1079
1081
|
cb: d,
|
|
1080
1082
|
onUpdate: e,
|
|
1081
1083
|
className: t = "",
|
|
@@ -1083,23 +1085,23 @@ const R = {
|
|
|
1083
1085
|
timeout: n = 1e4,
|
|
1084
1086
|
variation: s = "primary"
|
|
1085
1087
|
}) => {
|
|
1086
|
-
function
|
|
1087
|
-
const
|
|
1088
|
-
if (!
|
|
1089
|
-
let o,
|
|
1088
|
+
function l({ cb: i }) {
|
|
1089
|
+
const r = document.querySelector(".loading-bar__inner");
|
|
1090
|
+
if (!r) return;
|
|
1091
|
+
let o, h, p = !1;
|
|
1090
1092
|
function V(C) {
|
|
1091
1093
|
o === void 0 && (o = C);
|
|
1092
1094
|
const f = C - o;
|
|
1093
|
-
if (
|
|
1094
|
-
const
|
|
1095
|
-
|
|
1095
|
+
if (h !== C) {
|
|
1096
|
+
const v = f / n * 101;
|
|
1097
|
+
r.style.width = `${v}%`, e && e({ elapsed: f, percentage: v }), v >= 101 && (i && i(), p = !0, window.cancelAnimationFrame(C));
|
|
1096
1098
|
}
|
|
1097
|
-
f < n && (
|
|
1099
|
+
f < n && (h = C, p || window.requestAnimationFrame(V));
|
|
1098
1100
|
}
|
|
1099
1101
|
window.requestAnimationFrame(V);
|
|
1100
1102
|
}
|
|
1101
1103
|
return N(() => {
|
|
1102
|
-
|
|
1104
|
+
l({ cb: d });
|
|
1103
1105
|
}, []), /* @__PURE__ */ c(
|
|
1104
1106
|
"div",
|
|
1105
1107
|
{
|
|
@@ -1117,16 +1119,16 @@ const R = {
|
|
|
1117
1119
|
children: /* @__PURE__ */ c("div", { className: "loading-bar__inner", "data-size": "100" })
|
|
1118
1120
|
}
|
|
1119
1121
|
);
|
|
1120
|
-
},
|
|
1122
|
+
}, q1 = A(e1), t1 = ({ className: d }) => /* @__PURE__ */ c("div", { className: m("processing-spinner", d) }), j1 = A(t1), P1 = ({
|
|
1121
1123
|
activator: d,
|
|
1122
1124
|
activatorClass: e = "",
|
|
1123
1125
|
attrs: t = {},
|
|
1124
1126
|
children: a,
|
|
1125
1127
|
className: n = "",
|
|
1126
1128
|
containerClass: s = "",
|
|
1127
|
-
disabled:
|
|
1129
|
+
disabled: l = !1,
|
|
1128
1130
|
options: i = {},
|
|
1129
|
-
trigger:
|
|
1131
|
+
trigger: r = "click"
|
|
1130
1132
|
}) => /* @__PURE__ */ M(k, { children: [
|
|
1131
1133
|
/* @__PURE__ */ c(
|
|
1132
1134
|
"div",
|
|
@@ -1158,9 +1160,9 @@ const R = {
|
|
|
1158
1160
|
{
|
|
1159
1161
|
className: m(
|
|
1160
1162
|
"popover-activator",
|
|
1161
|
-
`trigger-${
|
|
1163
|
+
`trigger-${r}`,
|
|
1162
1164
|
{
|
|
1163
|
-
"is-disabled":
|
|
1165
|
+
"is-disabled": l
|
|
1164
1166
|
},
|
|
1165
1167
|
e
|
|
1166
1168
|
),
|
|
@@ -1169,16 +1171,16 @@ const R = {
|
|
|
1169
1171
|
children: d
|
|
1170
1172
|
}
|
|
1171
1173
|
)
|
|
1172
|
-
] }),
|
|
1174
|
+
] }), a1 = ({
|
|
1173
1175
|
ariaValuemax: d = 100,
|
|
1174
1176
|
ariaValuemin: e = 0,
|
|
1175
1177
|
bgColor: t = "bg-orange-500",
|
|
1176
1178
|
className: a,
|
|
1177
1179
|
completed: n = 0,
|
|
1178
1180
|
customLabel: s,
|
|
1179
|
-
labelClass:
|
|
1181
|
+
labelClass: l,
|
|
1180
1182
|
maxCompleted: i = 100,
|
|
1181
|
-
rounded:
|
|
1183
|
+
rounded: r = !0,
|
|
1182
1184
|
showLabel: o = !1
|
|
1183
1185
|
}) => {
|
|
1184
1186
|
const p = ((V, C) => {
|
|
@@ -1193,7 +1195,7 @@ const R = {
|
|
|
1193
1195
|
{
|
|
1194
1196
|
className: m(
|
|
1195
1197
|
"w-full bg-gray-200",
|
|
1196
|
-
{ "rounded-full":
|
|
1198
|
+
{ "rounded-full": r },
|
|
1197
1199
|
a
|
|
1198
1200
|
),
|
|
1199
1201
|
role: "progressbar",
|
|
@@ -1214,7 +1216,7 @@ const R = {
|
|
|
1214
1216
|
{
|
|
1215
1217
|
className: m(
|
|
1216
1218
|
"font-bold text-white text-xs mr-2",
|
|
1217
|
-
|
|
1219
|
+
l
|
|
1218
1220
|
),
|
|
1219
1221
|
children: s || Math.round(p)
|
|
1220
1222
|
}
|
|
@@ -1223,21 +1225,21 @@ const R = {
|
|
|
1223
1225
|
)
|
|
1224
1226
|
}
|
|
1225
1227
|
);
|
|
1226
|
-
},
|
|
1228
|
+
}, R1 = A(a1), n1 = ({
|
|
1227
1229
|
checked: d = !1,
|
|
1228
1230
|
children: e,
|
|
1229
1231
|
className: t,
|
|
1230
1232
|
id: a = "",
|
|
1231
1233
|
inputClass: n,
|
|
1232
1234
|
label: s = "",
|
|
1233
|
-
name:
|
|
1235
|
+
name: l = "",
|
|
1234
1236
|
props: i = {},
|
|
1235
|
-
variation:
|
|
1237
|
+
variation: r = "primary",
|
|
1236
1238
|
value: o = ""
|
|
1237
1239
|
}) => {
|
|
1238
|
-
const
|
|
1240
|
+
const h = s ? "div" : "label", p = h === "label" ? { htmlFor: a } : {};
|
|
1239
1241
|
return /* @__PURE__ */ M(
|
|
1240
|
-
|
|
1242
|
+
h,
|
|
1241
1243
|
{
|
|
1242
1244
|
className: m("radio flex items-center", t),
|
|
1243
1245
|
...p,
|
|
@@ -1249,12 +1251,12 @@ const R = {
|
|
|
1249
1251
|
className: m(
|
|
1250
1252
|
"form-radio focus:ring-2 focus:ring-offset-2 focus-within:outline-none",
|
|
1251
1253
|
{
|
|
1252
|
-
"focus:ring-[#222]":
|
|
1254
|
+
"focus:ring-[#222]": r === "primary"
|
|
1253
1255
|
},
|
|
1254
1256
|
n
|
|
1255
1257
|
),
|
|
1256
1258
|
id: a,
|
|
1257
|
-
name:
|
|
1259
|
+
name: l,
|
|
1258
1260
|
type: "radio",
|
|
1259
1261
|
value: o,
|
|
1260
1262
|
...i
|
|
@@ -1264,18 +1266,18 @@ const R = {
|
|
|
1264
1266
|
]
|
|
1265
1267
|
}
|
|
1266
1268
|
);
|
|
1267
|
-
},
|
|
1269
|
+
}, W1 = A(n1), s1 = ({
|
|
1268
1270
|
className: d = "",
|
|
1269
1271
|
error: e = !1,
|
|
1270
1272
|
errorMessage: t = "",
|
|
1271
1273
|
id: a = "",
|
|
1272
1274
|
label: n = "",
|
|
1273
1275
|
name: s = "",
|
|
1274
|
-
options:
|
|
1276
|
+
options: l = [],
|
|
1275
1277
|
placeholder: i = "",
|
|
1276
|
-
props:
|
|
1278
|
+
props: r = {},
|
|
1277
1279
|
selectClass: o = "",
|
|
1278
|
-
styles:
|
|
1280
|
+
styles: h = null,
|
|
1279
1281
|
variation: p = "primary",
|
|
1280
1282
|
value: V
|
|
1281
1283
|
}) => {
|
|
@@ -1284,7 +1286,7 @@ const R = {
|
|
|
1284
1286
|
"label",
|
|
1285
1287
|
{
|
|
1286
1288
|
className: m("relative select", d, p),
|
|
1287
|
-
style:
|
|
1289
|
+
style: h ? { ...h } : null,
|
|
1288
1290
|
children: [
|
|
1289
1291
|
n,
|
|
1290
1292
|
/* @__PURE__ */ M(
|
|
@@ -1301,10 +1303,10 @@ const R = {
|
|
|
1301
1303
|
name: s,
|
|
1302
1304
|
value: V,
|
|
1303
1305
|
...C,
|
|
1304
|
-
...
|
|
1306
|
+
...r,
|
|
1305
1307
|
children: [
|
|
1306
1308
|
i && /* @__PURE__ */ c("option", { hidden: !0, value: "", children: i }),
|
|
1307
|
-
|
|
1309
|
+
l.map((f) => /* @__PURE__ */ c(
|
|
1308
1310
|
"option",
|
|
1309
1311
|
{
|
|
1310
1312
|
value: (f == null ? void 0 : f.id) || (f == null ? void 0 : f.value) || f,
|
|
@@ -1319,7 +1321,7 @@ const R = {
|
|
|
1319
1321
|
]
|
|
1320
1322
|
}
|
|
1321
1323
|
);
|
|
1322
|
-
},
|
|
1324
|
+
}, U1 = A(s1), r1 = ({ className: d }) => /* @__PURE__ */ M(
|
|
1323
1325
|
"div",
|
|
1324
1326
|
{
|
|
1325
1327
|
className: m(
|
|
@@ -1327,11 +1329,11 @@ const R = {
|
|
|
1327
1329
|
d
|
|
1328
1330
|
),
|
|
1329
1331
|
children: [
|
|
1330
|
-
/* @__PURE__ */ c(
|
|
1332
|
+
/* @__PURE__ */ c(y, { size: "xLarge", name: "map", className: "mx-auto" }),
|
|
1331
1333
|
/* @__PURE__ */ c("span", { className: "sr-only", children: "Loading..." })
|
|
1332
1334
|
]
|
|
1333
1335
|
}
|
|
1334
|
-
),
|
|
1336
|
+
), Q1 = A(r1), l1 = ({
|
|
1335
1337
|
placeholderClass: d = "",
|
|
1336
1338
|
children: e,
|
|
1337
1339
|
className: t,
|
|
@@ -1345,16 +1347,16 @@ const R = {
|
|
|
1345
1347
|
id: `btn-left-${a}`,
|
|
1346
1348
|
type: "button",
|
|
1347
1349
|
className: "slider-button__prev ",
|
|
1348
|
-
children: /* @__PURE__ */ c(
|
|
1350
|
+
children: /* @__PURE__ */ c(y, { name: "chevronLeft" })
|
|
1349
1351
|
}
|
|
1350
1352
|
),
|
|
1351
|
-
/* @__PURE__ */ c("div", { id: `slider-container-${a}`, className: "slider-container", children: Array.from({ length: 4 }, (s,
|
|
1353
|
+
/* @__PURE__ */ c("div", { id: `slider-container-${a}`, className: "slider-container", children: Array.from({ length: 4 }, (s, l) => /* @__PURE__ */ c(
|
|
1352
1354
|
"div",
|
|
1353
1355
|
{
|
|
1354
1356
|
className: `slider-card bg-gray-200 animate-pulse ${d}`,
|
|
1355
1357
|
children: /* @__PURE__ */ c("div", { className: `slider-card-action ${n ? "p-4" : ""}`, children: e })
|
|
1356
1358
|
},
|
|
1357
|
-
|
|
1359
|
+
l
|
|
1358
1360
|
)) }),
|
|
1359
1361
|
/* @__PURE__ */ c(
|
|
1360
1362
|
"button",
|
|
@@ -1363,21 +1365,21 @@ const R = {
|
|
|
1363
1365
|
id: `btn-right-${a}`,
|
|
1364
1366
|
type: "button",
|
|
1365
1367
|
className: "slider-button__next",
|
|
1366
|
-
children: /* @__PURE__ */ c(
|
|
1368
|
+
children: /* @__PURE__ */ c(y, { name: "chevronRight" })
|
|
1367
1369
|
}
|
|
1368
1370
|
)
|
|
1369
|
-
] }),
|
|
1371
|
+
] }), G1 = A(l1), i1 = {
|
|
1370
1372
|
name: "spinnerDark",
|
|
1371
1373
|
color: "text-teal-700",
|
|
1372
1374
|
viewBox: "0 0 24 24"
|
|
1373
|
-
},
|
|
1374
|
-
|
|
1375
|
+
}, o1 = ({ className: d }) => /* @__PURE__ */ c("div", { className: "rounded-r-md px-2 focus:outline-none", children: /* @__PURE__ */ c(
|
|
1376
|
+
y,
|
|
1375
1377
|
{
|
|
1376
1378
|
className: `animate-spin ${d}`,
|
|
1377
1379
|
size: "xSmall",
|
|
1378
|
-
...
|
|
1380
|
+
...i1
|
|
1379
1381
|
}
|
|
1380
|
-
) }),
|
|
1382
|
+
) }), J1 = A(o1), _1 = ({
|
|
1381
1383
|
className: d,
|
|
1382
1384
|
value: e
|
|
1383
1385
|
}) => {
|
|
@@ -1394,25 +1396,25 @@ const R = {
|
|
|
1394
1396
|
style: t
|
|
1395
1397
|
}
|
|
1396
1398
|
);
|
|
1397
|
-
},
|
|
1399
|
+
}, c1 = ({
|
|
1398
1400
|
className: d,
|
|
1399
1401
|
clear: e = !1,
|
|
1400
1402
|
error: t = !1,
|
|
1401
1403
|
errorMessage: a = "",
|
|
1402
1404
|
id: n = "",
|
|
1403
1405
|
inputClass: s = "",
|
|
1404
|
-
name:
|
|
1406
|
+
name: l = "",
|
|
1405
1407
|
placeholder: i = "",
|
|
1406
|
-
props:
|
|
1408
|
+
props: r = {},
|
|
1407
1409
|
rows: o = 4,
|
|
1408
|
-
variation:
|
|
1409
|
-
}) => /* @__PURE__ */ M("div", { className: m("relative textarea",
|
|
1410
|
+
variation: h = "primary"
|
|
1411
|
+
}) => /* @__PURE__ */ M("div", { className: m("relative textarea", h, d), children: [
|
|
1410
1412
|
/* @__PURE__ */ c(
|
|
1411
1413
|
"textarea",
|
|
1412
1414
|
{
|
|
1413
1415
|
placeholder: i,
|
|
1414
1416
|
id: n,
|
|
1415
|
-
name:
|
|
1417
|
+
name: l,
|
|
1416
1418
|
rows: o,
|
|
1417
1419
|
className: m(
|
|
1418
1420
|
"form-textarea min-h-[40px] pl-4",
|
|
@@ -1422,7 +1424,7 @@ const R = {
|
|
|
1422
1424
|
},
|
|
1423
1425
|
s
|
|
1424
1426
|
),
|
|
1425
|
-
...
|
|
1427
|
+
...r
|
|
1426
1428
|
}
|
|
1427
1429
|
),
|
|
1428
1430
|
e && /* @__PURE__ */ c(
|
|
@@ -1431,7 +1433,7 @@ const R = {
|
|
|
1431
1433
|
id: `${n}-clear`,
|
|
1432
1434
|
className: "textarea-clear absolute right-0 top-2 bottom-auto flex items-center rounded-r-md pr-2 focus:outline-none hidden",
|
|
1433
1435
|
children: /* @__PURE__ */ c(
|
|
1434
|
-
|
|
1436
|
+
y,
|
|
1435
1437
|
{
|
|
1436
1438
|
size: "xSmall",
|
|
1437
1439
|
name: "xCircle",
|
|
@@ -1441,18 +1443,18 @@ const R = {
|
|
|
1441
1443
|
}
|
|
1442
1444
|
),
|
|
1443
1445
|
a && /* @__PURE__ */ c("span", { className: "relative flex mt-0.5 text-red-700 text-xs text-left", children: a })
|
|
1444
|
-
] }),
|
|
1446
|
+
] }), d1 = A(c1), h1 = ({
|
|
1445
1447
|
className: d,
|
|
1446
1448
|
clear: e = !1,
|
|
1447
1449
|
error: t = !1,
|
|
1448
1450
|
errorMessage: a = "",
|
|
1449
1451
|
iconLeft: n = "",
|
|
1450
1452
|
id: s = "",
|
|
1451
|
-
inputClass:
|
|
1453
|
+
inputClass: l,
|
|
1452
1454
|
name: i = "",
|
|
1453
|
-
placeholder:
|
|
1455
|
+
placeholder: r = "",
|
|
1454
1456
|
props: o = {},
|
|
1455
|
-
styles:
|
|
1457
|
+
styles: h = null,
|
|
1456
1458
|
type: p = "text",
|
|
1457
1459
|
value: V,
|
|
1458
1460
|
variation: C = "primary"
|
|
@@ -1460,10 +1462,10 @@ const R = {
|
|
|
1460
1462
|
"div",
|
|
1461
1463
|
{
|
|
1462
1464
|
className: m("relative textbox", C, d),
|
|
1463
|
-
style:
|
|
1465
|
+
style: h ? { ...h } : null,
|
|
1464
1466
|
children: [
|
|
1465
1467
|
n && /* @__PURE__ */ c("div", { className: "pointer-events-none absolute inset-y-0 left-0 flex items-center px-2", children: /* @__PURE__ */ c(
|
|
1466
|
-
|
|
1468
|
+
y,
|
|
1467
1469
|
{
|
|
1468
1470
|
size: "xSmall",
|
|
1469
1471
|
name: n,
|
|
@@ -1474,7 +1476,7 @@ const R = {
|
|
|
1474
1476
|
/* @__PURE__ */ c(
|
|
1475
1477
|
"input",
|
|
1476
1478
|
{
|
|
1477
|
-
placeholder:
|
|
1479
|
+
placeholder: r,
|
|
1478
1480
|
id: s,
|
|
1479
1481
|
name: i,
|
|
1480
1482
|
type: p,
|
|
@@ -1488,7 +1490,7 @@ const R = {
|
|
|
1488
1490
|
"!border-red-500 !bg-red-500/10 placeholder:!text-red-700 focus:!ring-red-500 focus:!border-red-500": t
|
|
1489
1491
|
},
|
|
1490
1492
|
o.inputClass ?? "",
|
|
1491
|
-
|
|
1493
|
+
l
|
|
1492
1494
|
),
|
|
1493
1495
|
...o
|
|
1494
1496
|
}
|
|
@@ -1499,7 +1501,7 @@ const R = {
|
|
|
1499
1501
|
id: `${s}-clear`,
|
|
1500
1502
|
className: "textbox-clear absolute inset-y-0 right-0 flex items-center rounded-r-md px-2 focus:outline-none hidden",
|
|
1501
1503
|
children: /* @__PURE__ */ c(
|
|
1502
|
-
|
|
1504
|
+
y,
|
|
1503
1505
|
{
|
|
1504
1506
|
size: "xSmall",
|
|
1505
1507
|
name: "xCircle",
|
|
@@ -1511,14 +1513,14 @@ const R = {
|
|
|
1511
1513
|
a && /* @__PURE__ */ c("span", { className: "relative flex mt-0.5 text-red-700 text-xs text-left", children: a })
|
|
1512
1514
|
]
|
|
1513
1515
|
}
|
|
1514
|
-
), T =
|
|
1516
|
+
), T = A(h1), u1 = ({
|
|
1515
1517
|
btnClass: d,
|
|
1516
1518
|
className: e = "",
|
|
1517
1519
|
containerClass: t,
|
|
1518
1520
|
customSuccessMsg: a = "",
|
|
1519
1521
|
title: n = "Send A Message",
|
|
1520
1522
|
titleClass: s,
|
|
1521
|
-
uppercase:
|
|
1523
|
+
uppercase: l = !0
|
|
1522
1524
|
}) => {
|
|
1523
1525
|
const i = a || /* @__PURE__ */ M(k, { children: [
|
|
1524
1526
|
"Typical email response time is 2-3 hours. If you require immediate assistance you may use our",
|
|
@@ -1542,7 +1544,7 @@ const R = {
|
|
|
1542
1544
|
{
|
|
1543
1545
|
id: "contactForm",
|
|
1544
1546
|
className: m("contact-form", t, {
|
|
1545
|
-
uppercase:
|
|
1547
|
+
uppercase: l
|
|
1546
1548
|
}),
|
|
1547
1549
|
children: [
|
|
1548
1550
|
/* @__PURE__ */ c("h2", { id: "contact-title", className: m("mb-4", s), children: n }),
|
|
@@ -1562,7 +1564,7 @@ const R = {
|
|
|
1562
1564
|
name: "contact-name",
|
|
1563
1565
|
placeholder: "Name",
|
|
1564
1566
|
inputClass: m({
|
|
1565
|
-
"placeholder:uppercase":
|
|
1567
|
+
"placeholder:uppercase": l
|
|
1566
1568
|
})
|
|
1567
1569
|
}
|
|
1568
1570
|
),
|
|
@@ -1573,18 +1575,18 @@ const R = {
|
|
|
1573
1575
|
name: "contact-email",
|
|
1574
1576
|
placeholder: "Email",
|
|
1575
1577
|
inputClass: m({
|
|
1576
|
-
"placeholder:uppercase":
|
|
1578
|
+
"placeholder:uppercase": l
|
|
1577
1579
|
})
|
|
1578
1580
|
}
|
|
1579
1581
|
),
|
|
1580
1582
|
/* @__PURE__ */ c(
|
|
1581
|
-
|
|
1583
|
+
d1,
|
|
1582
1584
|
{
|
|
1583
1585
|
id: "contact-message",
|
|
1584
1586
|
name: "contact-message",
|
|
1585
1587
|
placeholder: "Message",
|
|
1586
1588
|
inputClass: m({
|
|
1587
|
-
"placeholder:uppercase":
|
|
1589
|
+
"placeholder:uppercase": l
|
|
1588
1590
|
})
|
|
1589
1591
|
}
|
|
1590
1592
|
),
|
|
@@ -1594,7 +1596,7 @@ const R = {
|
|
|
1594
1596
|
className: m(
|
|
1595
1597
|
"flex mx-auto items-center",
|
|
1596
1598
|
{
|
|
1597
|
-
uppercase:
|
|
1599
|
+
uppercase: l
|
|
1598
1600
|
},
|
|
1599
1601
|
d
|
|
1600
1602
|
),
|
|
@@ -1609,37 +1611,37 @@ const R = {
|
|
|
1609
1611
|
]
|
|
1610
1612
|
}
|
|
1611
1613
|
);
|
|
1612
|
-
},
|
|
1614
|
+
}, Y1 = A(u1), p1 = ({
|
|
1613
1615
|
block: d = !1,
|
|
1614
1616
|
children: e,
|
|
1615
1617
|
className: t,
|
|
1616
1618
|
contentClass: a,
|
|
1617
1619
|
footerClass: n,
|
|
1618
1620
|
footerContent: s,
|
|
1619
|
-
headerContent:
|
|
1621
|
+
headerContent: l,
|
|
1620
1622
|
headerClass: i,
|
|
1621
|
-
list:
|
|
1623
|
+
list: r = !1,
|
|
1622
1624
|
props: o = {},
|
|
1623
|
-
variation:
|
|
1625
|
+
variation: h = "primary"
|
|
1624
1626
|
}) => {
|
|
1625
|
-
const p =
|
|
1627
|
+
const p = r ? "ul" : "div";
|
|
1626
1628
|
return /* @__PURE__ */ M(
|
|
1627
1629
|
"div",
|
|
1628
1630
|
{
|
|
1629
1631
|
className: m(
|
|
1630
1632
|
"content-card",
|
|
1631
1633
|
{ "content-card--block": d },
|
|
1632
|
-
`content-card--${
|
|
1634
|
+
`content-card--${h}`,
|
|
1633
1635
|
t
|
|
1634
1636
|
),
|
|
1635
1637
|
...o,
|
|
1636
1638
|
children: [
|
|
1637
|
-
|
|
1639
|
+
l && /* @__PURE__ */ c("div", { className: m("content-card__header", i), children: typeof l == "string" ? /* @__PURE__ */ c("h3", { children: l }) : l }),
|
|
1638
1640
|
/* @__PURE__ */ c(
|
|
1639
1641
|
p,
|
|
1640
1642
|
{
|
|
1641
1643
|
className: m("content-card__content", a),
|
|
1642
|
-
role:
|
|
1644
|
+
role: r ? "list" : null,
|
|
1643
1645
|
children: e
|
|
1644
1646
|
}
|
|
1645
1647
|
),
|
|
@@ -1647,18 +1649,18 @@ const R = {
|
|
|
1647
1649
|
]
|
|
1648
1650
|
}
|
|
1649
1651
|
);
|
|
1650
|
-
},
|
|
1652
|
+
}, K1 = A(p1), m1 = ({
|
|
1651
1653
|
children: d,
|
|
1652
1654
|
className: e,
|
|
1653
1655
|
colGap: t = 2,
|
|
1654
1656
|
direction: a = "col",
|
|
1655
1657
|
label: n,
|
|
1656
1658
|
labelClass: s,
|
|
1657
|
-
props:
|
|
1659
|
+
props: l = {},
|
|
1658
1660
|
rowGap: i = 1,
|
|
1659
|
-
value:
|
|
1661
|
+
value: r,
|
|
1660
1662
|
valueClass: o,
|
|
1661
|
-
wrap:
|
|
1663
|
+
wrap: h = !1
|
|
1662
1664
|
}) => /* @__PURE__ */ M(
|
|
1663
1665
|
"div",
|
|
1664
1666
|
{
|
|
@@ -1667,7 +1669,7 @@ const R = {
|
|
|
1667
1669
|
{
|
|
1668
1670
|
"flex-col items-start": a === "col",
|
|
1669
1671
|
"flex-row items-center": a === "row",
|
|
1670
|
-
"flex-wrap":
|
|
1672
|
+
"flex-wrap": h
|
|
1671
1673
|
},
|
|
1672
1674
|
e
|
|
1673
1675
|
),
|
|
@@ -1675,21 +1677,21 @@ const R = {
|
|
|
1675
1677
|
columnGap: `${t / 4}rem`,
|
|
1676
1678
|
rowGap: `${i / 4}rem`
|
|
1677
1679
|
},
|
|
1678
|
-
...
|
|
1680
|
+
...l,
|
|
1679
1681
|
children: [
|
|
1680
1682
|
n && /* @__PURE__ */ c("div", { className: m("item-label", s), children: n }),
|
|
1681
|
-
|
|
1683
|
+
r && /* @__PURE__ */ c("div", { className: m("item-value", o), children: r }),
|
|
1682
1684
|
d
|
|
1683
1685
|
]
|
|
1684
1686
|
}
|
|
1685
|
-
),
|
|
1687
|
+
), X1 = A(m1), e2 = ({
|
|
1686
1688
|
breakPage: d = !1,
|
|
1687
1689
|
children: e,
|
|
1688
1690
|
className: t,
|
|
1689
1691
|
noPrint: a = !1,
|
|
1690
1692
|
props: n = {},
|
|
1691
1693
|
title: s,
|
|
1692
|
-
titleClass:
|
|
1694
|
+
titleClass: l,
|
|
1693
1695
|
titleId: i
|
|
1694
1696
|
}) => /* @__PURE__ */ M(
|
|
1695
1697
|
"section",
|
|
@@ -1704,11 +1706,11 @@ const R = {
|
|
|
1704
1706
|
),
|
|
1705
1707
|
...n,
|
|
1706
1708
|
children: [
|
|
1707
|
-
s && /* @__PURE__ */ c("h2", { className: m("spacer-title",
|
|
1709
|
+
s && /* @__PURE__ */ c("h2", { className: m("spacer-title", l), id: i, children: s }),
|
|
1708
1710
|
e
|
|
1709
1711
|
]
|
|
1710
1712
|
}
|
|
1711
|
-
),
|
|
1713
|
+
), t2 = ({ children: d, className: e, list: t = !0 }) => /* @__PURE__ */ c(t ? "li" : "div", { className: m("stacked-list", e), children: d }), f1 = ({ align: d = "center", children: e, className: t, tag: a = "h1", title: n }) => /* @__PURE__ */ c(
|
|
1712
1714
|
a,
|
|
1713
1715
|
{
|
|
1714
1716
|
className: m(
|
|
@@ -1722,7 +1724,7 @@ const R = {
|
|
|
1722
1724
|
),
|
|
1723
1725
|
children: n || e
|
|
1724
1726
|
}
|
|
1725
|
-
),
|
|
1727
|
+
), a2 = A(f1), V1 = {
|
|
1726
1728
|
circular: "circular 3s linear infinite",
|
|
1727
1729
|
"circular-reverse": "circular 3s linear reverse infinite",
|
|
1728
1730
|
"fade-in": "fade-in 0.2.5s ease-out",
|
|
@@ -1734,17 +1736,17 @@ const R = {
|
|
|
1734
1736
|
"menu-open": "menu-open 0.1s ease-out",
|
|
1735
1737
|
"menu-close": "menu-close 0.1s ease-in-out",
|
|
1736
1738
|
indeterminate_first: "indeterminate_first 1.1s ease-in-out infinite"
|
|
1737
|
-
}, V1 = {
|
|
1738
|
-
map: "var(--map)"
|
|
1739
1739
|
}, H1 = {
|
|
1740
|
+
map: "var(--map)"
|
|
1741
|
+
}, C1 = {
|
|
1740
1742
|
"3xs": "0.5rem",
|
|
1741
1743
|
xxs: "0.625rem",
|
|
1742
1744
|
"2.5xl": "1.625rem",
|
|
1743
1745
|
"2.75xl": "1.75rem",
|
|
1744
1746
|
"3.5xl": "2rem"
|
|
1745
|
-
}, C1 = {
|
|
1746
|
-
17: "repeat(17, minmax(0, 1fr))"
|
|
1747
1747
|
}, L1 = {
|
|
1748
|
+
17: "repeat(17, minmax(0, 1fr))"
|
|
1749
|
+
}, M1 = {
|
|
1748
1750
|
circular: {
|
|
1749
1751
|
"100%": {
|
|
1750
1752
|
transform: "rotate(360deg)"
|
|
@@ -1834,16 +1836,16 @@ const R = {
|
|
|
1834
1836
|
transform: "translateX(100%)"
|
|
1835
1837
|
}
|
|
1836
1838
|
}
|
|
1837
|
-
},
|
|
1839
|
+
}, g1 = {
|
|
1838
1840
|
20: "5rem",
|
|
1839
1841
|
24: "6rem",
|
|
1840
1842
|
28: "7rem",
|
|
1841
1843
|
32: "8rem"
|
|
1842
|
-
},
|
|
1844
|
+
}, v1 = {
|
|
1843
1845
|
aside: "268px",
|
|
1844
1846
|
container: "724px",
|
|
1845
1847
|
page: "1200px"
|
|
1846
|
-
},
|
|
1848
|
+
}, b1 = {
|
|
1847
1849
|
"xs-max": {
|
|
1848
1850
|
max: "639px"
|
|
1849
1851
|
},
|
|
@@ -1861,22 +1863,22 @@ const R = {
|
|
|
1861
1863
|
max: "1199px"
|
|
1862
1864
|
},
|
|
1863
1865
|
"lg-up": "1200px"
|
|
1864
|
-
},
|
|
1866
|
+
}, A1 = {
|
|
1865
1867
|
0: "0ms",
|
|
1866
1868
|
50: "50ms"
|
|
1867
|
-
},
|
|
1869
|
+
}, y1 = {
|
|
1868
1870
|
"center-top": "center 30%"
|
|
1869
1871
|
}, B = {
|
|
1870
|
-
animation:
|
|
1871
|
-
backgroundImage:
|
|
1872
|
-
fontSize:
|
|
1873
|
-
gridTemplateColumns:
|
|
1874
|
-
keyframes:
|
|
1875
|
-
margin:
|
|
1876
|
-
maxWidth:
|
|
1877
|
-
screens:
|
|
1878
|
-
transitionDuration:
|
|
1879
|
-
transformOrigin:
|
|
1872
|
+
animation: V1,
|
|
1873
|
+
backgroundImage: H1,
|
|
1874
|
+
fontSize: C1,
|
|
1875
|
+
gridTemplateColumns: L1,
|
|
1876
|
+
keyframes: M1,
|
|
1877
|
+
margin: g1,
|
|
1878
|
+
maxWidth: v1,
|
|
1879
|
+
screens: b1,
|
|
1880
|
+
transitionDuration: A1,
|
|
1881
|
+
transformOrigin: y1
|
|
1880
1882
|
}, I = {
|
|
1881
1883
|
black: {
|
|
1882
1884
|
50: "#FCFCFC",
|
|
@@ -1984,7 +1986,7 @@ const R = {
|
|
|
1984
1986
|
purple: "hsl(279 85% 57%)",
|
|
1985
1987
|
white: "hsl(0 0% 100%)",
|
|
1986
1988
|
transparent: "hsl(0 0% 100% / 0)"
|
|
1987
|
-
},
|
|
1989
|
+
}, n2 = {
|
|
1988
1990
|
...I,
|
|
1989
1991
|
...O
|
|
1990
1992
|
}, x1 = ({ matchUtilities: d, theme: e }) => d(
|
|
@@ -2008,7 +2010,7 @@ const R = {
|
|
|
2008
2010
|
})
|
|
2009
2011
|
},
|
|
2010
2012
|
{ values: e("aspectRatio") }
|
|
2011
|
-
),
|
|
2013
|
+
), w1 = ({ matchUtilities: d, theme: e }) => d(
|
|
2012
2014
|
{
|
|
2013
2015
|
"animation-delay": (t) => ({
|
|
2014
2016
|
"animation-delay": t
|
|
@@ -2017,11 +2019,11 @@ const R = {
|
|
|
2017
2019
|
{
|
|
2018
2020
|
values: e("transitionDelay")
|
|
2019
2021
|
}
|
|
2020
|
-
),
|
|
2022
|
+
), S1 = ({ matchUtilities: d }) => d({
|
|
2021
2023
|
"max-inline": (e) => ({
|
|
2022
2024
|
"max-inline-size": e
|
|
2023
2025
|
})
|
|
2024
|
-
}),
|
|
2026
|
+
}), k1 = ({ matchUtilities: d }) => d({
|
|
2025
2027
|
"max-block": (e) => ({
|
|
2026
2028
|
"max-block-size": e
|
|
2027
2029
|
})
|
|
@@ -2032,27 +2034,27 @@ const R = {
|
|
|
2032
2034
|
fixedProps: a = {},
|
|
2033
2035
|
sizeProps: n = null,
|
|
2034
2036
|
sizes: s,
|
|
2035
|
-
weights:
|
|
2037
|
+
weights: l,
|
|
2036
2038
|
weightProps: i = null
|
|
2037
2039
|
}) => {
|
|
2038
|
-
const
|
|
2039
|
-
Object.entries(s).forEach(([o,
|
|
2040
|
+
const r = {};
|
|
2041
|
+
Object.entries(s).forEach(([o, h]) => {
|
|
2040
2042
|
const p = {
|
|
2041
|
-
"font-size":
|
|
2043
|
+
"font-size": h,
|
|
2042
2044
|
...a
|
|
2043
|
-
}, V = `.${e(`${t}-${o}`)}`, C = n ? n({ sizeKey: o, sizeValue:
|
|
2044
|
-
|
|
2045
|
+
}, V = `.${e(`${t}-${o}`)}`, C = n ? n({ sizeKey: o, sizeValue: h }) : {};
|
|
2046
|
+
r[V] = {
|
|
2045
2047
|
...p,
|
|
2046
2048
|
...C
|
|
2047
|
-
}, Object.entries(
|
|
2048
|
-
const x = `.${e(`${t}-${o}-${f}`)}`,
|
|
2049
|
-
|
|
2049
|
+
}, Object.entries(l).forEach(([f, v]) => {
|
|
2050
|
+
const x = `.${e(`${t}-${o}-${f}`)}`, u = i ? i({ sizeKey: o, sizeValue: h, weightKey: f, weightValue: v }) : {};
|
|
2051
|
+
r[x] = {
|
|
2050
2052
|
...p,
|
|
2051
|
-
"font-weight":
|
|
2052
|
-
...
|
|
2053
|
+
"font-weight": v,
|
|
2054
|
+
...u
|
|
2053
2055
|
};
|
|
2054
2056
|
});
|
|
2055
|
-
}), d(
|
|
2057
|
+
}), d(r);
|
|
2056
2058
|
}, $ = {
|
|
2057
2059
|
aspectRatio: !1,
|
|
2058
2060
|
backdropBlur: !1,
|
|
@@ -2125,7 +2127,7 @@ const R = {
|
|
|
2125
2127
|
medium: "500",
|
|
2126
2128
|
semibold: "600",
|
|
2127
2129
|
bold: "700"
|
|
2128
|
-
},
|
|
2130
|
+
}, l = {
|
|
2129
2131
|
title: "2rem",
|
|
2130
2132
|
1: "1.75rem",
|
|
2131
2133
|
2: "1.625rem",
|
|
@@ -2145,10 +2147,10 @@ const R = {
|
|
|
2145
2147
|
fixedProps: {
|
|
2146
2148
|
"line-height": "1.5"
|
|
2147
2149
|
},
|
|
2148
|
-
sizeProps: ({ sizeKey:
|
|
2149
|
-
"font-weight": n.includes(
|
|
2150
|
+
sizeProps: ({ sizeKey: r }) => ({
|
|
2151
|
+
"font-weight": n.includes(r) ? s.semibold : s.bold
|
|
2150
2152
|
}),
|
|
2151
|
-
sizes:
|
|
2153
|
+
sizes: l,
|
|
2152
2154
|
weights: s
|
|
2153
2155
|
}), D({
|
|
2154
2156
|
addUtilities: d,
|
|
@@ -2156,16 +2158,16 @@ const R = {
|
|
|
2156
2158
|
classPrefix: "text-body",
|
|
2157
2159
|
sizes: i,
|
|
2158
2160
|
weights: s
|
|
2159
|
-
}), x1({ matchUtilities: e, theme: t }),
|
|
2161
|
+
}), x1({ matchUtilities: e, theme: t }), w1({ matchUtilities: e, theme: t }), S1({ matchUtilities: e }), k1({ matchUtilities: e });
|
|
2160
2162
|
}
|
|
2161
|
-
],
|
|
2163
|
+
], s2 = {
|
|
2162
2164
|
theme: {
|
|
2163
2165
|
extend: B,
|
|
2164
2166
|
colors: I
|
|
2165
2167
|
},
|
|
2166
2168
|
plugins: q,
|
|
2167
2169
|
corePlugins: $
|
|
2168
|
-
},
|
|
2170
|
+
}, r2 = {
|
|
2169
2171
|
theme: {
|
|
2170
2172
|
extend: B,
|
|
2171
2173
|
colors: O
|
|
@@ -2173,50 +2175,50 @@ const R = {
|
|
|
2173
2175
|
plugins: q,
|
|
2174
2176
|
corePlugins: $
|
|
2175
2177
|
};
|
|
2176
|
-
function
|
|
2178
|
+
function z1(d, e = []) {
|
|
2177
2179
|
return new Proxy(d, {
|
|
2178
2180
|
get: function(t, a) {
|
|
2179
2181
|
return t[a];
|
|
2180
2182
|
},
|
|
2181
2183
|
set(t, a, n) {
|
|
2182
2184
|
const s = { ...t };
|
|
2183
|
-
return t[a] = n, e.length > 0 && e.forEach((
|
|
2185
|
+
return t[a] = n, e.length > 0 && e.forEach((l) => l(t, s, a)), t;
|
|
2184
2186
|
}
|
|
2185
2187
|
});
|
|
2186
2188
|
}
|
|
2187
2189
|
function l2(d, e = []) {
|
|
2188
2190
|
e.length && (d == null || d.classList.add(...e));
|
|
2189
2191
|
}
|
|
2190
|
-
function
|
|
2192
|
+
function i2(d, e = []) {
|
|
2191
2193
|
e.length && (d == null || d.classList.remove(...e));
|
|
2192
2194
|
}
|
|
2193
|
-
function
|
|
2195
|
+
function o2({ cb: d, form: e, formData: t, validations: a, reactive: n = !1 }) {
|
|
2194
2196
|
let s = !0;
|
|
2195
|
-
for (const [
|
|
2196
|
-
const
|
|
2197
|
+
for (const [l, i] of t.entries()) {
|
|
2198
|
+
const r = e.querySelector(`[name="${l}"]`), o = a[l], h = [];
|
|
2197
2199
|
o.forEach((p) => {
|
|
2198
|
-
p.isValid(i) ||
|
|
2199
|
-
}),
|
|
2200
|
-
p.preventDefault(),
|
|
2200
|
+
p.isValid(i) || h.push(p.message);
|
|
2201
|
+
}), h.length ? (s = !1, r.classList.add("field-error"), d && d({ isValid: s, field: r, validations: a })) : (r.classList.remove("field-error"), d && d({ isValid: !0, field: r, validations: a })), n && (r == null || r.addEventListener("input", (p) => {
|
|
2202
|
+
p.preventDefault(), r.classList.contains("field-error") && r.classList.remove("field-error");
|
|
2201
2203
|
}));
|
|
2202
2204
|
}
|
|
2203
2205
|
return s;
|
|
2204
2206
|
}
|
|
2205
|
-
function
|
|
2207
|
+
function c2(d) {
|
|
2206
2208
|
const e = (
|
|
2207
2209
|
// eslint-disable-next-line
|
|
2208
2210
|
/(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/
|
|
2209
2211
|
), t = /[^a-zA-Z]+$/;
|
|
2210
2212
|
return e.test(d.toLowerCase()) && !t.test(d);
|
|
2211
2213
|
}
|
|
2212
|
-
class
|
|
2214
|
+
class d2 {
|
|
2213
2215
|
init(e) {
|
|
2214
2216
|
this.handleSliders(e);
|
|
2215
2217
|
}
|
|
2216
2218
|
handleSliders({ items: e, id: t = 1, cb: a }) {
|
|
2217
2219
|
if (!document.getElementById(`slider-container-${t}`))
|
|
2218
2220
|
return;
|
|
2219
|
-
const n =
|
|
2221
|
+
const n = z1(
|
|
2220
2222
|
{
|
|
2221
2223
|
activeIndex: 0,
|
|
2222
2224
|
computedSlides: [],
|
|
@@ -2251,16 +2253,16 @@ class c2 {
|
|
|
2251
2253
|
)), e.slides = [...(a = e.container) == null ? void 0 : a.children], e.slides.forEach((n) => e.observer.observe(n));
|
|
2252
2254
|
}
|
|
2253
2255
|
handleIntersect(e, t, a) {
|
|
2254
|
-
const n = e.filter((
|
|
2255
|
-
(
|
|
2256
|
+
const n = e.filter((r) => r.isIntersecting), s = n.length === a.slides.length, l = n.every(
|
|
2257
|
+
(r) => r.isIntersecting === !0
|
|
2256
2258
|
);
|
|
2257
|
-
s &&
|
|
2258
|
-
const o = [...a.slides].indexOf(
|
|
2259
|
-
|
|
2259
|
+
s && l ? t.disconnect() : (a.disableBtns = !1, e.forEach((r) => {
|
|
2260
|
+
const o = [...a.slides].indexOf(r.target);
|
|
2261
|
+
r.target === a.slides[0] && (a.showPrevBtn = r.isIntersecting), r.target === a.slides[a.slides.length - 1] && (a.showNextBtn = r.isIntersecting), r.target === a.slides[2] && (a.scrollToStart = r.isIntersecting), r.target === a.slides[a.slides.length - 2] && (a.scrollToEnd = r.isIntersecting), r.isIntersecting && !a.entriesIntersected.includes(o) && (a.entriesIntersected.push(o), a.activeIndex = o, i(r));
|
|
2260
2262
|
}));
|
|
2261
|
-
function i(
|
|
2263
|
+
function i(r) {
|
|
2262
2264
|
var o;
|
|
2263
|
-
|
|
2265
|
+
r.target !== a.slides[a.slides.length - 1] && r.target !== a.slides[0] && r.target !== a.slides[2] && r.target !== a.slides[a.slides.length - 2] && ((o = a.observer) == null || o.unobserve(r.target));
|
|
2264
2266
|
}
|
|
2265
2267
|
}
|
|
2266
2268
|
btnListeners(e) {
|
|
@@ -2279,7 +2281,7 @@ class c2 {
|
|
|
2279
2281
|
e.scrollToEnd ? e.transition = n : e.transition += e.slides[1].offsetWidth + 12, e.container.style.transform = `translate3d(${-e.transition}px, 0, 0)`;
|
|
2280
2282
|
}
|
|
2281
2283
|
sliderElements({ state: e, items: t, id: a, cb: n }) {
|
|
2282
|
-
const s = '<span class="slide-first"></span>',
|
|
2284
|
+
const s = '<span class="slide-first"></span>', l = '<span class="slide-last"></span>';
|
|
2283
2285
|
if (e.container = document.getElementById(`slider-container-${a}`), !e.container)
|
|
2284
2286
|
return console.error(`slider-container-${a} Not Found`);
|
|
2285
2287
|
e.prevBtn = e.container.parentElement.querySelector(
|
|
@@ -2287,8 +2289,8 @@ class c2 {
|
|
|
2287
2289
|
), e.nextBtn = e.container.parentElement.querySelector(
|
|
2288
2290
|
`#btn-right-${a}`
|
|
2289
2291
|
);
|
|
2290
|
-
const i = t.map((o) => n(o)).join(""),
|
|
2291
|
-
|
|
2292
|
+
const i = t.map((o) => n(o)).join(""), r = document.createElement("div");
|
|
2293
|
+
r.innerHTML = `${s}${i}${l}`, e.container.replaceChildren(...r.children), e.container.parentElement.classList.add("loaded");
|
|
2292
2294
|
}
|
|
2293
2295
|
showHideBtns(e, t, a) {
|
|
2294
2296
|
if (a === "showPrevBtn" || a === "showNextBtn") {
|
|
@@ -2300,10 +2302,10 @@ class c2 {
|
|
|
2300
2302
|
}
|
|
2301
2303
|
class H {
|
|
2302
2304
|
static calcCrow(e, t, a, n) {
|
|
2303
|
-
const
|
|
2305
|
+
const l = H.toRad(a - e), i = H.toRad(n - t);
|
|
2304
2306
|
e = H.toRad(e), a = H.toRad(a);
|
|
2305
|
-
const
|
|
2306
|
-
return 6371 * (2 * Math.atan2(Math.sqrt(
|
|
2307
|
+
const r = Math.sin(l / 2) * Math.sin(l / 2) + Math.sin(i / 2) * Math.sin(i / 2) * Math.cos(e) * Math.cos(a);
|
|
2308
|
+
return 6371 * (2 * Math.atan2(Math.sqrt(r), Math.sqrt(1 - r)));
|
|
2307
2309
|
}
|
|
2308
2310
|
static cleanupAddress(e) {
|
|
2309
2311
|
return e.split(" ").map((a) => a.split("-")[0]).join(" ").trim();
|
|
@@ -2331,21 +2333,21 @@ class H {
|
|
|
2331
2333
|
static async createData(e, t = null, a = !0) {
|
|
2332
2334
|
if (window.options.isBot || !t)
|
|
2333
2335
|
return null;
|
|
2334
|
-
const { tolken: n = null, ip: s = null } = await H.getHeaders(),
|
|
2336
|
+
const { tolken: n = null, ip: s = null } = await H.getHeaders(), l = a === !1 ? "" : "&tolken=" + n + "&ip=" + s, i = e + l, r = typeof t == "string" ? t : JSON.stringify(t), o = (t == null ? void 0 : t.website) ?? H.getWebsiteHeaderName();
|
|
2335
2337
|
try {
|
|
2336
|
-
const
|
|
2338
|
+
const h = await fetch(i, {
|
|
2337
2339
|
method: "POST",
|
|
2338
|
-
body:
|
|
2340
|
+
body: r === "null" ? null : r,
|
|
2339
2341
|
headers: {
|
|
2340
2342
|
website: o
|
|
2341
2343
|
}
|
|
2342
|
-
}), p =
|
|
2344
|
+
}), p = h.headers.get("content-type");
|
|
2343
2345
|
if (p && p.indexOf("application/json") !== -1)
|
|
2344
|
-
return
|
|
2345
|
-
const V = await
|
|
2346
|
+
return h.json();
|
|
2347
|
+
const V = await h.text();
|
|
2346
2348
|
return V ? V.replace("__next", "") : null;
|
|
2347
|
-
} catch (
|
|
2348
|
-
console.error("createData",
|
|
2349
|
+
} catch (h) {
|
|
2350
|
+
console.error("createData", h);
|
|
2349
2351
|
}
|
|
2350
2352
|
return null;
|
|
2351
2353
|
}
|
|
@@ -2407,15 +2409,15 @@ class H {
|
|
|
2407
2409
|
return null;
|
|
2408
2410
|
const { tolken: n = null, ip: s = null } = await H.getHeaders(), i = e.replace("#", "").replace("%23", "") + "&tolken=" + n + "&ip=" + s;
|
|
2409
2411
|
try {
|
|
2410
|
-
const
|
|
2412
|
+
const r = await fetch(i, { method: "GET" });
|
|
2411
2413
|
if (t === !0) {
|
|
2412
|
-
const
|
|
2413
|
-
return
|
|
2414
|
+
const h = await r.text();
|
|
2415
|
+
return h ? h.replace("__next", "") : null;
|
|
2414
2416
|
}
|
|
2415
|
-
const o =
|
|
2416
|
-
return o && o.indexOf("application/json") !== -1 ?
|
|
2417
|
-
} catch (
|
|
2418
|
-
console.error("fetchData",
|
|
2417
|
+
const o = r.headers.get("content-type");
|
|
2418
|
+
return o && o.indexOf("application/json") !== -1 ? r.json() : null;
|
|
2419
|
+
} catch (r) {
|
|
2420
|
+
console.error("fetchData", r, e);
|
|
2419
2421
|
}
|
|
2420
2422
|
return null;
|
|
2421
2423
|
}
|
|
@@ -2443,12 +2445,12 @@ class H {
|
|
|
2443
2445
|
swLng: 0
|
|
2444
2446
|
};
|
|
2445
2447
|
const n = e.getBounds();
|
|
2446
|
-
let s = n.getSouth(),
|
|
2447
|
-
return a && (s = s - a,
|
|
2448
|
+
let s = n.getSouth(), l = n.getEast(), i = n.getNorth(), r = n.getWest();
|
|
2449
|
+
return a && (s = s - a, l = l + a, i = i + a, r = r - a), t && (s = s.toFixed(t), l = l.toFixed(t), i = i.toFixed(t), r = r.toFixed(t)), {
|
|
2448
2450
|
swLat: s,
|
|
2449
|
-
neLng:
|
|
2451
|
+
neLng: l,
|
|
2450
2452
|
neLat: i,
|
|
2451
|
-
swLng:
|
|
2453
|
+
swLng: r
|
|
2452
2454
|
};
|
|
2453
2455
|
}
|
|
2454
2456
|
static getFirstN(e, t = 5) {
|
|
@@ -2476,33 +2478,33 @@ class H {
|
|
|
2476
2478
|
return "/report/license-plate";
|
|
2477
2479
|
}
|
|
2478
2480
|
static async getHeaders(e = 300) {
|
|
2479
|
-
var
|
|
2481
|
+
var r;
|
|
2480
2482
|
const {
|
|
2481
2483
|
userAgent: t = null,
|
|
2482
2484
|
userAgentData: a = null,
|
|
2483
2485
|
platform: n = null
|
|
2484
|
-
} = navigator || {}, s = (a == null ? void 0 : a.platform) ?? n,
|
|
2486
|
+
} = navigator || {}, s = (a == null ? void 0 : a.platform) ?? n, l = {
|
|
2485
2487
|
tolken: null,
|
|
2486
2488
|
ip: null,
|
|
2487
2489
|
userAgent: t,
|
|
2488
2490
|
platform: s
|
|
2489
2491
|
};
|
|
2490
2492
|
if (options && options.isBot || typeof window.localStorage > "u")
|
|
2491
|
-
return
|
|
2493
|
+
return l;
|
|
2492
2494
|
const i = localStorage.getItem("headerTolken");
|
|
2493
2495
|
if (i) {
|
|
2494
|
-
const o = JSON.parse(i),
|
|
2495
|
-
return o.expire -
|
|
2496
|
+
const o = JSON.parse(i), h = (/* @__PURE__ */ new Date()).getTime();
|
|
2497
|
+
return o.expire - h < 0 && localStorage.removeItem("headerTolken"), {
|
|
2496
2498
|
tolken: o.tolken,
|
|
2497
2499
|
ip: o.ip,
|
|
2498
2500
|
userAgent: t,
|
|
2499
2501
|
platform: s
|
|
2500
2502
|
};
|
|
2501
2503
|
}
|
|
2502
|
-
if ((
|
|
2503
|
-
return
|
|
2504
|
+
if ((r = window == null ? void 0 : window.options) != null && r.isPdf)
|
|
2505
|
+
return l;
|
|
2504
2506
|
try {
|
|
2505
|
-
const
|
|
2507
|
+
const h = await (await fetch("/api/headers")).json(), p = (h == null ? void 0 : h.token) ?? null, V = (h == null ? void 0 : h.ip) ?? null;
|
|
2506
2508
|
return localStorage.setItem(
|
|
2507
2509
|
"headerTolken",
|
|
2508
2510
|
JSON.stringify({
|
|
@@ -2514,7 +2516,7 @@ class H {
|
|
|
2514
2516
|
} catch (o) {
|
|
2515
2517
|
console.error("getHeaders", o);
|
|
2516
2518
|
}
|
|
2517
|
-
return
|
|
2519
|
+
return l;
|
|
2518
2520
|
}
|
|
2519
2521
|
static getLayerTitle(e) {
|
|
2520
2522
|
return {
|
|
@@ -2523,14 +2525,14 @@ class H {
|
|
|
2523
2525
|
}[e];
|
|
2524
2526
|
}
|
|
2525
2527
|
static async getLocationData(e) {
|
|
2526
|
-
const { swLat: t, neLng: a, neLat: n, swLng: s } = H.getBounds(e, 3, 0.05),
|
|
2527
|
-
return await H.fetchData("/api/client?query=" +
|
|
2528
|
+
const { swLat: t, neLng: a, neLat: n, swLng: s } = H.getBounds(e, 3, 0.05), l = "zip-location&swLat=" + t + "&neLng=" + a + "&neLat=" + n + "&swLng=" + s;
|
|
2529
|
+
return await H.fetchData("/api/client?query=" + l);
|
|
2528
2530
|
}
|
|
2529
2531
|
static getReportUrl(e, t = null) {
|
|
2530
|
-
var
|
|
2531
|
-
const a = ((
|
|
2532
|
+
var r, o, h;
|
|
2533
|
+
const a = ((r = e == null ? void 0 : e.state) == null ? void 0 : r.slug) ?? null, n = ((o = e == null ? void 0 : e.city) == null ? void 0 : o.slug) ?? null, s = ((h = e == null ? void 0 : e.name) == null ? void 0 : h.slug) ?? null, l = (e == null ? void 0 : e.zip) ?? null;
|
|
2532
2534
|
t = t || ((e == null ? void 0 : e.id) ?? null);
|
|
2533
|
-
const i = [
|
|
2535
|
+
const i = [l, "-piq", t].filter((p) => p).join("");
|
|
2534
2536
|
return "/" + [a, n, s].filter((p) => p).map((p) => H.toSlug(p)).join("/") + "/" + i;
|
|
2535
2537
|
}
|
|
2536
2538
|
static async getSearchValue(e = "recsSearchValue") {
|
|
@@ -2697,18 +2699,18 @@ class H {
|
|
|
2697
2699
|
static gridTest(e, t, a = 1500) {
|
|
2698
2700
|
const n = this;
|
|
2699
2701
|
L.GridLayer.GridDebug = L.GridLayer.extend({
|
|
2700
|
-
createTile: function(s,
|
|
2702
|
+
createTile: function(s, l) {
|
|
2701
2703
|
const i = document.createElement("div");
|
|
2702
2704
|
return setTimeout(() => {
|
|
2703
|
-
|
|
2704
|
-
const { se:
|
|
2705
|
+
l(null, i);
|
|
2706
|
+
const { se: r, nw: o } = n.getGridBounds({
|
|
2705
2707
|
map: e,
|
|
2706
2708
|
tileSize: this.getTileSize(),
|
|
2707
2709
|
coords: s
|
|
2708
2710
|
});
|
|
2709
2711
|
t({
|
|
2710
|
-
swLat:
|
|
2711
|
-
neLng:
|
|
2712
|
+
swLat: r.lat,
|
|
2713
|
+
neLng: r.lng,
|
|
2712
2714
|
neLat: o.lat,
|
|
2713
2715
|
swLng: o.lng,
|
|
2714
2716
|
coords: s,
|
|
@@ -2738,10 +2740,10 @@ class H {
|
|
|
2738
2740
|
onClose: a = null,
|
|
2739
2741
|
onOpen: n = null,
|
|
2740
2742
|
onTargetClick: s = null,
|
|
2741
|
-
selfClose:
|
|
2743
|
+
selfClose: l = !1,
|
|
2742
2744
|
target: i = null
|
|
2743
2745
|
}) {
|
|
2744
|
-
const
|
|
2746
|
+
const r = i ? document.querySelectorAll(i) : [], o = document.getElementById(`${t}-dialog`), h = l ? o == null ? void 0 : o.querySelectorAll("[data-dialog-close]") : document.querySelectorAll("[data-dialog-close]"), p = [
|
|
2745
2747
|
"closing",
|
|
2746
2748
|
"closed",
|
|
2747
2749
|
"opening",
|
|
@@ -2749,23 +2751,23 @@ class H {
|
|
|
2749
2751
|
"outside",
|
|
2750
2752
|
"removed"
|
|
2751
2753
|
].reduce(
|
|
2752
|
-
(
|
|
2753
|
-
...
|
|
2754
|
-
[
|
|
2754
|
+
(u, b) => ({
|
|
2755
|
+
...u,
|
|
2756
|
+
[b]: new Event(b)
|
|
2755
2757
|
}),
|
|
2756
2758
|
{}
|
|
2757
|
-
), V = new MutationObserver((
|
|
2758
|
-
|
|
2759
|
+
), V = new MutationObserver((u, b) => {
|
|
2760
|
+
u.forEach(async (w) => {
|
|
2759
2761
|
if (w.attributeName === "open") {
|
|
2760
|
-
const
|
|
2761
|
-
if (!(
|
|
2762
|
-
|
|
2762
|
+
const g = w.target;
|
|
2763
|
+
if (!(g == null ? void 0 : g.hasAttribute("open"))) return;
|
|
2764
|
+
g == null || g.removeAttribute("inert"), g == null || g.dispatchEvent(p.opening), g && await x(g), g == null || g.dispatchEvent(p.opened);
|
|
2763
2765
|
}
|
|
2764
2766
|
});
|
|
2765
|
-
}), C = new MutationObserver((
|
|
2766
|
-
|
|
2767
|
-
w.removedNodes.forEach((
|
|
2768
|
-
|
|
2767
|
+
}), C = new MutationObserver((u, b) => {
|
|
2768
|
+
u.forEach((w) => {
|
|
2769
|
+
w.removedNodes.forEach((g) => {
|
|
2770
|
+
g.nodeName === "DIALOG" && (g.removeEventListener("click", v), g.removeEventListener("close", f), g.dispatchEvent(p.removed), C == null || C.disconnect(), V == null || V.disconnect());
|
|
2769
2771
|
});
|
|
2770
2772
|
});
|
|
2771
2773
|
});
|
|
@@ -2776,27 +2778,27 @@ class H {
|
|
|
2776
2778
|
subtree: !1,
|
|
2777
2779
|
childList: !0
|
|
2778
2780
|
}));
|
|
2779
|
-
const f = async ({ target:
|
|
2780
|
-
|
|
2781
|
-
},
|
|
2782
|
-
(
|
|
2783
|
-
}, x = (
|
|
2784
|
-
|
|
2781
|
+
const f = async ({ target: u }) => {
|
|
2782
|
+
u == null || u.classList.add("closing"), u == null || u.setAttribute("inert", ""), u == null || u.dispatchEvent(p.closing), u && await x(u), u == null || u.classList.remove("closing"), u == null || u.dispatchEvent(p.closed);
|
|
2783
|
+
}, v = async ({ target: u }) => {
|
|
2784
|
+
(u == null ? void 0 : u.nodeName) === "DIALOG" && (u == null || u.dispatchEvent(p.outside), o == null || o.close("outside"));
|
|
2785
|
+
}, x = (u) => Promise.allSettled(
|
|
2786
|
+
u == null ? void 0 : u.getAnimations().map((b) => b == null ? void 0 : b.finished)
|
|
2785
2787
|
);
|
|
2786
|
-
return !e && (o == null || o.addEventListener("click",
|
|
2787
|
-
await f({ target:
|
|
2788
|
-
}), n && (o == null || o.addEventListener("open", async (
|
|
2789
|
-
n(
|
|
2790
|
-
})),
|
|
2791
|
-
|
|
2792
|
-
o == null || o.showModal(), s && s(
|
|
2788
|
+
return !e && (o == null || o.addEventListener("click", v)), o == null || o.addEventListener("close", async (u) => {
|
|
2789
|
+
await f({ target: u.target }), a && a(u, o);
|
|
2790
|
+
}), n && (o == null || o.addEventListener("open", async (u) => {
|
|
2791
|
+
n(u, o);
|
|
2792
|
+
})), r == null || r.forEach((u) => {
|
|
2793
|
+
u.addEventListener("click", (b) => {
|
|
2794
|
+
o == null || o.showModal(), s && s(b, o);
|
|
2793
2795
|
});
|
|
2794
|
-
}),
|
|
2795
|
-
|
|
2796
|
+
}), h == null || h.forEach((u) => {
|
|
2797
|
+
u.addEventListener("click", async (b) => {
|
|
2796
2798
|
o == null || o.close("close");
|
|
2797
2799
|
});
|
|
2798
2800
|
}), {
|
|
2799
|
-
activators:
|
|
2801
|
+
activators: r,
|
|
2800
2802
|
ref: o
|
|
2801
2803
|
};
|
|
2802
2804
|
}
|
|
@@ -2807,8 +2809,8 @@ class H {
|
|
|
2807
2809
|
if (!e)
|
|
2808
2810
|
return;
|
|
2809
2811
|
const n = (a == null ? void 0 : a.useBounding) ?? !1;
|
|
2810
|
-
new IntersectionObserver(async (
|
|
2811
|
-
n ? (
|
|
2812
|
+
new IntersectionObserver(async (l, i) => {
|
|
2813
|
+
n ? (l[0].isIntersecting || l[0].boundingClientRect.y < 0) && t({ obs: i, entry: l[0], entries: l }) : l[0].isIntersecting && t({ obs: i, entry: l[0], entries: l });
|
|
2812
2814
|
}, a).observe(e);
|
|
2813
2815
|
}
|
|
2814
2816
|
static injectLink({ href: e, id: t }) {
|
|
@@ -2816,11 +2818,11 @@ class H {
|
|
|
2816
2818
|
a.href = e, a.type = "text/css", a.rel = "stylesheet", t && (a.id = t), document.getElementsByTagName("head")[0].appendChild(a);
|
|
2817
2819
|
}
|
|
2818
2820
|
static injectScript({ src: e, id: t = null, async: a = !0, module: n = !1 }) {
|
|
2819
|
-
return new Promise(function(s,
|
|
2821
|
+
return new Promise(function(s, l) {
|
|
2820
2822
|
let i = document.getElementById(t);
|
|
2821
2823
|
if (t && i && i.dataset.loaded === "true")
|
|
2822
2824
|
return s({ alreadyLoaded: !0, id: t });
|
|
2823
|
-
i || (i = document.createElement("script"), i.src = e, i.dataset.loaded = "false", t && (i.id = t), i.type = n ? "module" : "text/javascript", i.async = a, document.body.appendChild(i), i.onload = () => (i.dataset.loaded = "true", s({ alreadyLoaded: !1, id: t })), i.onerror = () =>
|
|
2825
|
+
i || (i = document.createElement("script"), i.src = e, i.dataset.loaded = "false", t && (i.id = t), i.type = n ? "module" : "text/javascript", i.async = a, document.body.appendChild(i), i.onload = () => (i.dataset.loaded = "true", s({ alreadyLoaded: !1, id: t })), i.onerror = () => l(!1));
|
|
2824
2826
|
});
|
|
2825
2827
|
}
|
|
2826
2828
|
static isMobile({ selector: e = null, width: t = 640 } = {}) {
|
|
@@ -2853,14 +2855,14 @@ class H {
|
|
|
2853
2855
|
return a > 999999 ? n * (a / 1e6).toFixed(1) + "m" : a > 999 ? n * (a / 1e3).toFixed(t) + "k" : n * a;
|
|
2854
2856
|
}
|
|
2855
2857
|
static async logRequest(e = null, t = null, a = null, n = null, s = null) {
|
|
2856
|
-
const
|
|
2858
|
+
const l = {
|
|
2857
2859
|
name: e,
|
|
2858
2860
|
uuid: t,
|
|
2859
2861
|
ip: a,
|
|
2860
2862
|
url: n,
|
|
2861
2863
|
data: s
|
|
2862
2864
|
};
|
|
2863
|
-
return await H.createData("/api/client?query=log/save&method=POST",
|
|
2865
|
+
return await H.createData("/api/client?query=log/save&method=POST", l), null;
|
|
2864
2866
|
}
|
|
2865
2867
|
static loadAds() {
|
|
2866
2868
|
window.dataLayer = window.dataLayer || [];
|
|
@@ -2884,8 +2886,8 @@ class H {
|
|
|
2884
2886
|
async: !1,
|
|
2885
2887
|
module: a
|
|
2886
2888
|
});
|
|
2887
|
-
} catch (
|
|
2888
|
-
console.error("loadCustomScript",
|
|
2889
|
+
} catch (l) {
|
|
2890
|
+
console.error("loadCustomScript", l);
|
|
2889
2891
|
}
|
|
2890
2892
|
}
|
|
2891
2893
|
return null;
|
|
@@ -2946,17 +2948,17 @@ class H {
|
|
|
2946
2948
|
first: a = null,
|
|
2947
2949
|
middle: n = null,
|
|
2948
2950
|
last: s = null,
|
|
2949
|
-
min:
|
|
2951
|
+
min: l = null,
|
|
2950
2952
|
max: i = null,
|
|
2951
|
-
city:
|
|
2953
|
+
city: r = null,
|
|
2952
2954
|
state: o = null,
|
|
2953
|
-
vin:
|
|
2955
|
+
vin: h = null,
|
|
2954
2956
|
license: p = null,
|
|
2955
2957
|
token: V = null,
|
|
2956
2958
|
phone: C = null
|
|
2957
|
-
} = e || {}, f = t && t !== "",
|
|
2958
|
-
let
|
|
2959
|
-
return t && t !== "" &&
|
|
2959
|
+
} = e || {}, f = t && t !== "", v = l && l !== "" && l !== "18", x = i && i !== "" && l !== "99";
|
|
2960
|
+
let u = [];
|
|
2961
|
+
return t && t !== "" && u.push("name=" + t), f || (a && a !== "" && u.push("first=" + a), n && n !== "" && u.push("middle=" + n), s && s !== "" && u.push("last=" + s)), v && x ? parseInt(l) > parseInt(i) ? (u.push("min=" + i), u.push("max=" + l)) : (u.push("min=" + l), u.push("max=" + i)) : (v && u.push("min=" + l), x && u.push("max=" + i)), C && C !== "" && u.push("phone=" + C), r && r !== "" && u.push("city=" + r), p && p !== "" && u.push("license=" + p), h && h !== "" && u.push("vin=" + h), o && o !== "" && u.push("state=" + o), V && V !== "" && u.push("token=" + V), u.join("&");
|
|
2960
2962
|
}
|
|
2961
2963
|
static padTo2Digits(e) {
|
|
2962
2964
|
return e.toString().padStart(2, "0");
|
|
@@ -2970,20 +2972,20 @@ class H {
|
|
|
2970
2972
|
addressesOnly: a = !1,
|
|
2971
2973
|
useCitySearch: n = !1,
|
|
2972
2974
|
useCityStateSearch: s = !1,
|
|
2973
|
-
useSearch:
|
|
2975
|
+
useSearch: l = !1,
|
|
2974
2976
|
useLocation: i = !0,
|
|
2975
|
-
state:
|
|
2977
|
+
state: r = "",
|
|
2976
2978
|
useGoogle: o = !1
|
|
2977
|
-
} = t ?? {}, { tolken:
|
|
2979
|
+
} = t ?? {}, { tolken: h = null, ip: p = null } = await H.getHeaders(), C = [
|
|
2978
2980
|
"query=" + encodeURIComponent(this.cleanupAddress(e)),
|
|
2979
2981
|
"addressesOnly=" + a,
|
|
2980
|
-
"useSearch=" +
|
|
2982
|
+
"useSearch=" + l,
|
|
2981
2983
|
"useCitySearch=" + n,
|
|
2982
2984
|
"useCityStateSearch=" + s,
|
|
2983
2985
|
"useLocation=" + i,
|
|
2984
2986
|
"useGoogle=" + o
|
|
2985
2987
|
];
|
|
2986
|
-
|
|
2988
|
+
r && r !== "" && !s && C.push("state=" + r), h && h !== "" && C.push("tolken=" + h), p && p !== "" && C.push("ip=" + p);
|
|
2987
2989
|
const f = C.join("&"), x = (n || s ? "/api/autocomplete-city" : "/api/autocomplete") + "?" + f;
|
|
2988
2990
|
return await H.makeSearchFetchCall(x);
|
|
2989
2991
|
}
|
|
@@ -3030,14 +3032,30 @@ class H {
|
|
|
3030
3032
|
s && (n = s.short);
|
|
3031
3033
|
}
|
|
3032
3034
|
if (a && !n) {
|
|
3033
|
-
const s = a.split(" "),
|
|
3034
|
-
if (
|
|
3035
|
-
const i = this.searchInStates(
|
|
3035
|
+
const s = a.split(" "), l = s[s.length - 1];
|
|
3036
|
+
if (l.length) {
|
|
3037
|
+
const i = this.searchInStates(l);
|
|
3036
3038
|
i && (n = i.short, a = s.slice(0, -1).join(" "));
|
|
3037
3039
|
}
|
|
3038
3040
|
}
|
|
3039
3041
|
return a && n && a.toLowerCase() === n.toLowerCase() && (a = null), e.city = a, e.state = n ? n.toUpperCase() : null, e;
|
|
3040
3042
|
}
|
|
3043
|
+
/**
|
|
3044
|
+
* @param {Array<{ fileName: string, initFunctionName: string }>} fileNames - Array of objects with fileName and initFunctionName properties
|
|
3045
|
+
* @param {string} subfolder - The subfolder to load the files from
|
|
3046
|
+
* @returns {Promise}
|
|
3047
|
+
*/
|
|
3048
|
+
static async setRandomFileNameVersion(e, t = "scripts") {
|
|
3049
|
+
const a = Date.now(), n = typeof window < "u" ? window.location.origin : "", s = t ? `/${t}/` : "/";
|
|
3050
|
+
try {
|
|
3051
|
+
const l = e.map(({ fileName: o, initFunctionName: h }) => import(`${n}${s}${o}?v=${a}`)), i = await Promise.all(l), r = [];
|
|
3052
|
+
i.forEach((o, h) => {
|
|
3053
|
+
o && typeof o[e[h].initFunctionName] == "function" ? r.push(o[e[h].initFunctionName]()) : console.error(`error loading ${e[h].initFunctionName}()`);
|
|
3054
|
+
}), r.length > 0 && await Promise.all(r);
|
|
3055
|
+
} catch (l) {
|
|
3056
|
+
console.error("Failed to load one or more search modules:", l);
|
|
3057
|
+
}
|
|
3058
|
+
}
|
|
3041
3059
|
static async setSearchValueClient(e, t = "recsSearchValue") {
|
|
3042
3060
|
localStorage.setItem(t, JSON.stringify(e)), await H.createData(`/api/cookie/create?name=${t}`, e);
|
|
3043
3061
|
}
|
|
@@ -3118,43 +3136,43 @@ class H {
|
|
|
3118
3136
|
}
|
|
3119
3137
|
}
|
|
3120
3138
|
export {
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3139
|
+
F1 as Accordion,
|
|
3140
|
+
T1 as Alert,
|
|
3141
|
+
D1 as Autocomplete,
|
|
3142
|
+
B1 as Badge,
|
|
3125
3143
|
F as Button,
|
|
3126
|
-
|
|
3127
|
-
|
|
3144
|
+
d2 as CardSlider,
|
|
3145
|
+
I1 as Checkbox,
|
|
3128
3146
|
H as Common,
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3147
|
+
Y1 as ContactForm,
|
|
3148
|
+
K1 as ContentCard,
|
|
3149
|
+
O1 as Dialog,
|
|
3150
|
+
$1 as Dots,
|
|
3151
|
+
X1 as FlexItem,
|
|
3152
|
+
a2 as FunnelHeader,
|
|
3153
|
+
y as Icon,
|
|
3154
|
+
q1 as LoadingBar,
|
|
3155
|
+
P1 as Popover,
|
|
3156
|
+
j1 as ProcessingSpinner,
|
|
3157
|
+
R1 as ProgressBar,
|
|
3158
|
+
W1 as Radio,
|
|
3159
|
+
U1 as Select,
|
|
3160
|
+
Q1 as Skeleton,
|
|
3161
|
+
G1 as Slider,
|
|
3162
|
+
e2 as Spacer,
|
|
3163
|
+
J1 as Spinner,
|
|
3164
|
+
t2 as StackedListItem,
|
|
3165
|
+
_1 as Stars,
|
|
3166
|
+
d1 as TextArea,
|
|
3149
3167
|
T as Textbox,
|
|
3150
3168
|
l2 as addClass,
|
|
3151
|
-
|
|
3169
|
+
n2 as colors,
|
|
3152
3170
|
$ as corePlugins,
|
|
3153
|
-
|
|
3171
|
+
r2 as elerisPreset,
|
|
3154
3172
|
B as extensions,
|
|
3155
3173
|
q as plugins,
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3174
|
+
s2 as propertyPreset,
|
|
3175
|
+
i2 as removeClass,
|
|
3176
|
+
c2 as validateEmail,
|
|
3177
|
+
o2 as validateForm
|
|
3160
3178
|
};
|