md-components-mdigial-azamat 0.0.73 → 0.0.76
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/Header/Header.js
CHANGED
|
@@ -1,56 +1,59 @@
|
|
|
1
|
-
import { jsx as t, Fragment as
|
|
2
|
-
import { useState as
|
|
3
|
-
import { H as
|
|
4
|
-
import { L as
|
|
5
|
-
import { R as
|
|
6
|
-
import { c as
|
|
7
|
-
import { u as
|
|
8
|
-
import { HeaderMobile as
|
|
9
|
-
import
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { jsx as t, Fragment as p } from "react/jsx-runtime";
|
|
2
|
+
import { useState as f, useEffect as u } from "react";
|
|
3
|
+
import { H as h } from "../index.module-c8833286.js";
|
|
4
|
+
import { L as w } from "../languages-list-87ab3324.js";
|
|
5
|
+
import { R as L } from "../routes-76228734.js";
|
|
6
|
+
import { c as v } from "../cn-6a4bf187.js";
|
|
7
|
+
import { u as S } from "../useScreenSize-c1b64c02.js";
|
|
8
|
+
import { HeaderMobile as E } from "./components/HeaderMobile/HeaderMobile.js";
|
|
9
|
+
import y from "./components/HeaderWeb/HeaderWeb.js";
|
|
10
|
+
const A = "app_language", H = () => localStorage.getItem(A) || w.RU, P = ({ darkTheme: a, app_setting: o }) => {
|
|
11
|
+
console.log(o);
|
|
12
|
+
const l = S(960), [d, m] = f(null);
|
|
13
|
+
u(() => {
|
|
14
|
+
const n = async () => {
|
|
14
15
|
try {
|
|
15
|
-
const
|
|
16
|
-
|
|
16
|
+
const s = H(), g = window.location.pathname.startsWith(L.ISLAM) ? "M_ISLAMIC" : "", { data: e } = await h.getHeaderSections(
|
|
17
|
+
s,
|
|
17
18
|
g
|
|
18
19
|
);
|
|
19
|
-
e && (Array.isArray(e) || typeof e == "object") ?
|
|
20
|
-
} catch (
|
|
21
|
-
console.error("Error fetching header data:",
|
|
20
|
+
e && (Array.isArray(e) || typeof e == "object") ? m(e) : console.warn("Header data is null or invalid:", e);
|
|
21
|
+
} catch (s) {
|
|
22
|
+
console.error("Error fetching header data:", s);
|
|
22
23
|
}
|
|
23
24
|
};
|
|
24
|
-
|
|
25
|
-
const r = () => {
|
|
26
|
-
o();
|
|
27
|
-
};
|
|
28
|
-
window.addEventListener("languageChange", r);
|
|
25
|
+
n();
|
|
29
26
|
const i = () => {
|
|
30
|
-
|
|
27
|
+
n();
|
|
28
|
+
};
|
|
29
|
+
window.addEventListener("languageChange", i);
|
|
30
|
+
const c = () => {
|
|
31
|
+
n();
|
|
31
32
|
};
|
|
32
|
-
return window.addEventListener("popstate",
|
|
33
|
-
window.removeEventListener("languageChange",
|
|
33
|
+
return window.addEventListener("popstate", c), () => {
|
|
34
|
+
window.removeEventListener("languageChange", i), window.removeEventListener("popstate", c);
|
|
34
35
|
};
|
|
35
36
|
}, []);
|
|
36
|
-
const
|
|
37
|
-
return /* @__PURE__ */ t(
|
|
38
|
-
|
|
37
|
+
const r = d || [];
|
|
38
|
+
return /* @__PURE__ */ t(p, { children: l ? /* @__PURE__ */ t(
|
|
39
|
+
E,
|
|
39
40
|
{
|
|
40
|
-
|
|
41
|
+
app_setting: o,
|
|
42
|
+
sections: r,
|
|
41
43
|
darkTheme: a,
|
|
42
44
|
className: "fixed top-0 z-[9999] w-full"
|
|
43
45
|
}
|
|
44
46
|
) : /* @__PURE__ */ t(
|
|
45
47
|
"div",
|
|
46
48
|
{
|
|
47
|
-
className:
|
|
49
|
+
className: v(
|
|
48
50
|
"fixed top-0 z-[9999] w-full h-[70px] bg-white flex items-center justify-center py-[9px]"
|
|
49
51
|
),
|
|
50
52
|
children: /* @__PURE__ */ t(
|
|
51
|
-
|
|
53
|
+
y,
|
|
52
54
|
{
|
|
53
|
-
|
|
55
|
+
app_setting: o,
|
|
56
|
+
sections: r,
|
|
54
57
|
darkTheme: a
|
|
55
58
|
}
|
|
56
59
|
)
|
|
@@ -58,5 +61,5 @@ const y = "app_language", A = () => localStorage.getItem(y) || h.RU, G = ({ dark
|
|
|
58
61
|
) });
|
|
59
62
|
};
|
|
60
63
|
export {
|
|
61
|
-
|
|
64
|
+
P as Header
|
|
62
65
|
};
|
|
@@ -1,52 +1,53 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as s, jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import { useState as l, useMemo as f } from "react";
|
|
3
|
-
import { M as
|
|
4
|
-
import { S as
|
|
5
|
-
import { a as
|
|
6
|
-
import { R as
|
|
7
|
-
import { u as
|
|
8
|
-
import { I } from "../../../index-9384c6d6.js";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import { HeaderTab as
|
|
13
|
-
import
|
|
14
|
-
const
|
|
15
|
-
|
|
3
|
+
import { M as E, G as O } from "../../../logo-99aa20bd.js";
|
|
4
|
+
import { S as P } from "../../../search-dd4eb6f8.js";
|
|
5
|
+
import { a as L } from "../../../cn-6a4bf187.js";
|
|
6
|
+
import { R as g } from "../../../routes-76228734.js";
|
|
7
|
+
import { u as q } from "../../../useClickOutside-197b0df2.js";
|
|
8
|
+
import { I as T } from "../../../index-9384c6d6.js";
|
|
9
|
+
import B from "../HeaderMenu/HeaderMenu.js";
|
|
10
|
+
import F from "../HeaderResults/HeaderResults.js";
|
|
11
|
+
import J from "../HeaderSearch/HeaderSearch.js";
|
|
12
|
+
import { HeaderTab as C } from "../HeaderTab/HeaderTab.js";
|
|
13
|
+
import K from "../SelectLanguage/SelectLanguage.js";
|
|
14
|
+
const Q = "category", H = "link", le = ({ sections: r, darkTheme: b, app_setting: u }) => {
|
|
15
|
+
var k;
|
|
16
|
+
const [p, n] = l(null), [d, x] = l(!1), [m, t] = l(!1), [o, y] = l(
|
|
16
17
|
[]
|
|
17
|
-
), [
|
|
18
|
-
|
|
19
|
-
}),
|
|
18
|
+
), [c, h] = l(0), { ref: M } = q(m, () => {
|
|
19
|
+
t(!1), n(null), h(0);
|
|
20
|
+
}), w = (e) => {
|
|
20
21
|
window.location.href = e || "/";
|
|
21
|
-
}, w = (e) => {
|
|
22
|
-
const { type: A, id: G, data: _ } = e;
|
|
23
|
-
A === F && (x(_), a(!0)), A === H && (a(!1), x([])), n(G);
|
|
24
22
|
}, v = (e) => {
|
|
23
|
+
const { type: I, id: D, data: W } = e;
|
|
24
|
+
I === Q && (y(W), t(!0)), I === H && (t(!1), y([])), n(D);
|
|
25
|
+
}, S = (e) => {
|
|
25
26
|
e === H && n(null);
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
},
|
|
31
|
-
return /* @__PURE__ */
|
|
27
|
+
}, N = () => {
|
|
28
|
+
x(!d), t(!1);
|
|
29
|
+
}, R = () => {
|
|
30
|
+
h(0), t(!1), n(null);
|
|
31
|
+
}, A = f(() => o.find((e) => e.id === c), [c, o]), j = window.location.pathname.startsWith(g.ISLAM), i = f(() => Array.isArray(r) ? r : r ? [r] : [], [r]), G = f(() => i.filter((e) => !e.is_left), [i]), z = f(() => i.filter((e) => e.is_left), [i]);
|
|
32
|
+
return /* @__PURE__ */ s(
|
|
32
33
|
"header",
|
|
33
34
|
{
|
|
34
|
-
className:
|
|
35
|
+
className: L(
|
|
35
36
|
"relative w-full container bg-white",
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
b && "bg-gray-900 text-white transition-all duration-500",
|
|
38
|
+
m && b && "bg-white text-gray-700"
|
|
38
39
|
),
|
|
39
40
|
children: [
|
|
40
|
-
!d && /* @__PURE__ */
|
|
41
|
-
/* @__PURE__ */
|
|
41
|
+
!d && /* @__PURE__ */ s("div", { className: "flex items-center h-13 px-6 lg:px-0 max-w-[1200px] mx-auto", children: [
|
|
42
|
+
/* @__PURE__ */ a(
|
|
42
43
|
"a",
|
|
43
44
|
{
|
|
44
|
-
href:
|
|
45
|
+
href: j ? g.ISLAM : g.MAIN_PAGE,
|
|
45
46
|
className: "flex items-center gap-6 mr-12 cursor-pointer",
|
|
46
|
-
children: /* @__PURE__ */
|
|
47
|
-
|
|
47
|
+
children: /* @__PURE__ */ a(
|
|
48
|
+
T,
|
|
48
49
|
{
|
|
49
|
-
src:
|
|
50
|
+
src: E,
|
|
50
51
|
alt: "Logo",
|
|
51
52
|
width: 120,
|
|
52
53
|
height: 34
|
|
@@ -54,44 +55,49 @@ const F = "category", H = "link", se = ({ sections: r, darkTheme: p }) => {
|
|
|
54
55
|
)
|
|
55
56
|
}
|
|
56
57
|
),
|
|
57
|
-
/* @__PURE__ */
|
|
58
|
-
/* @__PURE__ */
|
|
59
|
-
(e) => e && /* @__PURE__ */
|
|
60
|
-
|
|
58
|
+
/* @__PURE__ */ s("div", { className: "flex items-center justify-between flex-grow", children: [
|
|
59
|
+
/* @__PURE__ */ a("div", { className: "flex items-center gap-2", children: G.map(
|
|
60
|
+
(e) => e && /* @__PURE__ */ a(
|
|
61
|
+
C,
|
|
61
62
|
{
|
|
62
63
|
item: e,
|
|
63
|
-
activeTab:
|
|
64
|
-
onTabClick:
|
|
65
|
-
onTabHover:
|
|
66
|
-
onTabLeave:
|
|
64
|
+
activeTab: p,
|
|
65
|
+
onTabClick: w,
|
|
66
|
+
onTabHover: v,
|
|
67
|
+
onTabLeave: S
|
|
67
68
|
},
|
|
68
69
|
e == null ? void 0 : e.id
|
|
69
70
|
)
|
|
70
71
|
) }),
|
|
71
|
-
/* @__PURE__ */
|
|
72
|
-
/* @__PURE__ */
|
|
73
|
-
(e) => e && /* @__PURE__ */
|
|
74
|
-
|
|
72
|
+
/* @__PURE__ */ s("div", { className: "flex items-center gap-2", children: [
|
|
73
|
+
/* @__PURE__ */ a("div", { className: "flex items-center gap-2 pr-6 border-r border-gray-300 mr-4", children: z.map(
|
|
74
|
+
(e) => e && /* @__PURE__ */ a(
|
|
75
|
+
C,
|
|
75
76
|
{
|
|
76
77
|
item: e,
|
|
77
|
-
activeTab:
|
|
78
|
-
onTabClick:
|
|
79
|
-
onTabHover:
|
|
80
|
-
onTabLeave:
|
|
78
|
+
activeTab: p,
|
|
79
|
+
onTabClick: w,
|
|
80
|
+
onTabHover: v,
|
|
81
|
+
onTabLeave: S
|
|
81
82
|
},
|
|
82
83
|
e == null ? void 0 : e.id
|
|
83
84
|
)
|
|
84
85
|
) }),
|
|
85
|
-
/* @__PURE__ */
|
|
86
|
-
|
|
86
|
+
/* @__PURE__ */ a(
|
|
87
|
+
K,
|
|
88
|
+
{
|
|
89
|
+
onChangeLanguage: (k = u == null ? void 0 : u.locale) == null ? void 0 : k.changeLanguage
|
|
90
|
+
}
|
|
91
|
+
),
|
|
92
|
+
/* @__PURE__ */ a(
|
|
87
93
|
"button",
|
|
88
94
|
{
|
|
89
|
-
onClick:
|
|
95
|
+
onClick: N,
|
|
90
96
|
className: "flex items-center justify-center w-9 h-9 p-1.5 rounded-full bg-gray-200",
|
|
91
|
-
children: /* @__PURE__ */
|
|
92
|
-
|
|
97
|
+
children: /* @__PURE__ */ a(
|
|
98
|
+
T,
|
|
93
99
|
{
|
|
94
|
-
src:
|
|
100
|
+
src: P,
|
|
95
101
|
alt: "search icon",
|
|
96
102
|
width: 18,
|
|
97
103
|
height: 18
|
|
@@ -99,46 +105,46 @@ const F = "category", H = "link", se = ({ sections: r, darkTheme: p }) => {
|
|
|
99
105
|
)
|
|
100
106
|
}
|
|
101
107
|
),
|
|
102
|
-
/* @__PURE__ */
|
|
108
|
+
/* @__PURE__ */ a(
|
|
103
109
|
"button",
|
|
104
110
|
{
|
|
105
111
|
"aria-label": "Открыть режим для слабовидящих",
|
|
106
112
|
className: "flex items-center justify-center w-9 h-9 p-1.5 rounded-full bg-gray-200",
|
|
107
|
-
children: /* @__PURE__ */
|
|
113
|
+
children: /* @__PURE__ */ a(O, { size: 16 })
|
|
108
114
|
}
|
|
109
115
|
)
|
|
110
116
|
] })
|
|
111
117
|
] })
|
|
112
118
|
] }),
|
|
113
|
-
d && /* @__PURE__ */
|
|
114
|
-
|
|
119
|
+
d && /* @__PURE__ */ a(
|
|
120
|
+
J,
|
|
115
121
|
{
|
|
116
|
-
closeSearch:
|
|
117
|
-
onClick: () =>
|
|
122
|
+
closeSearch: N,
|
|
123
|
+
onClick: () => x(!1)
|
|
118
124
|
}
|
|
119
125
|
),
|
|
120
|
-
/* @__PURE__ */
|
|
126
|
+
/* @__PURE__ */ s(
|
|
121
127
|
"div",
|
|
122
128
|
{
|
|
123
|
-
className:
|
|
129
|
+
className: L(
|
|
124
130
|
"flex bg-white rounded-2xl backdrop-blur-md w-full shadow-lg absolute top-[59px] left-0 z-50 transition-all duration-300 ease-out",
|
|
125
|
-
|
|
131
|
+
m ? "opacity-100 translate-y-0 pointer-events-auto visible" : "opacity-0 -translate-y-5 pointer-events-none invisible"
|
|
126
132
|
),
|
|
127
133
|
ref: M,
|
|
128
134
|
children: [
|
|
129
|
-
/* @__PURE__ */
|
|
130
|
-
|
|
135
|
+
/* @__PURE__ */ a(
|
|
136
|
+
B,
|
|
131
137
|
{
|
|
132
|
-
categories:
|
|
133
|
-
activeSubcategory:
|
|
134
|
-
openResult:
|
|
138
|
+
categories: o,
|
|
139
|
+
activeSubcategory: h,
|
|
140
|
+
openResult: t
|
|
135
141
|
}
|
|
136
142
|
),
|
|
137
|
-
|
|
138
|
-
|
|
143
|
+
A || o[c] ? /* @__PURE__ */ a(
|
|
144
|
+
F,
|
|
139
145
|
{
|
|
140
|
-
data:
|
|
141
|
-
onClick:
|
|
146
|
+
data: A || o[c],
|
|
147
|
+
onClick: R
|
|
142
148
|
}
|
|
143
149
|
) : null
|
|
144
150
|
]
|
|
@@ -149,5 +155,5 @@ const F = "category", H = "link", se = ({ sections: r, darkTheme: p }) => {
|
|
|
149
155
|
);
|
|
150
156
|
};
|
|
151
157
|
export {
|
|
152
|
-
|
|
158
|
+
le as default
|
|
153
159
|
};
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { useState as d, useEffect as
|
|
1
|
+
import { jsxs as _, jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import { useState as d, useEffect as E } from "react";
|
|
3
3
|
import { a as r } from "../../../languages-list-87ab3324.js";
|
|
4
|
-
import { u as
|
|
4
|
+
import { u as C } from "../../../useClickOutside-197b0df2.js";
|
|
5
5
|
import { c as l } from "../../../cn-6a4bf187.js";
|
|
6
|
-
const u = "app_language",
|
|
6
|
+
const u = "app_language", m = ({
|
|
7
|
+
rightPosition: g = !1,
|
|
8
|
+
className: i,
|
|
9
|
+
onChangeLanguage: h
|
|
10
|
+
}) => {
|
|
7
11
|
var x;
|
|
8
12
|
const [s, a] = d(!1), [o, f] = d(
|
|
9
13
|
r[0] || { key: "ru", title: "Русский" }
|
|
10
14
|
);
|
|
11
|
-
|
|
15
|
+
E(() => {
|
|
12
16
|
const e = localStorage.getItem(u);
|
|
13
17
|
if (e) {
|
|
14
18
|
const t = r.find((n) => n.key === e);
|
|
@@ -18,24 +22,24 @@ const u = "app_language", N = ({ rightPosition: g = !1, className: i }) => {
|
|
|
18
22
|
const c = (e) => {
|
|
19
23
|
a(!1);
|
|
20
24
|
const t = r.find((n) => n.key === e);
|
|
21
|
-
t && (f(t), localStorage.setItem(u, e), window.dispatchEvent(
|
|
25
|
+
t && (f(t), localStorage.setItem(u, e), h(e), window.dispatchEvent(
|
|
22
26
|
new CustomEvent("languageChange", { detail: e })
|
|
23
27
|
));
|
|
24
|
-
},
|
|
28
|
+
}, b = (e) => {
|
|
25
29
|
(e.key === "Enter" || e.key === " ") && (e.preventDefault(), a((t) => !t));
|
|
26
|
-
},
|
|
30
|
+
}, k = (e, t) => {
|
|
27
31
|
(e.key === "Enter" || e.key === " ") && (e.preventDefault(), c(t));
|
|
28
|
-
},
|
|
32
|
+
}, w = () => {
|
|
29
33
|
a(!s);
|
|
30
|
-
}, { ref:
|
|
31
|
-
return /* @__PURE__ */
|
|
34
|
+
}, { ref: y } = C(s, () => a(!1));
|
|
35
|
+
return /* @__PURE__ */ _(
|
|
32
36
|
"div",
|
|
33
37
|
{
|
|
34
|
-
ref:
|
|
38
|
+
ref: y,
|
|
35
39
|
role: "button",
|
|
36
40
|
tabIndex: 0,
|
|
37
|
-
onClick:
|
|
38
|
-
onKeyDown:
|
|
41
|
+
onClick: w,
|
|
42
|
+
onKeyDown: b,
|
|
39
43
|
className: l(
|
|
40
44
|
"relative flex items-center justify-center rounded-full p-2 bg-[#f4f6f7] w-[36px] h-[36px] cursor-pointer",
|
|
41
45
|
i
|
|
@@ -58,7 +62,7 @@ const u = "app_language", N = ({ rightPosition: g = !1, className: i }) => {
|
|
|
58
62
|
role: "button",
|
|
59
63
|
tabIndex: 0,
|
|
60
64
|
onClick: () => c(e == null ? void 0 : e.key),
|
|
61
|
-
onKeyDown: (
|
|
65
|
+
onKeyDown: (v) => k(v, e == null ? void 0 : e.key),
|
|
62
66
|
className: l(
|
|
63
67
|
"text-[#0b0f19] px-2 py-[10px] text-[16px] leading-[24px] min-w-[164px] cursor-pointer relative rounded-[8px]",
|
|
64
68
|
n && 'bg-[#f4f5f6] after:absolute after:top-[9px] after:right-[10px] after:w-[24px] after:h-[24px] after:bg-[url("/checked.svg")] after:bg-center after:bg-no-repeat'
|
|
@@ -75,5 +79,5 @@ const u = "app_language", N = ({ rightPosition: g = !1, className: i }) => {
|
|
|
75
79
|
);
|
|
76
80
|
};
|
|
77
81
|
export {
|
|
78
|
-
|
|
82
|
+
m as default
|
|
79
83
|
};
|
|
@@ -1,31 +1,52 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as p, jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import { FieldTypes as r } from "../../../Types/FiledTypes.js";
|
|
3
|
-
import { B as
|
|
4
|
-
import { B as
|
|
5
|
-
import { I as
|
|
6
|
-
const
|
|
3
|
+
import { B as c } from "../../../index-875e92ce.js";
|
|
4
|
+
import { B as d } from "../../../const-53dff524.js";
|
|
5
|
+
import { I as x } from "../../../index-9384c6d6.js";
|
|
6
|
+
const m = [
|
|
7
|
+
"title",
|
|
8
|
+
"subtitle",
|
|
9
|
+
"image",
|
|
10
|
+
"button",
|
|
11
|
+
"id",
|
|
12
|
+
"background_color"
|
|
13
|
+
], w = {
|
|
7
14
|
title: r.TITLE,
|
|
8
15
|
subtitle: r.DESCRIPTION,
|
|
9
16
|
image: r.FILE,
|
|
10
|
-
button:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
button: d,
|
|
18
|
+
background_color: r.COLOR
|
|
19
|
+
}, t = ({
|
|
20
|
+
title: l,
|
|
21
|
+
subtitle: o,
|
|
22
|
+
image: s,
|
|
23
|
+
button: e,
|
|
24
|
+
background_color: i
|
|
25
|
+
}) => /* @__PURE__ */ p("div", { className: "w-full flex flex-col rounded-[20px] overflow-hidden", children: [
|
|
26
|
+
/* @__PURE__ */ a(
|
|
27
|
+
"div",
|
|
14
28
|
{
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
29
|
+
style: { background: i },
|
|
30
|
+
className: "relative w-full h-[256px] max-tablet:h-[224px]",
|
|
31
|
+
children: /* @__PURE__ */ a(
|
|
32
|
+
x,
|
|
33
|
+
{
|
|
34
|
+
src: s,
|
|
35
|
+
alt: l,
|
|
36
|
+
className: "w-full h-full",
|
|
37
|
+
imageStyles: "object-contain"
|
|
38
|
+
}
|
|
39
|
+
)
|
|
19
40
|
}
|
|
20
|
-
)
|
|
21
|
-
/* @__PURE__ */
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ p("div", { className: "bg-white p-[32px] max-tablet:px-[24px] max-tablet:py-[32px] flex flex-col gap-[8px] h-full", children: [
|
|
22
43
|
(l == null ? void 0 : l.length) && /* @__PURE__ */ a("p", { className: "text-[24px] leading-[32px] font-bold", children: l }),
|
|
23
|
-
|
|
24
|
-
((e == null ? void 0 : e.title) || (e == null ? void 0 : e.children)) && /* @__PURE__ */ a(
|
|
44
|
+
o && /* @__PURE__ */ a("p", { className: "text-[14px] leading-[20px] text-graySoft", children: o }),
|
|
45
|
+
((e == null ? void 0 : e.title) || (e == null ? void 0 : e.children)) && /* @__PURE__ */ a(c, { ...e })
|
|
25
46
|
] })
|
|
26
47
|
] });
|
|
27
|
-
|
|
48
|
+
t.propsToEdit = m;
|
|
28
49
|
export {
|
|
29
|
-
|
|
30
|
-
|
|
50
|
+
t as PreviewCard,
|
|
51
|
+
w as PreviewCardData
|
|
31
52
|
};
|