md-components-mdigial-azamat 0.0.59 → 0.0.60
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/Actions/downloadFile/downloadFile.js +30 -20
- package/dist/DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js +22 -20
- package/dist/DownloadFile/components/DownloadFileBright/index.js +46 -39
- package/dist/DownloadFile/components/DownloadFileFull/DownloadFileFull.js +26 -24
- package/dist/DownloadFile/components/DownloadFileMini/DownloadFileMini.js +27 -25
- package/dist/PageViewer/renderComponents.js +1 -1
- package/dist/RenderAllComponents/RenderAllComponents.js +1 -1
- package/dist/{componentsMap-81e7fc2b.js → componentsMap-64827987.js} +19 -74
- package/package.json +1 -1
|
@@ -1,28 +1,38 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a = (o, t) => {
|
|
2
|
+
if (o) {
|
|
3
|
+
const e = o.match(
|
|
4
|
+
/filename\*?=(?:UTF-8'')?["']?([^"';]+)/i
|
|
5
|
+
);
|
|
6
|
+
if (e != null && e[1])
|
|
7
|
+
return decodeURIComponent(e[1]);
|
|
8
|
+
}
|
|
9
|
+
try {
|
|
10
|
+
return new URL(t).pathname.split("/").filter(Boolean).pop() || void 0;
|
|
11
|
+
} catch {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
}, l = (o, t) => {
|
|
15
|
+
const e = document.createElement("a"), r = o instanceof Blob;
|
|
16
|
+
e.href = r ? URL.createObjectURL(o) : o, e.download = t || "download", e.rel = "noopener noreferrer", e.target = "_blank", document.body.appendChild(e), e.click(), e.remove(), r && URL.revokeObjectURL(e.href);
|
|
17
|
+
}, i = async ({ props: o }) => {
|
|
2
18
|
if (!o || typeof o != "object")
|
|
3
19
|
return;
|
|
4
|
-
const { link:
|
|
5
|
-
if (!
|
|
20
|
+
const { link: t, headers: e } = o;
|
|
21
|
+
if (!t)
|
|
6
22
|
return;
|
|
7
|
-
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
if (!t.ok)
|
|
14
|
-
throw new Error(`Failed to download file: ${t.status}`);
|
|
15
|
-
return t.blob();
|
|
16
|
-
}).then((t) => {
|
|
17
|
-
const e = URL.createObjectURL(t);
|
|
18
|
-
c(e), URL.revokeObjectURL(e);
|
|
19
|
-
}).catch((t) => {
|
|
20
|
-
console.error(t);
|
|
21
|
-
});
|
|
23
|
+
try {
|
|
24
|
+
const n = await fetch(t, { headers: e });
|
|
25
|
+
if (!n.ok)
|
|
26
|
+
throw new Error(`Failed to download file: ${n.status}`);
|
|
27
|
+
const c = await n.blob(), d = a(n.headers.get("content-disposition"), t) || "download";
|
|
28
|
+
l(c, d);
|
|
22
29
|
return;
|
|
30
|
+
} catch (n) {
|
|
31
|
+
console.error(n);
|
|
23
32
|
}
|
|
24
|
-
|
|
33
|
+
const r = a(null, t) || "download";
|
|
34
|
+
l(t, r);
|
|
25
35
|
};
|
|
26
36
|
export {
|
|
27
|
-
|
|
37
|
+
i as downloadFile
|
|
28
38
|
};
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
import { jsx as e, jsxs as
|
|
2
|
-
import {
|
|
1
|
+
import { jsx as e, jsxs as o } from "react/jsx-runtime";
|
|
2
|
+
import { downloadFile as n } from "../../../Actions/downloadFile/downloadFile.js";
|
|
3
|
+
import { I as l } from "../../../Icon-70ea6cb8.js";
|
|
3
4
|
import { p as t } from "../../../palette-6c943596.js";
|
|
4
|
-
import { B as
|
|
5
|
-
import { C as
|
|
6
|
-
const
|
|
7
|
-
title:
|
|
8
|
-
text:
|
|
9
|
-
link:
|
|
10
|
-
}) => /* @__PURE__ */ e(
|
|
11
|
-
/* @__PURE__ */ e("div", { className: "flex flex-col ", children: /* @__PURE__ */
|
|
12
|
-
/* @__PURE__ */ e("p", { className: "text-[32px] leading-10 font-bold mb-4", children:
|
|
13
|
-
/* @__PURE__ */ e("p", { className: "text-[16px] leading-6", children:
|
|
14
|
-
/* @__PURE__ */ e(
|
|
15
|
-
|
|
5
|
+
import { B as s } from "../../../index-875e92ce.js";
|
|
6
|
+
import { C as p } from "../../../ComponentContainer-cdb2528c.js";
|
|
7
|
+
const m = ["title", "text", "link"], c = ({
|
|
8
|
+
title: i,
|
|
9
|
+
text: r,
|
|
10
|
+
link: a
|
|
11
|
+
}) => /* @__PURE__ */ e(p, { children: /* @__PURE__ */ o("div", { className: "p-[48px] bg-white rounded-[20px] flex justify-between gap-[64px] max-tablet:flex-col-reverse max-tablet:gap-8", children: [
|
|
12
|
+
/* @__PURE__ */ e("div", { className: "flex flex-col ", children: /* @__PURE__ */ o("div", { children: [
|
|
13
|
+
/* @__PURE__ */ e("p", { className: "text-[32px] leading-10 font-bold mb-4", children: i }),
|
|
14
|
+
/* @__PURE__ */ e("p", { className: "text-[16px] leading-6", children: r }),
|
|
15
|
+
/* @__PURE__ */ e(
|
|
16
|
+
s,
|
|
16
17
|
{
|
|
18
|
+
onClick: () => n({ props: { link: a } }),
|
|
17
19
|
iconRight: /* @__PURE__ */ e(
|
|
18
|
-
|
|
20
|
+
l,
|
|
19
21
|
{
|
|
20
22
|
name: "download",
|
|
21
23
|
size: 20,
|
|
@@ -25,10 +27,10 @@ const c = ["title", "text", "link"], m = ({
|
|
|
25
27
|
className: "mt-8",
|
|
26
28
|
children: "Скачать"
|
|
27
29
|
}
|
|
28
|
-
)
|
|
30
|
+
)
|
|
29
31
|
] }) }),
|
|
30
32
|
/* @__PURE__ */ e(
|
|
31
|
-
|
|
33
|
+
l,
|
|
32
34
|
{
|
|
33
35
|
className: "flex-shrink-0",
|
|
34
36
|
name: "file",
|
|
@@ -37,8 +39,8 @@ const c = ["title", "text", "link"], m = ({
|
|
|
37
39
|
}
|
|
38
40
|
)
|
|
39
41
|
] }) });
|
|
40
|
-
|
|
42
|
+
c.propsToEdit = m;
|
|
41
43
|
export {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
c as DownloadFileBanner,
|
|
45
|
+
m as propsToEdit
|
|
44
46
|
};
|
|
@@ -1,65 +1,72 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { downloadFile as s } from "../../../Actions/downloadFile/downloadFile.js";
|
|
3
|
+
import { c } from "../../../createBoolean-56064b0d.js";
|
|
4
|
+
import { B as n } from "../../../index-875e92ce.js";
|
|
5
|
+
import { B as b } from "../../../const-53dff524.js";
|
|
6
|
+
import { C as f } from "../../../ComponentContainer-cdb2528c.js";
|
|
7
|
+
import { I as g } from "../../../index-2265d593.js";
|
|
8
|
+
import { c as d } from "../../../cn-6a4bf187.js";
|
|
9
|
+
import { u as h } from "../../../useScreenSize-c1b64c02.js";
|
|
10
|
+
const u = c({
|
|
11
|
+
label: "Тема темного цвета",
|
|
12
|
+
type: "isDark"
|
|
13
|
+
}), w = ["title", "description", "icon", u, b], y = ({
|
|
14
|
+
title: m,
|
|
15
|
+
description: p,
|
|
16
|
+
icon: r,
|
|
17
|
+
button: t,
|
|
18
|
+
variant: a = "big",
|
|
19
|
+
isDark: l
|
|
14
20
|
}) => {
|
|
15
|
-
const
|
|
16
|
-
return /* @__PURE__ */
|
|
17
|
-
|
|
21
|
+
const i = h(960), x = a === "big" ? i ? 106 : 343 : i ? 106 : 64;
|
|
22
|
+
return /* @__PURE__ */ o(
|
|
23
|
+
f,
|
|
18
24
|
{
|
|
19
25
|
className: `flex justify-between items-center rounded-[20px]
|
|
20
|
-
${
|
|
21
|
-
${
|
|
26
|
+
${a === "big" ? "p-[48px]" : "p-[32px] gap-[32px]"}
|
|
27
|
+
${l ? "bg-black7" : "bg-white"}
|
|
22
28
|
max-tablet:flex-col max-tablet:items-start max-tablet:justify-start max-tablet:p-[24px] max-tablet:gap-[0] max-tablet:my-[48px] my-[88px]
|
|
23
29
|
max-tablet:relative w-[calc(100%-239px)]
|
|
24
30
|
`,
|
|
25
31
|
children: [
|
|
26
|
-
/* @__PURE__ */
|
|
27
|
-
/* @__PURE__ */
|
|
32
|
+
/* @__PURE__ */ o("div", { className: "flex flex-col h-full w-full", children: [
|
|
33
|
+
/* @__PURE__ */ e(
|
|
28
34
|
"p",
|
|
29
35
|
{
|
|
30
36
|
className: `font-[700]
|
|
31
|
-
${
|
|
32
|
-
${
|
|
37
|
+
${l ? "text-[#f4f6f7]" : "text-[#0e0f11]"}
|
|
38
|
+
${a === "big" ? "text-[32px] leading-[40px]" : "text-[24px] leading-[32px]"}
|
|
33
39
|
max-tablet:text-[24px] max-tablet:leading-[28px]
|
|
34
40
|
mb-[16px] max-tablet:mt-[24px] max-tablet:mb-[12px] max-tablet:text-center`,
|
|
35
|
-
children:
|
|
41
|
+
children: m
|
|
36
42
|
}
|
|
37
43
|
),
|
|
38
|
-
/* @__PURE__ */
|
|
44
|
+
/* @__PURE__ */ e(
|
|
39
45
|
"p",
|
|
40
46
|
{
|
|
41
47
|
className: `font-[400] text-[16px] leading-[24px]
|
|
42
|
-
${
|
|
48
|
+
${l ? "text-[#f4f6f7]" : "text-[#40474f]"}
|
|
43
49
|
mb-[32px] max-tablet:mb-[24px] max-tablet:text-center`,
|
|
44
|
-
children:
|
|
50
|
+
children: p
|
|
45
51
|
}
|
|
46
52
|
),
|
|
47
|
-
/* @__PURE__ */
|
|
48
|
-
|
|
53
|
+
/* @__PURE__ */ e(
|
|
54
|
+
n,
|
|
49
55
|
{
|
|
50
56
|
className: "w-fit max-tablet:w-full flex items-center justify-center",
|
|
51
|
-
...
|
|
57
|
+
...t,
|
|
58
|
+
onClick: () => s({ props: { link: t == null ? void 0 : t.link } })
|
|
52
59
|
}
|
|
53
60
|
)
|
|
54
61
|
] }),
|
|
55
|
-
/* @__PURE__ */
|
|
56
|
-
|
|
62
|
+
/* @__PURE__ */ e(
|
|
63
|
+
g,
|
|
57
64
|
{
|
|
58
|
-
src:
|
|
59
|
-
alt:
|
|
60
|
-
width:
|
|
61
|
-
height:
|
|
62
|
-
className:
|
|
65
|
+
src: r,
|
|
66
|
+
alt: m,
|
|
67
|
+
width: x,
|
|
68
|
+
height: x,
|
|
69
|
+
className: d(
|
|
63
70
|
"absolute top-1/2 right-6 w-[343px] !h-auto -translate-y-1/2 max-tablet:relative max-tablet:!h-[106px]",
|
|
64
71
|
"max-tablet:top-auto max-tablet:right-auto max-tablet:-translate-y-0 max-tablet:order-[-1] max-tablet:mx-auto"
|
|
65
72
|
),
|
|
@@ -70,8 +77,8 @@ const g = ["title", "description", "icon", "isDark"], d = ({
|
|
|
70
77
|
}
|
|
71
78
|
);
|
|
72
79
|
};
|
|
73
|
-
|
|
80
|
+
y.propsToEdit = w;
|
|
74
81
|
export {
|
|
75
|
-
|
|
76
|
-
|
|
82
|
+
y as DownloadFileBright,
|
|
83
|
+
w as propsToEdit
|
|
77
84
|
};
|
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { jsx as l, jsxs as a } from "react/jsx-runtime";
|
|
2
|
+
import { downloadFile as s } from "../../../Actions/downloadFile/downloadFile.js";
|
|
3
|
+
import { DataTypesEnum as p, FieldTypes as r } from "../../../Types/FiledTypes.js";
|
|
4
|
+
import { I as t } from "../../../Icon-70ea6cb8.js";
|
|
4
5
|
import { p as n } from "../../../palette-6c943596.js";
|
|
5
6
|
import { B as i } from "../../../index-875e92ce.js";
|
|
6
|
-
import { b as
|
|
7
|
-
import { C as
|
|
8
|
-
const
|
|
9
|
-
dataType:
|
|
7
|
+
import { b as c } from "../../../const-53dff524.js";
|
|
8
|
+
import { C as d } from "../../../ComponentContainer-cdb2528c.js";
|
|
9
|
+
const x = {
|
|
10
|
+
dataType: p.array,
|
|
10
11
|
type: "data",
|
|
11
12
|
label: "Файлы для скачивания",
|
|
12
13
|
data: {
|
|
13
|
-
title:
|
|
14
|
-
text:
|
|
15
|
-
file:
|
|
14
|
+
title: r.STRING,
|
|
15
|
+
text: r.STRING,
|
|
16
|
+
file: r.FILE
|
|
16
17
|
}
|
|
17
|
-
},
|
|
18
|
-
/* @__PURE__ */
|
|
19
|
-
/* @__PURE__ */
|
|
20
|
-
|
|
18
|
+
}, f = [x], m = ({ data: o }) => /* @__PURE__ */ l(d, { children: /* @__PURE__ */ l("div", { className: "flex flex-col gap-2", children: o == null ? void 0 : o.map((e) => /* @__PURE__ */ a("div", { className: "px-[48px] py-8 bg-white rounded-[20px] flex justify-between items-center gap-[64px]", children: [
|
|
19
|
+
/* @__PURE__ */ a("div", { className: "flex items-center gap-4 max-tablet:flex-col max-tablet:items-start", children: [
|
|
20
|
+
/* @__PURE__ */ l(
|
|
21
|
+
t,
|
|
21
22
|
{
|
|
22
23
|
className: "flex-shrink-0",
|
|
23
24
|
name: "file",
|
|
@@ -25,17 +26,18 @@ const d = {
|
|
|
25
26
|
size: 44
|
|
26
27
|
}
|
|
27
28
|
),
|
|
28
|
-
/* @__PURE__ */
|
|
29
|
-
/* @__PURE__ */
|
|
30
|
-
/* @__PURE__ */
|
|
29
|
+
/* @__PURE__ */ a("div", { className: "flex flex-col max-tablet:gap-2 ", children: [
|
|
30
|
+
/* @__PURE__ */ l("p", { className: "text-[20px] leading-7 font-bold", children: e == null ? void 0 : e.title }),
|
|
31
|
+
/* @__PURE__ */ l("p", { className: "text-[16px] leading-6", children: e == null ? void 0 : e.text })
|
|
31
32
|
] })
|
|
32
33
|
] }),
|
|
33
|
-
/* @__PURE__ */
|
|
34
|
+
/* @__PURE__ */ l(
|
|
34
35
|
i,
|
|
35
36
|
{
|
|
36
|
-
variant:
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
variant: c.Secondary,
|
|
38
|
+
onClick: () => s({ props: { link: e == null ? void 0 : e.file } }),
|
|
39
|
+
iconRight: /* @__PURE__ */ l(
|
|
40
|
+
t,
|
|
39
41
|
{
|
|
40
42
|
name: "download",
|
|
41
43
|
size: 20,
|
|
@@ -45,9 +47,9 @@ const d = {
|
|
|
45
47
|
}
|
|
46
48
|
)
|
|
47
49
|
] })) }) });
|
|
48
|
-
m.propsToEdit =
|
|
50
|
+
m.propsToEdit = f;
|
|
49
51
|
export {
|
|
50
52
|
m as DownloadFileFull,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
x as downloadFileFullProps,
|
|
54
|
+
f as propsToEdit
|
|
53
55
|
};
|
|
@@ -1,41 +1,43 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { jsx as l, jsxs as n } from "react/jsx-runtime";
|
|
2
|
+
import { downloadFile as s } from "../../../Actions/downloadFile/downloadFile.js";
|
|
3
|
+
import { DataTypesEnum as i, FieldTypes as a } from "../../../Types/FiledTypes.js";
|
|
4
|
+
import { I as e } from "../../../Icon-70ea6cb8.js";
|
|
4
5
|
import { p } from "../../../palette-6c943596.js";
|
|
5
|
-
import { B as
|
|
6
|
-
import { b as
|
|
7
|
-
import { C as
|
|
8
|
-
const
|
|
9
|
-
dataType:
|
|
6
|
+
import { B as d } from "../../../index-875e92ce.js";
|
|
7
|
+
import { b as c } from "../../../const-53dff524.js";
|
|
8
|
+
import { C as t } from "../../../ComponentContainer-cdb2528c.js";
|
|
9
|
+
const y = {
|
|
10
|
+
dataType: i.array,
|
|
10
11
|
type: "data",
|
|
11
12
|
label: "Файлы для скачивания",
|
|
12
13
|
data: {
|
|
13
|
-
title:
|
|
14
|
-
text:
|
|
15
|
-
file:
|
|
14
|
+
title: a.STRING,
|
|
15
|
+
text: a.STRING,
|
|
16
|
+
file: a.FILE
|
|
16
17
|
}
|
|
17
|
-
},
|
|
18
|
+
}, f = ["data"], x = ({ data: r }) => /* @__PURE__ */ l(t, { children: /* @__PURE__ */ l("div", { className: "grid grid-cols-4 gap-6 max-tablet:grid-cols-1", children: r == null ? void 0 : r.map((o) => /* @__PURE__ */ n(
|
|
18
19
|
"div",
|
|
19
20
|
{
|
|
20
21
|
className: "p-[24px] bg-white rounded-[20px] flex flex-col gap-8",
|
|
21
22
|
children: [
|
|
22
|
-
/* @__PURE__ */
|
|
23
|
-
|
|
23
|
+
/* @__PURE__ */ l(
|
|
24
|
+
e,
|
|
24
25
|
{
|
|
25
26
|
name: "file",
|
|
26
27
|
color: p.greenLight,
|
|
27
28
|
size: 44
|
|
28
29
|
}
|
|
29
30
|
),
|
|
30
|
-
/* @__PURE__ */
|
|
31
|
-
/* @__PURE__ */
|
|
32
|
-
/* @__PURE__ */
|
|
31
|
+
/* @__PURE__ */ n("div", { className: "flex flex-col gap-4", children: [
|
|
32
|
+
/* @__PURE__ */ l("p", { className: "text-[20px] leading-[28px] font-bold", children: o == null ? void 0 : o.title }),
|
|
33
|
+
/* @__PURE__ */ l("p", { className: "text-[16px] leading-6", children: o == null ? void 0 : o.text })
|
|
33
34
|
] }),
|
|
34
|
-
/* @__PURE__ */
|
|
35
|
-
|
|
35
|
+
/* @__PURE__ */ l(
|
|
36
|
+
d,
|
|
36
37
|
{
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
onClick: () => s({ props: { link: o == null ? void 0 : o.file } }),
|
|
39
|
+
iconRight: /* @__PURE__ */ l(
|
|
40
|
+
e,
|
|
39
41
|
{
|
|
40
42
|
name: "download",
|
|
41
43
|
size: 20,
|
|
@@ -43,7 +45,7 @@ const b = {
|
|
|
43
45
|
}
|
|
44
46
|
),
|
|
45
47
|
className: "w-full",
|
|
46
|
-
variant:
|
|
48
|
+
variant: c.Secondary,
|
|
47
49
|
children: "Скачать"
|
|
48
50
|
}
|
|
49
51
|
)
|
|
@@ -51,9 +53,9 @@ const b = {
|
|
|
51
53
|
},
|
|
52
54
|
o == null ? void 0 : o.id
|
|
53
55
|
)) }) });
|
|
54
|
-
x.propsToEdit =
|
|
56
|
+
x.propsToEdit = f;
|
|
55
57
|
export {
|
|
56
58
|
x as DownloadFileMini,
|
|
57
|
-
|
|
58
|
-
|
|
59
|
+
y as downloadFileMiniProps,
|
|
60
|
+
f as propsToEdit
|
|
59
61
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as n, Fragment as t } from "react/jsx-runtime";
|
|
2
|
-
import { c as i } from "../componentsMap-
|
|
2
|
+
import { c as i } from "../componentsMap-64827987.js";
|
|
3
3
|
const d = ({ components: o, device: p }) => /* @__PURE__ */ n(t, { children: o.map((r) => {
|
|
4
4
|
const e = i[r.key];
|
|
5
5
|
return e ? /* @__PURE__ */ n(
|
|
@@ -3,10 +3,10 @@ import { Banner as o } from "./Banner/Banner.js";
|
|
|
3
3
|
import { BannerAndText as m } from "./BannerAndText/index.js";
|
|
4
4
|
import { CardIconList as t } from "./CardIconList/CardIconList.js";
|
|
5
5
|
import { CardImageList as i } from "./CardImageList/CardImageList.js";
|
|
6
|
-
import { CardImageSecondary as
|
|
7
|
-
import { CardImageSecondaryList as
|
|
8
|
-
import { CardInfoTable as
|
|
9
|
-
import { CardImage as
|
|
6
|
+
import { CardImageSecondary as n } from "./CardImageSecondary/CardImageSecondary.js";
|
|
7
|
+
import { CardImageSecondaryList as a } from "./CardImageSecondaryList/CardImageSecondaryList.js";
|
|
8
|
+
import { CardInfoTable as e } from "./CardInfoTable/index.js";
|
|
9
|
+
import { CardImage as p } from "./Cards/CardImage/CardImage.js";
|
|
10
10
|
import { ColoredCard as f } from "./Cards/ColoredCard/index.js";
|
|
11
11
|
import { ContentCard as s } from "./Cards/ContentCard/ContentCard.js";
|
|
12
12
|
import { F as d } from "./index-b4c61de3.js";
|
|
@@ -20,10 +20,10 @@ import { DownloadFileMini as c } from "./DownloadFile/components/DownloadFileMin
|
|
|
20
20
|
import { Faq as w } from "./Faq/Faq.js";
|
|
21
21
|
import { Footer as S } from "./Footer/Footer.js";
|
|
22
22
|
import { Header as g } from "./Header/Header.js";
|
|
23
|
-
import { HeroPossibilityBanner as
|
|
24
|
-
import { HtmlContent as
|
|
25
|
-
import { InfoBanner as
|
|
26
|
-
import { InfoBannerList as
|
|
23
|
+
import { HeroPossibilityBanner as M } from "./HeroPossibilityBanner/index.js";
|
|
24
|
+
import { HtmlContent as P } from "./HtmlContent/HtmlContent.js";
|
|
25
|
+
import { InfoBanner as u } from "./InfoBanner/index.js";
|
|
26
|
+
import { InfoBannerList as D } from "./InfoBannerList/InfoBannerList.js";
|
|
27
27
|
import { InstructionList as T } from "./InstructionList/InstructionList.js";
|
|
28
28
|
import { IntroBanner as H } from "./IntroBanner/IntroBanner.js";
|
|
29
29
|
import { MainBanner as V } from "./MainBanner/MainBanner.js";
|
|
@@ -43,62 +43,7 @@ import { VideoFull as G } from "./Video/VideoFull/VideoFull.js";
|
|
|
43
43
|
import { VideoList as J } from "./Video/VideoList/VideoList.js";
|
|
44
44
|
import { VideoListMini as K } from "./Video/VideoListMini/VideoListMini.js";
|
|
45
45
|
import { VideoMainBanner as N } from "./VideoMainBanner/VideoMainBanner.js";
|
|
46
|
-
|
|
47
|
-
import "./Faq/components/Collapse/Collapse.js";
|
|
48
|
-
import "react/jsx-runtime";
|
|
49
|
-
import "react";
|
|
50
|
-
import "./index-875e92ce.js";
|
|
51
|
-
import "./const-53dff524.js";
|
|
52
|
-
import "./InstructionList/components/InstructionCard/InstructionCard.js";
|
|
53
|
-
import "./PreviewList/components/PreviewCard/PreviewCard.js";
|
|
54
|
-
import { FormDefault as O } from "./Forms/FormDefault/index.js";
|
|
55
|
-
import "./AllComponents.js";
|
|
56
|
-
import "./AnimatedSwiper/info.js";
|
|
57
|
-
import "./Banner/info.js";
|
|
58
|
-
import "./BannerAndText/info.js";
|
|
59
|
-
import "./CardIconList/info.js";
|
|
60
|
-
import "./CardImageList/info.js";
|
|
61
|
-
import "./CardImageSecondary/info.js";
|
|
62
|
-
import "./CardImageSecondaryList/info.js";
|
|
63
|
-
import "./CardInfoTable/info.js";
|
|
64
|
-
import "./Cards/CardImage/info.js";
|
|
65
|
-
import "./Cards/ColoredCard/info.js";
|
|
66
|
-
import "./Cards/ContentCard/info.js";
|
|
67
|
-
import "./Cards/FeaturesCard/info.js";
|
|
68
|
-
import "./Cards/WarningCard/info.js";
|
|
69
|
-
import "./ContentCardList/info.js";
|
|
70
|
-
import "./DownloadFile/components/DownloadFileBanner/info.js";
|
|
71
|
-
import "./DownloadFile/components/DownloadFileBright/info.js";
|
|
72
|
-
import "./DownloadFile/components/DownloadFileFull/info.js";
|
|
73
|
-
import "./DownloadFile/components/DownloadFileHalf/info.js";
|
|
74
|
-
import "./DownloadFile/components/DownloadFileMini/info.js";
|
|
75
|
-
import "./Faq/info.js";
|
|
76
|
-
import "./Footer/info.js";
|
|
77
|
-
import "./Forms/FormDefault/info.js";
|
|
78
|
-
import "./Header/info.js";
|
|
79
|
-
import "./HeroPossibilityBanner/info.js";
|
|
80
|
-
import "./InfoBanner/info.js";
|
|
81
|
-
import "./InfoBannerList/info.js";
|
|
82
|
-
import "./InstructionList/info.js";
|
|
83
|
-
import "./IntroBanner/info.js";
|
|
84
|
-
import "./MainBanner/info.js";
|
|
85
|
-
import "./MultiCards/info.js";
|
|
86
|
-
import "./Partners/info.js";
|
|
87
|
-
import "./PartnersColors/info.js";
|
|
88
|
-
import "./PreviewList/info.js";
|
|
89
|
-
import "./PromoPoster/info.js";
|
|
90
|
-
import "./Segments/info.js";
|
|
91
|
-
import "./Space/info.js";
|
|
92
|
-
import "./StandartTable/info.js";
|
|
93
|
-
import "./Stepper/info.js";
|
|
94
|
-
import "./SwiperList/info.js";
|
|
95
|
-
import "./TasksBanner/info.js";
|
|
96
|
-
import "./TasksBannerList/info.js";
|
|
97
|
-
import "./Video/VideoFull/info.js";
|
|
98
|
-
import "./Video/VideoList/info.js";
|
|
99
|
-
import "./Video/VideoListMini/info.js";
|
|
100
|
-
import "./VideoMainBanner/info.js";
|
|
101
|
-
const zo = {
|
|
46
|
+
const vr = {
|
|
102
47
|
Banner: o,
|
|
103
48
|
BannerAndText: m,
|
|
104
49
|
CardImageList: i,
|
|
@@ -123,29 +68,29 @@ const zo = {
|
|
|
123
68
|
PreviewList: x,
|
|
124
69
|
SwiperList: j,
|
|
125
70
|
AnimatedSwiper: r,
|
|
126
|
-
InfoBannerList:
|
|
71
|
+
InfoBannerList: D,
|
|
127
72
|
TasksBannerList: E,
|
|
128
73
|
VideoMainBanner: N,
|
|
129
74
|
Space: q,
|
|
130
75
|
PromoPoster: A,
|
|
131
|
-
CardImageSecondaryList:
|
|
132
|
-
CardInfoTable:
|
|
76
|
+
CardImageSecondaryList: a,
|
|
77
|
+
CardInfoTable: e,
|
|
133
78
|
StandartTable: v,
|
|
134
79
|
IntroBanner: H,
|
|
135
80
|
DownloadFileBright: F,
|
|
136
|
-
FormDefault
|
|
81
|
+
// FormDefault,
|
|
137
82
|
Header: g,
|
|
138
83
|
Footer: S,
|
|
139
|
-
HtmlContent:
|
|
140
|
-
HeroPossibilityBanner:
|
|
141
|
-
CardImage:
|
|
84
|
+
HtmlContent: P,
|
|
85
|
+
HeroPossibilityBanner: M,
|
|
86
|
+
CardImage: p,
|
|
142
87
|
ContentCard: s,
|
|
143
88
|
ColoredCard: f,
|
|
144
89
|
FeaturesCard: d,
|
|
145
|
-
InfoBanner:
|
|
90
|
+
InfoBanner: u,
|
|
146
91
|
TasksBanner: z,
|
|
147
|
-
CardImageSecondary:
|
|
92
|
+
CardImageSecondary: n
|
|
148
93
|
};
|
|
149
94
|
export {
|
|
150
|
-
|
|
95
|
+
vr as c
|
|
151
96
|
};
|