md-components-mdigial-azamat 0.0.58 → 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.
@@ -1,28 +1,38 @@
1
- const l = ({ props: o }) => {
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: r, headers: n } = o;
5
- if (!r)
20
+ const { link: t, headers: e } = o;
21
+ if (!t)
6
22
  return;
7
- const c = (t) => {
8
- const e = document.createElement("a");
9
- e.href = t, e.download = "", e.rel = "noopener noreferrer", e.target = "_blank", document.body.appendChild(e), e.click(), e.remove();
10
- };
11
- if (n && Object.keys(n).length > 0) {
12
- fetch(r, { headers: n }).then((t) => {
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
- c(r);
33
+ const r = a(null, t) || "download";
34
+ l(t, r);
25
35
  };
26
36
  export {
27
- l as downloadFile
37
+ i as downloadFile
28
38
  };
@@ -50,7 +50,10 @@ import "./index-875e92ce.js";
50
50
  import "./const-53dff524.js";
51
51
  import "./InstructionList/components/InstructionCard/InstructionCard.js";
52
52
  import "./PreviewList/components/PreviewCard/PreviewCard.js";
53
+ import "./CardImageSecondary/CardImageSecondary.js";
54
+ import "./InfoBanner/index.js";
53
55
  import { Space as Co } from "./Space/Space.js";
56
+ import "./TasksBanner/TasksBanner.js";
54
57
  import "./AnimatedSwiper/info.js";
55
58
  import "./Banner/info.js";
56
59
  import "./BannerAndText/info.js";
@@ -95,7 +98,7 @@ import "./Video/VideoFull/info.js";
95
98
  import "./Video/VideoList/info.js";
96
99
  import "./Video/VideoListMini/info.js";
97
100
  import "./VideoMainBanner/info.js";
98
- const pn = {
101
+ const ln = {
99
102
  MainBanner: { key: "MainBanner", component: O },
100
103
  Banner: { key: "Banner", component: h },
101
104
  CardImageList: { key: "CardImageList", component: W },
@@ -144,7 +147,7 @@ const pn = {
144
147
  },
145
148
  Header: { key: "Header", component: io },
146
149
  Footer: { key: "Footer", component: po }
147
- }, mn = {
150
+ }, dn = {
148
151
  MainBanner: o.component_props,
149
152
  Banner: t.component_props,
150
153
  CardImageList: n.component_props,
@@ -181,6 +184,6 @@ const pn = {
181
184
  FormDefault: J
182
185
  };
183
186
  export {
184
- pn as AllComponents,
185
- mn as AllComponentsData
187
+ ln as AllComponents,
188
+ dn as AllComponentsData
186
189
  };
@@ -1,21 +1,23 @@
1
- import { jsx as e, jsxs as l } from "react/jsx-runtime";
2
- import { I as o } from "../../../Icon-70ea6cb8.js";
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 n } from "../../../index-875e92ce.js";
5
- import { C as s } from "../../../ComponentContainer-cdb2528c.js";
6
- const c = ["title", "text", "link"], m = ({
7
- title: a,
8
- text: i,
9
- link: r
10
- }) => /* @__PURE__ */ e(s, { children: /* @__PURE__ */ l("div", { className: "p-[48px] bg-white rounded-[20px] flex justify-between gap-[64px] max-tablet:flex-col-reverse max-tablet:gap-8", children: [
11
- /* @__PURE__ */ e("div", { className: "flex flex-col ", children: /* @__PURE__ */ l("div", { children: [
12
- /* @__PURE__ */ e("p", { className: "text-[32px] leading-10 font-bold mb-4", children: a }),
13
- /* @__PURE__ */ e("p", { className: "text-[16px] leading-6", children: i }),
14
- /* @__PURE__ */ e("a", { href: r, children: /* @__PURE__ */ e(
15
- n,
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
- o,
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
- o,
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
- m.propsToEdit = c;
42
+ c.propsToEdit = m;
41
43
  export {
42
- m as DownloadFileBanner,
43
- c as propsToEdit
44
+ c as DownloadFileBanner,
45
+ m as propsToEdit
44
46
  };
@@ -1,65 +1,72 @@
1
- import { jsxs as i, jsx as t } from "react/jsx-runtime";
2
- import { B as b } from "../../../index-875e92ce.js";
3
- import { C as r } from "../../../ComponentContainer-cdb2528c.js";
4
- import { I as n } from "../../../index-2265d593.js";
5
- import { c } from "../../../cn-6a4bf187.js";
6
- import { u as f } from "../../../useScreenSize-c1b64c02.js";
7
- const g = ["title", "description", "icon", "isDark"], d = ({
8
- title: x,
9
- description: o,
10
- icon: p,
11
- button: s,
12
- variant: e = "big",
13
- isDark: a
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 l = f(960), m = e === "big" ? l ? 106 : 343 : l ? 106 : 64;
16
- return /* @__PURE__ */ i(
17
- r,
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
- ${e === "big" ? "p-[48px]" : "p-[32px] gap-[32px]"}
21
- ${a ? "bg-black7" : "bg-white"}
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__ */ i("div", { className: "flex flex-col h-full w-full", children: [
27
- /* @__PURE__ */ t(
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
- ${a ? "text-[#f4f6f7]" : "text-[#0e0f11]"}
32
- ${e === "big" ? "text-[32px] leading-[40px]" : "text-[24px] leading-[32px]"}
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: x
41
+ children: m
36
42
  }
37
43
  ),
38
- /* @__PURE__ */ t(
44
+ /* @__PURE__ */ e(
39
45
  "p",
40
46
  {
41
47
  className: `font-[400] text-[16px] leading-[24px]
42
- ${a ? "text-[#f4f6f7]" : "text-[#40474f]"}
48
+ ${l ? "text-[#f4f6f7]" : "text-[#40474f]"}
43
49
  mb-[32px] max-tablet:mb-[24px] max-tablet:text-center`,
44
- children: o
50
+ children: p
45
51
  }
46
52
  ),
47
- /* @__PURE__ */ t(
48
- b,
53
+ /* @__PURE__ */ e(
54
+ n,
49
55
  {
50
56
  className: "w-fit max-tablet:w-full flex items-center justify-center",
51
- ...s
57
+ ...t,
58
+ onClick: () => s({ props: { link: t == null ? void 0 : t.link } })
52
59
  }
53
60
  )
54
61
  ] }),
55
- /* @__PURE__ */ t(
56
- n,
62
+ /* @__PURE__ */ e(
63
+ g,
57
64
  {
58
- src: p,
59
- alt: x,
60
- width: m,
61
- height: m,
62
- className: c(
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
- d.propsToEdit = g;
80
+ y.propsToEdit = w;
74
81
  export {
75
- d as DownloadFileBright,
76
- g as propsToEdit
82
+ y as DownloadFileBright,
83
+ w as propsToEdit
77
84
  };
@@ -1,23 +1,24 @@
1
- import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
- import { DataTypesEnum as s, FieldTypes as o } from "../../../Types/FiledTypes.js";
3
- import { I as r } from "../../../Icon-70ea6cb8.js";
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 p } from "../../../const-53dff524.js";
7
- import { C as c } from "../../../ComponentContainer-cdb2528c.js";
8
- const d = {
9
- dataType: s.array,
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: o.STRING,
14
- text: o.STRING,
15
- file: o.FILE
14
+ title: r.STRING,
15
+ text: r.STRING,
16
+ file: r.FILE
16
17
  }
17
- }, x = [d], m = ({ data: a }) => /* @__PURE__ */ e(c, { children: /* @__PURE__ */ e("div", { className: "flex flex-col gap-2", children: a == null ? void 0 : a.map((l) => /* @__PURE__ */ t("div", { className: "px-[48px] py-8 bg-white rounded-[20px] flex justify-between items-center gap-[64px]", children: [
18
- /* @__PURE__ */ t("div", { className: "flex items-center gap-4 max-tablet:flex-col max-tablet:items-start", children: [
19
- /* @__PURE__ */ e(
20
- r,
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__ */ t("div", { className: "flex flex-col max-tablet:gap-2 ", children: [
29
- /* @__PURE__ */ e("p", { className: "text-[20px] leading-7 font-bold", children: l == null ? void 0 : l.title }),
30
- /* @__PURE__ */ e("p", { className: "text-[16px] leading-6", children: l == null ? void 0 : l.text })
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__ */ e(
34
+ /* @__PURE__ */ l(
34
35
  i,
35
36
  {
36
- variant: p.Secondary,
37
- iconRight: /* @__PURE__ */ e(
38
- r,
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 = x;
50
+ m.propsToEdit = f;
49
51
  export {
50
52
  m as DownloadFileFull,
51
- d as downloadFileFullProps,
52
- x as propsToEdit
53
+ x as downloadFileFullProps,
54
+ f as propsToEdit
53
55
  };
@@ -1,41 +1,43 @@
1
- import { jsx as a, jsxs as e } from "react/jsx-runtime";
2
- import { DataTypesEnum as s, FieldTypes as r } from "../../../Types/FiledTypes.js";
3
- import { I as n } from "../../../Icon-70ea6cb8.js";
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 i } from "../../../index-875e92ce.js";
6
- import { b as t } from "../../../const-53dff524.js";
7
- import { C as d } from "../../../ComponentContainer-cdb2528c.js";
8
- const b = {
9
- dataType: s.array,
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: r.STRING,
14
- text: r.STRING,
15
- file: r.FILE
14
+ title: a.STRING,
15
+ text: a.STRING,
16
+ file: a.FILE
16
17
  }
17
- }, c = ["data"], x = ({ data: l }) => /* @__PURE__ */ a(d, { children: /* @__PURE__ */ a("div", { className: "grid grid-cols-4 gap-6 max-tablet:grid-cols-1", children: l == null ? void 0 : l.map((o) => /* @__PURE__ */ e(
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__ */ a(
23
- n,
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__ */ e("div", { className: "flex flex-col gap-4", children: [
31
- /* @__PURE__ */ a("p", { className: "text-[20px] leading-[28px] font-bold", children: o == null ? void 0 : o.title }),
32
- /* @__PURE__ */ a("p", { className: "text-[16px] leading-6", children: o == null ? void 0 : o.text })
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__ */ a(
35
- i,
35
+ /* @__PURE__ */ l(
36
+ d,
36
37
  {
37
- iconRight: /* @__PURE__ */ a(
38
- n,
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: t.Secondary,
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 = c;
56
+ x.propsToEdit = f;
55
57
  export {
56
58
  x as DownloadFileMini,
57
- b as downloadFileMiniProps,
58
- c as propsToEdit
59
+ y as downloadFileMiniProps,
60
+ f as propsToEdit
59
61
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as i } from "react/jsx-runtime";
2
- import { c as f } from "../componentsMap-b3ef1658.js";
2
+ import { c as f } from "../componentsMap-64827987.js";
3
3
  const a = (p) => p.map((r) => {
4
4
  const s = f[r.key];
5
5
  if (!s)
@@ -1,5 +1,5 @@
1
1
  import { jsx as n, Fragment as t } from "react/jsx-runtime";
2
- import { c as i } from "../componentsMap-b3ef1658.js";
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(
@@ -0,0 +1,96 @@
1
+ import r from "./AnimatedSwiper/index.js";
2
+ import { Banner as o } from "./Banner/Banner.js";
3
+ import { BannerAndText as m } from "./BannerAndText/index.js";
4
+ import { CardIconList as t } from "./CardIconList/CardIconList.js";
5
+ import { CardImageList as i } from "./CardImageList/CardImageList.js";
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
+ import { ColoredCard as f } from "./Cards/ColoredCard/index.js";
11
+ import { ContentCard as s } from "./Cards/ContentCard/ContentCard.js";
12
+ import { F as d } from "./index-b4c61de3.js";
13
+ import { WarningCard as l } from "./Cards/WarningCard/WarningCard.js";
14
+ import { ContentCardList as C } from "./ContentCardList/ContentCardList.js";
15
+ import { DownloadFileBanner as B } from "./DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js";
16
+ import { DownloadFileBright as F } from "./DownloadFile/components/DownloadFileBright/index.js";
17
+ import { DownloadFileFull as L } from "./DownloadFile/components/DownloadFileFull/DownloadFileFull.js";
18
+ import { DownloadFileHalf as I } from "./DownloadFile/components/DownloadFileHalf/DownloadFileHalf.js";
19
+ import { DownloadFileMini as c } from "./DownloadFile/components/DownloadFileMini/DownloadFileMini.js";
20
+ import { Faq as w } from "./Faq/Faq.js";
21
+ import { Footer as S } from "./Footer/Footer.js";
22
+ import { Header as g } from "./Header/Header.js";
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
+ import { InstructionList as T } from "./InstructionList/InstructionList.js";
28
+ import { IntroBanner as H } from "./IntroBanner/IntroBanner.js";
29
+ import { MainBanner as V } from "./MainBanner/MainBanner.js";
30
+ import { MultiCards as b } from "./MultiCards/index.js";
31
+ import { Partners as y } from "./Partners/Partners.js";
32
+ import { PartnersColors as k } from "./PartnersColors/PartnersColors.js";
33
+ import { PreviewList as x } from "./PreviewList/PreviewList.js";
34
+ import { PromoPoster as A } from "./PromoPoster/PromoPoster.js";
35
+ import { Segments as h } from "./Segments/Segments.js";
36
+ import { Space as q } from "./Space/Space.js";
37
+ import { StandartTable as v } from "./StandartTable/index.js";
38
+ import { Stepper as W } from "./Stepper/Stepper.js";
39
+ import { SwiperList as j } from "./SwiperList/SwiperList.js";
40
+ import { TasksBanner as z } from "./TasksBanner/TasksBanner.js";
41
+ import { TasksBannerList as E } from "./TasksBannerList/TasksBannerList.js";
42
+ import { VideoFull as G } from "./Video/VideoFull/VideoFull.js";
43
+ import { VideoList as J } from "./Video/VideoList/VideoList.js";
44
+ import { VideoListMini as K } from "./Video/VideoListMini/VideoListMini.js";
45
+ import { VideoMainBanner as N } from "./VideoMainBanner/VideoMainBanner.js";
46
+ const vr = {
47
+ Banner: o,
48
+ BannerAndText: m,
49
+ CardImageList: i,
50
+ Stepper: W,
51
+ Segments: h,
52
+ VideoFull: G,
53
+ VideoList: J,
54
+ VideoListMini: K,
55
+ ContentCardList: C,
56
+ CardIconList: t,
57
+ MultiCards: b,
58
+ Partners: y,
59
+ PartnersColors: k,
60
+ MainBanner: V,
61
+ WarningCard: l,
62
+ Faq: w,
63
+ DownloadFileBanner: B,
64
+ DownloadFileHalf: I,
65
+ DownloadFileFull: L,
66
+ DownloadFileMini: c,
67
+ InstructionList: T,
68
+ PreviewList: x,
69
+ SwiperList: j,
70
+ AnimatedSwiper: r,
71
+ InfoBannerList: D,
72
+ TasksBannerList: E,
73
+ VideoMainBanner: N,
74
+ Space: q,
75
+ PromoPoster: A,
76
+ CardImageSecondaryList: a,
77
+ CardInfoTable: e,
78
+ StandartTable: v,
79
+ IntroBanner: H,
80
+ DownloadFileBright: F,
81
+ // FormDefault,
82
+ Header: g,
83
+ Footer: S,
84
+ HtmlContent: P,
85
+ HeroPossibilityBanner: M,
86
+ CardImage: p,
87
+ ContentCard: s,
88
+ ColoredCard: f,
89
+ FeaturesCard: d,
90
+ InfoBanner: u,
91
+ TasksBanner: z,
92
+ CardImageSecondary: n
93
+ };
94
+ export {
95
+ vr as c
96
+ };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "md-components-mdigial-azamat",
3
3
  "author": "Azamat Raimbekov",
4
4
  "private": false,
5
- "version": "0.0.58",
5
+ "version": "0.0.60",
6
6
  "type": "module",
7
7
  "main": "dist/main.js",
8
8
  "types": "dist/main.d.ts",
@@ -1,75 +0,0 @@
1
- import r from "./AnimatedSwiper/index.js";
2
- import { Banner as o } from "./Banner/Banner.js";
3
- import { CardIconList as m } from "./CardIconList/CardIconList.js";
4
- import { CardImageList as i } from "./CardImageList/CardImageList.js";
5
- import { CardImageSecondaryList as t } from "./CardImageSecondaryList/CardImageSecondaryList.js";
6
- import { CardInfoTable as p } from "./CardInfoTable/index.js";
7
- import { WarningCard as n } from "./Cards/WarningCard/WarningCard.js";
8
- import { ContentCardList as e } from "./ContentCardList/ContentCardList.js";
9
- import { DownloadFileBanner as a } from "./DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js";
10
- import { DownloadFileBright as f } from "./DownloadFile/components/DownloadFileBright/index.js";
11
- import { DownloadFileFull as s } from "./DownloadFile/components/DownloadFileFull/DownloadFileFull.js";
12
- import { DownloadFileHalf as d } from "./DownloadFile/components/DownloadFileHalf/DownloadFileHalf.js";
13
- import { DownloadFileMini as l } from "./DownloadFile/components/DownloadFileMini/DownloadFileMini.js";
14
- import { Faq as L } from "./Faq/Faq.js";
15
- import { Footer as C } from "./Footer/Footer.js";
16
- import { Header as F } from "./Header/Header.js";
17
- import { InfoBannerList as w } from "./InfoBannerList/InfoBannerList.js";
18
- import { InstructionList as B } from "./InstructionList/InstructionList.js";
19
- import { IntroBanner as c } from "./IntroBanner/IntroBanner.js";
20
- import { MainBanner as I } from "./MainBanner/MainBanner.js";
21
- import { MultiCards as S } from "./MultiCards/index.js";
22
- import { Partners as M } from "./Partners/Partners.js";
23
- import { PartnersColors as g } from "./PartnersColors/PartnersColors.js";
24
- import { PreviewList as D } from "./PreviewList/PreviewList.js";
25
- import { PromoPoster as P } from "./PromoPoster/PromoPoster.js";
26
- import { Segments as u } from "./Segments/Segments.js";
27
- import { Space as V } from "./Space/Space.js";
28
- import { StandartTable as T } from "./StandartTable/index.js";
29
- import { Stepper as b } from "./Stepper/Stepper.js";
30
- import { SwiperList as H } from "./SwiperList/SwiperList.js";
31
- import { TasksBannerList as h } from "./TasksBannerList/TasksBannerList.js";
32
- import { VideoFull as k } from "./Video/VideoFull/VideoFull.js";
33
- import { VideoList as q } from "./Video/VideoList/VideoList.js";
34
- import { VideoListMini as v } from "./Video/VideoListMini/VideoListMini.js";
35
- import { VideoMainBanner as x } from "./VideoMainBanner/VideoMainBanner.js";
36
- const wr = {
37
- Banner: o,
38
- CardImageList: i,
39
- Stepper: b,
40
- Segments: u,
41
- VideoFull: k,
42
- VideoList: q,
43
- VideoListMini: v,
44
- ContentCardList: e,
45
- CardIconList: m,
46
- MultiCards: S,
47
- Partners: M,
48
- PartnersColors: g,
49
- MainBanner: I,
50
- WarningCard: n,
51
- Faq: L,
52
- DownloadFileBanner: a,
53
- DownloadFileHalf: d,
54
- DownloadFileFull: s,
55
- DownloadFileMini: l,
56
- InstructionList: B,
57
- PreviewList: D,
58
- SwiperList: H,
59
- AnimatedSwiper: r,
60
- InfoBannerList: w,
61
- TasksBannerList: h,
62
- VideoMainBanner: x,
63
- Space: V,
64
- PromoPoster: P,
65
- CardImageSecondaryList: t,
66
- CardInfoTable: p,
67
- StandartTable: T,
68
- IntroBanner: c,
69
- DownloadFileBright: f,
70
- Header: F,
71
- Footer: C
72
- };
73
- export {
74
- wr as c
75
- };