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.
@@ -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
  };
@@ -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-81e7fc2b.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-81e7fc2b.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(
@@ -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 p } from "./CardImageSecondary/CardImageSecondary.js";
7
- import { CardImageSecondaryList as n } from "./CardImageSecondaryList/CardImageSecondaryList.js";
8
- import { CardInfoTable as a } from "./CardInfoTable/index.js";
9
- import { CardImage as e } from "./Cards/CardImage/CardImage.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
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 u } from "./HeroPossibilityBanner/index.js";
24
- import { HtmlContent as D } from "./HtmlContent/HtmlContent.js";
25
- import { InfoBanner as M } from "./InfoBanner/index.js";
26
- import { InfoBannerList as P } from "./InfoBannerList/InfoBannerList.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
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
- import "./ConfigProvider/index.js";
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: P,
71
+ InfoBannerList: D,
127
72
  TasksBannerList: E,
128
73
  VideoMainBanner: N,
129
74
  Space: q,
130
75
  PromoPoster: A,
131
- CardImageSecondaryList: n,
132
- CardInfoTable: a,
76
+ CardImageSecondaryList: a,
77
+ CardInfoTable: e,
133
78
  StandartTable: v,
134
79
  IntroBanner: H,
135
80
  DownloadFileBright: F,
136
- FormDefault: O,
81
+ // FormDefault,
137
82
  Header: g,
138
83
  Footer: S,
139
- HtmlContent: D,
140
- HeroPossibilityBanner: u,
141
- CardImage: e,
84
+ HtmlContent: P,
85
+ HeroPossibilityBanner: M,
86
+ CardImage: p,
142
87
  ContentCard: s,
143
88
  ColoredCard: f,
144
89
  FeaturesCard: d,
145
- InfoBanner: M,
90
+ InfoBanner: u,
146
91
  TasksBanner: z,
147
- CardImageSecondary: p
92
+ CardImageSecondary: n
148
93
  };
149
94
  export {
150
- zo as c
95
+ vr as c
151
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.59",
5
+ "version": "0.0.60",
6
6
  "type": "module",
7
7
  "main": "dist/main.js",
8
8
  "types": "dist/main.d.ts",