md-components-mdigial-azamat 0.0.109 → 0.0.113

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.
Files changed (166) hide show
  1. package/dist/ActionCardList/ActionCardList.js +32 -7
  2. package/dist/ActionCardList/index.js +1 -1
  3. package/dist/ActionCardList/info.js +1 -1
  4. package/dist/ActionCardSecondaryList/ActionCardSecondaryList.js +32 -0
  5. package/dist/ActionCardSecondaryList/index.js +6 -0
  6. package/dist/ActionCardSecondaryList/info.js +11 -0
  7. package/dist/ActionCardSecondaryList/schema.js +51 -0
  8. package/dist/ActionCardSecondaryList/types.js +4 -0
  9. package/dist/ActionIconList/ActionIconList.js +29 -4
  10. package/dist/AllComponents.js +35 -9
  11. package/dist/AllComponentsInfo.js +107 -89
  12. package/dist/AnimatedSwiper/index.js +40 -38
  13. package/dist/ButtonsList/ButtonsList.js +25 -19
  14. package/dist/CardImageList/CardImageList.js +130 -73
  15. package/dist/CardImageList/info.js +1 -1
  16. package/dist/CardImageList/schema.js +62 -0
  17. package/dist/Cards/ActionSecondaryCard/ActionSecondaryCard.js +77 -0
  18. package/dist/Cards/ActionSecondaryCard/index.js +6 -0
  19. package/dist/Cards/ActionSecondaryCard/info.js +11 -0
  20. package/dist/Cards/ActionSecondaryCard/types.js +4 -0
  21. package/dist/Cards/CardImage/CardImage.js +100 -55
  22. package/dist/Cards/CardImage/index.js +6 -1
  23. package/dist/Cards/CardImage/info.js +1 -1
  24. package/dist/Cards/CardImage/schema.js +32 -0
  25. package/dist/Cards/CardImage/types.js +3 -2
  26. package/dist/Cards/InfoCard/InfoCard.js +114 -0
  27. package/dist/Cards/InfoCard/index.js +9 -0
  28. package/dist/Cards/InfoCard/info.js +11 -0
  29. package/dist/Cards/InfoCard/schema.js +60 -0
  30. package/dist/Cards/InfoCard/types.js +4 -0
  31. package/dist/Cards/PostCard/PostCard.js +60 -0
  32. package/dist/Cards/PostCard/index.js +6 -0
  33. package/dist/Cards/PostCard/info.js +11 -0
  34. package/dist/Cards/PostCard/types.js +4 -0
  35. package/dist/Cards/WarningCard/WarningCard.js +31 -6
  36. package/dist/Cards/WarningCard/index.js +1 -1
  37. package/dist/Cards/WarningCard/info.js +1 -1
  38. package/dist/Cards/WarningCard/model.js +1 -1
  39. package/dist/CurrencyRates/CurrencyRates.js +78 -0
  40. package/dist/CurrencyRates/components/Calculator.js +101 -0
  41. package/dist/CurrencyRates/components/RateCell.js +15 -0
  42. package/dist/CurrencyRates/components/RatesTable.js +134 -0
  43. package/dist/CurrencyRates/components/index.js +6 -0
  44. package/dist/CurrencyRates/index.js +8 -0
  45. package/dist/CurrencyRates/info.js +11 -0
  46. package/dist/CurrencyRates/schema.js +63 -0
  47. package/dist/CurrencyRates/types.js +4 -0
  48. package/dist/DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js +1 -1
  49. package/dist/DownloadFile/components/DownloadFileFull/DownloadFileFull.js +1 -1
  50. package/dist/DownloadFile/components/DownloadFileHalf/DownloadFileHalf.js +1 -1
  51. package/dist/DownloadFile/components/DownloadFileMini/DownloadFileMini.js +1 -1
  52. package/dist/DownloadFile/components/FileBannerSecondary/FileBannerSecondary.js +1 -1
  53. package/dist/Faq/Faq.js +1 -1
  54. package/dist/Faq/components/FeedbackForm/FeedbackForm.js +55 -6
  55. package/dist/Faq/components/FeedbackForm/index.js +1 -1
  56. package/dist/FieldInput-ef2a18d4.js +2743 -0
  57. package/dist/Flex-86aee720.js +78 -0
  58. package/dist/Footer/Footer.js +5 -5
  59. package/dist/Forms/FormDefault/FormDefault.js +12 -0
  60. package/dist/Forms/FormDefault/components/FieldCustom.js +11 -0
  61. package/dist/Forms/FormDefault/components/FieldInput.js +11 -0
  62. package/dist/Forms/FormDefault/components/FieldSection.js +10 -0
  63. package/dist/Forms/FormDefault/components/FormContent.js +10 -0
  64. package/dist/Forms/FormDefault/components/FormFields.js +7 -0
  65. package/dist/Forms/FormDefault/components/FormSuccessMessage.js +49 -0
  66. package/dist/Forms/FormDefault/components/index.js +6 -0
  67. package/dist/Forms/FormDefault/hooks/index.js +10 -0
  68. package/dist/Forms/FormDefault/hooks/useFieldOptions.js +32 -0
  69. package/dist/Forms/FormDefault/hooks/useFieldValidation.js +33 -0
  70. package/dist/Forms/FormDefault/hooks/useFieldVisibility.js +24 -0
  71. package/dist/Forms/FormDefault/hooks/useFormSubmission.js +64 -0
  72. package/dist/Forms/FormDefault/index.js +6 -12
  73. package/dist/Forms/FormDefault/info.js +3 -113
  74. package/dist/Forms/FormDefault/model/componentRegistry.js +134 -0
  75. package/dist/Forms/FormDefault/model/fieldTypes.js +18 -0
  76. package/dist/Forms/FormDefault/model/formElementTypes.js +18 -0
  77. package/dist/Forms/FormDefault/model/index.js +13 -0
  78. package/dist/Forms/FormDefault/model/requestForm.js +4 -0
  79. package/dist/Forms/{model/components.js → FormDefault/schema.js} +36 -7
  80. package/dist/Forms/FormDefault/utils.js +20 -0
  81. package/dist/Grid-331af266.js +80 -0
  82. package/dist/Header/Header.js +54 -42
  83. package/dist/Header/components/HeaderMainMobile/HeaderMainMobile.js +26 -24
  84. package/dist/Header/components/HeaderMobile/HeaderMobile.js +67 -52
  85. package/dist/Header/components/HeaderSearch/HeaderSearch.js +1 -1
  86. package/dist/Header/components/HeaderTab/HeaderTab.js +17 -15
  87. package/dist/Header/components/HeaderTabsMobile/HeaderTabsMobile.js +10 -9
  88. package/dist/Header/components/HeaderWeb/HeaderWeb.js +134 -114
  89. package/dist/Header/components/TabsOutlined/TabsOutlined.js +8 -7
  90. package/dist/HeroIconsBanner/HeroIconsBanner.js +71 -54
  91. package/dist/IconList/IconList.js +59 -33
  92. package/dist/InfoCardList/InfoCardList.js +100 -0
  93. package/dist/InfoCardList/index.js +6 -0
  94. package/dist/InfoCardList/info.js +11 -0
  95. package/dist/InfoCardList/schema.js +39 -0
  96. package/dist/InfoCardList/types.js +1 -0
  97. package/dist/ModalBody/index.js +1 -1
  98. package/dist/PageViewer/renderComponents.js +1 -1
  99. package/dist/PostsList/PostsList.js +78 -0
  100. package/dist/PostsList/index.js +4 -0
  101. package/dist/PostsList/info.js +11 -0
  102. package/dist/PostsList/schema.js +49 -0
  103. package/dist/PostsList/types.js +1 -0
  104. package/dist/PostsSlider/PostsSlider.js +78 -0
  105. package/dist/PostsSlider/index.js +4 -0
  106. package/dist/PostsSlider/info.js +11 -0
  107. package/dist/PostsSlider/schema.js +49 -0
  108. package/dist/PostsSlider/types.js +1 -0
  109. package/dist/PreviewList/PreviewList.js +19 -19
  110. package/dist/PreviewList/components/PreviewCard/PreviewCard.js +29 -29
  111. package/dist/RenderAllComponents/RenderAllComponents.js +1 -1
  112. package/dist/RenderAllComponents/const.js +1 -1
  113. package/dist/SearchBlock/SearchBlock.js +101 -0
  114. package/dist/SearchBlock/index.js +4 -0
  115. package/dist/SearchBlock/info.js +11 -0
  116. package/dist/SearchBlock/schema.js +36 -0
  117. package/dist/SegmentedContent/SegmentedContent.js +160 -0
  118. package/dist/SegmentedContent/components/ContentCard.js +50 -0
  119. package/dist/SegmentedContent/components/index.js +4 -0
  120. package/dist/SegmentedContent/index.js +8 -0
  121. package/dist/SegmentedContent/info.js +12 -0
  122. package/dist/SegmentedContent/schema.js +108 -0
  123. package/dist/SegmentedContent/types.js +1 -0
  124. package/dist/Segments/Segments.js +36 -28
  125. package/dist/Segments/index.js +8 -2
  126. package/dist/Segments/info.js +1 -1
  127. package/dist/Segments/schema.js +21 -0
  128. package/dist/Segments/types.js +4 -1
  129. package/dist/SegmentsIcons/SegmentsIcons.js +92 -0
  130. package/dist/SegmentsIcons/index.js +8 -0
  131. package/dist/SegmentsIcons/info.js +11 -0
  132. package/dist/SegmentsIcons/schema.js +14 -0
  133. package/dist/SegmentsIcons/types.js +1 -0
  134. package/dist/SwiperList/SwiperList.js +13 -11
  135. package/dist/assets/index.css +1 -1
  136. package/dist/{clientApi-642fea4b.js → clientApi-ccb08ba6.js} +7 -7
  137. package/dist/{componentsMap-855b1df7.js → componentsMap-29ccdfcc.js} +6 -3
  138. package/dist/{data.mock-182979d1.js → data.mock-bb32e8ee.js} +485 -133
  139. package/dist/index-0791c17f.js +56 -0
  140. package/dist/index-2ec92a04.js +32 -0
  141. package/dist/{index-497f59a8.js → index-b795390d.js} +23 -20
  142. package/dist/index.esm-0558519f.js +1171 -0
  143. package/dist/{index.module-c8833286.js → index.module-8835bf96.js} +1 -1
  144. package/dist/info-72904479.js +791 -0
  145. package/dist/main.js +151 -116
  146. package/dist/{mousewheel-865ae601.js → mousewheel-afbc6d42.js} +1 -1
  147. package/dist/navigation-266856e7.js +136 -0
  148. package/dist/navigation-cd786a0d.js +133 -0
  149. package/dist/{palette-c2fe86ec.js → palette-256cf77a.js} +3 -1
  150. package/dist/{swiper-react-90953710.js → swiper-react-3c2710e8.js} +695 -825
  151. package/dist/trash/HeroLargeCards/index.js +7 -6
  152. package/dist/types-c3843cc0.js +4 -0
  153. package/dist/useDraggableScroll-440da9b7.js +29 -0
  154. package/dist/useTranslation-d7a3ca6f.js +298 -0
  155. package/package.json +1 -1
  156. package/dist/FileLoader/fileLoader.js +0 -22
  157. package/dist/FileLoader/index.js +0 -8
  158. package/dist/Forms/FormDefault/componentTypes.js +0 -31
  159. package/dist/Forms/FormDefault/fieldTypesList.js +0 -45
  160. package/dist/Forms/helpers/renderFormFields.js +0 -7
  161. package/dist/Forms/model/requestForm.js +0 -4
  162. package/dist/index-6686852d.js +0 -1794
  163. package/dist/index-a0ed2e4a.js +0 -1221
  164. package/dist/info-34fbb2a8.js +0 -1534
  165. package/dist/navigation-b894d0cd.js +0 -183
  166. /package/dist/Forms/{types/formItems.js → FormDefault/model/types.js} +0 -0
package/dist/main.js CHANGED
@@ -1,124 +1,159 @@
1
- import { ConfigProvider as d } from "./ConfigProvider/index.js";
2
- import { Banner as c } from "./Banner/Banner.js";
3
- import { BannerAndText as F } from "./BannerAndText/index.js";
4
- import { Header as I } from "./Header/Header.js";
5
- import { Footer as L } from "./Footer/Footer.js";
6
- import { Stepper as g } from "./Stepper/Stepper.js";
7
- import { Segments as A } from "./Segments/Segments.js";
8
- import { VideoFull as D } from "./Video/VideoFull/VideoFull.js";
9
- import { VideoList as y } from "./Video/VideoList/VideoList.js";
10
- import { VideoListMini as V } from "./Video/VideoListMini/VideoListMini.js";
11
- import { ContentCardList as k } from "./ContentCardList/ContentCardList.js";
12
- import { CardIconList as O } from "./CardIconList/CardIconList.js";
13
- import { MultiCards as q } from "./MultiCards/index.js";
14
- import { Partners as Z } from "./Partners/Partners.js";
15
- import { CardImageList as j } from "./CardImageList/CardImageList.js";
16
- import { MainBanner as G } from "./MainBanner/MainBanner.js";
17
- import { Faq as K } from "./Faq/Faq.js";
18
- import { HtmlContent as Q } from "./HtmlContent/HtmlContent.js";
19
- import { InstructionList as U } from "./InstructionList/InstructionList.js";
20
- import { HeroPossibilityBanner as Y } from "./HeroPossibilityBanner/index.js";
21
- import { PartnersColors as $ } from "./PartnersColors/PartnersColors.js";
22
- import { PreviewList as ro } from "./PreviewList/PreviewList.js";
23
- import { CardImage as to } from "./Cards/CardImage/CardImage.js";
24
- import { ContentCard as ao } from "./Cards/ContentCard/ContentCard.js";
25
- import { a as mo, b as fo, A as so, F as xo, W as io } from "./info-34fbb2a8.js";
26
- import { ColoredCard as Co } from "./Cards/ColoredCard/index.js";
27
- import { FeaturesCard as uo } from "./Cards/FeaturesCard/index.js";
28
- import { DownloadFileBanner as Bo } from "./DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js";
29
- import { DownloadFileFull as Po } from "./DownloadFile/components/DownloadFileFull/DownloadFileFull.js";
30
- import { DownloadFileHalf as Mo } from "./DownloadFile/components/DownloadFileHalf/DownloadFileHalf.js";
31
- import { DownloadFileMini as wo } from "./DownloadFile/components/DownloadFileMini/DownloadFileMini.js";
32
- import { Collapse as So } from "./Faq/components/Collapse/Collapse.js";
33
- import { F as bo } from "./index-a0ed2e4a.js";
34
- import { PlusMinusIcon as Ho } from "./Faq/components/PlusMinusIcon/PlusMinusIcon.js";
35
- import { InstructionCard as To } from "./InstructionList/components/InstructionCard/InstructionCard.js";
36
- import { InstructionModal as vo } from "./InstructionList/components/InstructionModal/InstructionModal.js";
37
- import { PartnerCard as Wo } from "./PartnersColors/components/PartnerCard/PartnerCard.js";
38
- import { PartnerTab as Eo } from "./PartnersColors/components/PartnerTab/PartnerTab.js";
39
- import { PreviewCard as ho } from "./PreviewList/components/PreviewCard/PreviewCard.js";
40
- import { VideoPlayer as zo } from "./Video/components/VideoPlayer/VideoPlayer.js";
41
- import { PageViewer as Jo } from "./PageViewer/PageViewer.js";
42
- import { FieldTypes as No } from "./Types/FiledTypes.js";
43
- import { B as Ro } from "./const-53dff524.js";
44
- import { Space as Xo } from "./Space/Space.js";
45
- import { FileBannerSecondary as _o } from "./DownloadFile/components/FileBannerSecondary/FileBannerSecondary.js";
46
- import { M as or, a as rr } from "./index-497f59a8.js";
1
+ import { ConfigProvider as A } from "./ConfigProvider/index.js";
2
+ import { Banner as g } from "./Banner/Banner.js";
3
+ import { BannerAndText as V } from "./BannerAndText/index.js";
4
+ import { Header as D } from "./Header/Header.js";
5
+ import { Footer as H } from "./Footer/Footer.js";
6
+ import { Stepper as T } from "./Stepper/Stepper.js";
7
+ import { Segments as O } from "./Segments/Segments.js";
8
+ import "./Segments/info.js";
9
+ import "./Segments/schema.js";
10
+ import { VideoFull as h } from "./Video/VideoFull/VideoFull.js";
11
+ import { VideoList as E } from "./Video/VideoList/VideoList.js";
12
+ import { VideoListMini as Z } from "./Video/VideoListMini/VideoListMini.js";
13
+ import { ContentCardList as z } from "./ContentCardList/ContentCardList.js";
14
+ import { CardIconList as J } from "./CardIconList/CardIconList.js";
15
+ import { MultiCards as N } from "./MultiCards/index.js";
16
+ import { Partners as U } from "./Partners/Partners.js";
17
+ import { CardImageList as Y } from "./CardImageList/CardImageList.js";
18
+ import { MainBanner as $ } from "./MainBanner/MainBanner.js";
19
+ import { Faq as ro } from "./Faq/Faq.js";
20
+ import { HtmlContent as to } from "./HtmlContent/HtmlContent.js";
21
+ import { InstructionList as no } from "./InstructionList/InstructionList.js";
22
+ import { HeroPossibilityBanner as mo } from "./HeroPossibilityBanner/index.js";
23
+ import { PartnersColors as io } from "./PartnersColors/PartnersColors.js";
24
+ import { PreviewList as so } from "./PreviewList/PreviewList.js";
25
+ import { CardImage as Co } from "./Cards/CardImage/CardImage.js";
26
+ import "./Cards/CardImage/info.js";
27
+ import { ContentCard as uo } from "./Cards/ContentCard/ContentCard.js";
28
+ import { a as Fo, b as Io, A as Po, F as Bo, W as Lo } from "./info-72904479.js";
29
+ import { ColoredCard as yo } from "./Cards/ColoredCard/index.js";
30
+ import { FeaturesCard as Mo } from "./Cards/FeaturesCard/index.js";
31
+ import { DownloadFileBanner as wo } from "./DownloadFile/components/DownloadFileBanner/DownloadFileBanner.js";
32
+ import { DownloadFileFull as bo } from "./DownloadFile/components/DownloadFileFull/DownloadFileFull.js";
33
+ import { DownloadFileHalf as ko } from "./DownloadFile/components/DownloadFileHalf/DownloadFileHalf.js";
34
+ import { DownloadFileMini as vo } from "./DownloadFile/components/DownloadFileMini/DownloadFileMini.js";
35
+ import { Collapse as Wo } from "./Faq/components/Collapse/Collapse.js";
36
+ import { FeedbackForm as qo } from "./Faq/components/FeedbackForm/FeedbackForm.js";
37
+ import { PlusMinusIcon as Ro } from "./Faq/components/PlusMinusIcon/PlusMinusIcon.js";
38
+ import { InstructionCard as jo } from "./InstructionList/components/InstructionCard/InstructionCard.js";
39
+ import { InstructionModal as Go } from "./InstructionList/components/InstructionModal/InstructionModal.js";
40
+ import { PartnerCard as Ko } from "./PartnersColors/components/PartnerCard/PartnerCard.js";
41
+ import { PartnerTab as Qo } from "./PartnersColors/components/PartnerTab/PartnerTab.js";
42
+ import { PreviewCard as Xo } from "./PreviewList/components/PreviewCard/PreviewCard.js";
43
+ import { VideoPlayer as _o } from "./Video/components/VideoPlayer/VideoPlayer.js";
44
+ import { PageViewer as or } from "./PageViewer/PageViewer.js";
45
+ import { FieldTypes as er } from "./Types/FiledTypes.js";
46
+ import { B as ar } from "./const-53dff524.js";
47
+ import { Space as pr } from "./Space/Space.js";
48
+ import { FileBannerSecondary as fr } from "./DownloadFile/components/FileBannerSecondary/FileBannerSecondary.js";
49
+ import { M as xr, a as sr } from "./index-b795390d.js";
47
50
  import { useState as f, useCallback as r } from "react";
48
- import { S as tr } from "./size-b1291031.js";
49
- import { TitleBlock as ar } from "./TitleBlock/TitleBlock.js";
50
- import { AllComponentsInfo as mr } from "./AllComponentsInfo.js";
51
- import { Actions as sr } from "./Actions/types.js";
52
- import { ButtonsList as ir } from "./ButtonsList/ButtonsList.js";
53
- import { IconList as dr } from "./IconList/IconList.js";
54
- import { HeroIconsBanner as cr } from "./HeroIconsBanner/HeroIconsBanner.js";
55
- const x = (e = !1) => {
56
- const [t, o] = f(e), n = r(() => o(!0), []), a = r(() => o(!1), []), p = r(() => o((m) => !m), []);
51
+ import { S as lr } from "./size-b1291031.js";
52
+ import { TitleBlock as cr } from "./TitleBlock/TitleBlock.js";
53
+ import { AllComponentsInfo as Sr } from "./AllComponentsInfo.js";
54
+ import { Actions as Ir } from "./Actions/types.js";
55
+ import { ButtonsList as Br } from "./ButtonsList/ButtonsList.js";
56
+ import { IconList as Ar } from "./IconList/IconList.js";
57
+ import { HeroIconsBanner as gr } from "./HeroIconsBanner/HeroIconsBanner.js";
58
+ import { SearchBlock as Vr } from "./SearchBlock/SearchBlock.js";
59
+ import { SegmentsIcons as Dr } from "./SegmentsIcons/SegmentsIcons.js";
60
+ import "./SegmentsIcons/schema.js";
61
+ import "./SegmentsIcons/info.js";
62
+ import { SegmentedContent as Hr } from "./SegmentedContent/SegmentedContent.js";
63
+ import "./SegmentedContent/info.js";
64
+ import "./SegmentedContent/schema.js";
65
+ import { InfoCardList as Tr } from "./InfoCardList/InfoCardList.js";
66
+ import "./InfoCardList/schema.js";
67
+ import { InfoCard as Or } from "./Cards/InfoCard/InfoCard.js";
68
+ import "./Cards/InfoCard/schema.js";
69
+ import { CurrencyRates as hr } from "./CurrencyRates/CurrencyRates.js";
70
+ import "./CurrencyRates/schema.js";
71
+ import { ActionCardSecondaryList as Er } from "./ActionCardSecondaryList/ActionCardSecondaryList.js";
72
+ import { ActionSecondaryCardVariant as Zr, ActionSecondaryCardVariant as jr } from "./Cards/ActionSecondaryCard/types.js";
73
+ import { ActionSecondaryCard as Gr } from "./Cards/ActionSecondaryCard/ActionSecondaryCard.js";
74
+ import { PostCard as Kr } from "./Cards/PostCard/PostCard.js";
75
+ import { PostCardVariant as Qr } from "./Cards/PostCard/types.js";
76
+ import { PostsSlider as Xr } from "./PostsSlider/PostsSlider.js";
77
+ const P = (e = !1) => {
78
+ const [t, o] = f(e), a = r(() => o(!0), []), n = r(() => o(!1), []), p = r(() => o((m) => !m), []);
57
79
  return {
58
80
  isOpen: t,
59
- open: n,
60
- close: a,
81
+ open: a,
82
+ close: n,
61
83
  toggle: p
62
84
  };
63
85
  };
64
86
  export {
65
- mo as ActionCardList,
66
- sr as Actions,
67
- fo as AllComponents,
68
- so as AllComponentsData,
69
- mr as AllComponentsInfo,
70
- c as Banner,
71
- F as BannerAndText,
72
- Ro as ButtonProps,
73
- ir as ButtonsList,
74
- O as CardIconList,
75
- to as CardImage,
76
- j as CardImageList,
77
- So as Collapse,
78
- Co as ColoredCard,
79
- d as ConfigProvider,
80
- ao as ContentCard,
81
- k as ContentCardList,
82
- Bo as DownloadFileBanner,
83
- Po as DownloadFileFull,
84
- Mo as DownloadFileHalf,
85
- wo as DownloadFileMini,
86
- K as Faq,
87
- uo as FeaturesCard,
88
- bo as FeedbackForm,
89
- No as FieldTypes,
90
- _o as FileBannerSecondary,
91
- L as Footer,
92
- xo as FormDefault,
93
- I as Header,
94
- cr as HeroIconsBanner,
95
- Y as HeroPossibilityBanner,
96
- Q as HtmlContent,
97
- dr as IconList,
98
- To as InstructionCard,
99
- U as InstructionList,
100
- vo as InstructionModal,
101
- G as MainBanner,
102
- or as Modal,
103
- rr as ModalBody,
104
- q as MultiCards,
105
- Jo as PageViewer,
106
- Wo as PartnerCard,
107
- Eo as PartnerTab,
108
- Z as Partners,
109
- $ as PartnersColors,
110
- Ho as PlusMinusIcon,
111
- ho as PreviewCard,
112
- ro as PreviewList,
113
- tr as SIZE,
114
- A as Segments,
115
- Xo as Space,
116
- g as Stepper,
117
- ar as TitleBlock,
118
- D as VideoFull,
119
- y as VideoList,
120
- V as VideoListMini,
121
- zo as VideoPlayer,
122
- io as WarningCard,
123
- x as useModal
87
+ Fo as ActionCardList,
88
+ Er as ActionCardSecondaryList,
89
+ Zr as ActionCardSecondaryListVariant,
90
+ Gr as ActionSecondaryCard,
91
+ jr as ActionSecondaryCardVariant,
92
+ Ir as Actions,
93
+ Io as AllComponents,
94
+ Po as AllComponentsData,
95
+ Sr as AllComponentsInfo,
96
+ g as Banner,
97
+ V as BannerAndText,
98
+ ar as ButtonProps,
99
+ Br as ButtonsList,
100
+ J as CardIconList,
101
+ Co as CardImage,
102
+ Y as CardImageList,
103
+ Wo as Collapse,
104
+ yo as ColoredCard,
105
+ A as ConfigProvider,
106
+ uo as ContentCard,
107
+ z as ContentCardList,
108
+ hr as CurrencyRates,
109
+ wo as DownloadFileBanner,
110
+ bo as DownloadFileFull,
111
+ ko as DownloadFileHalf,
112
+ vo as DownloadFileMini,
113
+ ro as Faq,
114
+ Mo as FeaturesCard,
115
+ qo as FeedbackForm,
116
+ er as FieldTypes,
117
+ fr as FileBannerSecondary,
118
+ H as Footer,
119
+ Bo as FormDefault,
120
+ D as Header,
121
+ gr as HeroIconsBanner,
122
+ mo as HeroPossibilityBanner,
123
+ to as HtmlContent,
124
+ Ar as IconList,
125
+ Or as InfoCard,
126
+ Tr as InfoCardList,
127
+ jo as InstructionCard,
128
+ no as InstructionList,
129
+ Go as InstructionModal,
130
+ $ as MainBanner,
131
+ xr as Modal,
132
+ sr as ModalBody,
133
+ N as MultiCards,
134
+ or as PageViewer,
135
+ Ko as PartnerCard,
136
+ Qo as PartnerTab,
137
+ U as Partners,
138
+ io as PartnersColors,
139
+ Ro as PlusMinusIcon,
140
+ Kr as PostCard,
141
+ Qr as PostCardVariant,
142
+ Xr as PostsSlider,
143
+ Xo as PreviewCard,
144
+ so as PreviewList,
145
+ lr as SIZE,
146
+ Vr as SearchBlock,
147
+ Hr as SegmentedContent,
148
+ O as Segments,
149
+ Dr as SegmentsIcons,
150
+ pr as Space,
151
+ T as Stepper,
152
+ cr as TitleBlock,
153
+ h as VideoFull,
154
+ E as VideoList,
155
+ Z as VideoListMini,
156
+ _o as VideoPlayer,
157
+ Lo as WarningCard,
158
+ P as useModal
124
159
  };
@@ -1,4 +1,4 @@
1
- import { g as N, n as D, c as g } from "./swiper-react-90953710.js";
1
+ import { g as N, n as D, c as g } from "./swiper-react-3c2710e8.js";
2
2
  function k(S) {
3
3
  let {
4
4
  swiper: e,
@@ -0,0 +1,136 @@
1
+ import { e as w, d as k, m as d } from "./swiper-react-3c2710e8.js";
2
+ function N(g, a, c, o) {
3
+ return g.params.createElements && Object.keys(o).forEach((l) => {
4
+ if (!c[l] && c.auto === !0) {
5
+ let r = w(g.el, `.${o[l]}`)[0];
6
+ r || (r = k("div", o[l]), r.className = o[l], g.el.append(r)), c[l] = r, a[l] = r;
7
+ }
8
+ }), c;
9
+ }
10
+ function O(g) {
11
+ let {
12
+ swiper: a,
13
+ extendParams: c,
14
+ on: o,
15
+ emit: l
16
+ } = g;
17
+ c({
18
+ navigation: {
19
+ nextEl: null,
20
+ prevEl: null,
21
+ hideOnClick: !1,
22
+ disabledClass: "swiper-button-disabled",
23
+ hiddenClass: "swiper-button-hidden",
24
+ lockClass: "swiper-button-lock",
25
+ navigationDisabledClass: "swiper-navigation-disabled"
26
+ }
27
+ }), a.navigation = {
28
+ nextEl: null,
29
+ prevEl: null
30
+ };
31
+ function r(n) {
32
+ let e;
33
+ return n && typeof n == "string" && a.isElement && (e = a.el.querySelector(n) || a.hostEl.querySelector(n), e) ? e : (n && (typeof n == "string" && (e = [...document.querySelectorAll(n)]), a.params.uniqueNavElements && typeof n == "string" && e && e.length > 1 && a.el.querySelectorAll(n).length === 1 ? e = a.el.querySelector(n) : e && e.length === 1 && (e = e[0])), n && !e ? n : e);
34
+ }
35
+ function u(n, e) {
36
+ const t = a.params.navigation;
37
+ n = d(n), n.forEach((i) => {
38
+ i && (i.classList[e ? "add" : "remove"](...t.disabledClass.split(" ")), i.tagName === "BUTTON" && (i.disabled = e), a.params.watchOverflow && a.enabled && i.classList[a.isLocked ? "add" : "remove"](t.lockClass));
39
+ });
40
+ }
41
+ function v() {
42
+ const {
43
+ nextEl: n,
44
+ prevEl: e
45
+ } = a.navigation;
46
+ if (a.params.loop) {
47
+ u(e, !1), u(n, !1);
48
+ return;
49
+ }
50
+ u(e, a.isBeginning && !a.params.rewind), u(n, a.isEnd && !a.params.rewind);
51
+ }
52
+ function b(n) {
53
+ n.preventDefault(), !(a.isBeginning && !a.params.loop && !a.params.rewind) && (a.slidePrev(), l("navigationPrev"));
54
+ }
55
+ function x(n) {
56
+ n.preventDefault(), !(a.isEnd && !a.params.loop && !a.params.rewind) && (a.slideNext(), l("navigationNext"));
57
+ }
58
+ function E() {
59
+ const n = a.params.navigation;
60
+ if (a.params.navigation = N(a, a.originalParams.navigation, a.params.navigation, {
61
+ nextEl: "swiper-button-next",
62
+ prevEl: "swiper-button-prev"
63
+ }), !(n.nextEl || n.prevEl))
64
+ return;
65
+ let e = r(n.nextEl), t = r(n.prevEl);
66
+ Object.assign(a.navigation, {
67
+ nextEl: e,
68
+ prevEl: t
69
+ }), e = d(e), t = d(t);
70
+ const i = (s, m) => {
71
+ s && s.addEventListener("click", m === "next" ? x : b), !a.enabled && s && s.classList.add(...n.lockClass.split(" "));
72
+ };
73
+ e.forEach((s) => i(s, "next")), t.forEach((s) => i(s, "prev"));
74
+ }
75
+ function h() {
76
+ let {
77
+ nextEl: n,
78
+ prevEl: e
79
+ } = a.navigation;
80
+ n = d(n), e = d(e);
81
+ const t = (i, s) => {
82
+ i.removeEventListener("click", s === "next" ? x : b), i.classList.remove(...a.params.navigation.disabledClass.split(" "));
83
+ };
84
+ n.forEach((i) => t(i, "next")), e.forEach((i) => t(i, "prev"));
85
+ }
86
+ o("init", () => {
87
+ a.params.navigation.enabled === !1 ? C() : (E(), v());
88
+ }), o("toEdge fromEdge lock unlock", () => {
89
+ v();
90
+ }), o("destroy", () => {
91
+ h();
92
+ }), o("enable disable", () => {
93
+ let {
94
+ nextEl: n,
95
+ prevEl: e
96
+ } = a.navigation;
97
+ if (n = d(n), e = d(e), a.enabled) {
98
+ v();
99
+ return;
100
+ }
101
+ [...n, ...e].filter((t) => !!t).forEach((t) => t.classList.add(a.params.navigation.lockClass));
102
+ }), o("click", (n, e) => {
103
+ let {
104
+ nextEl: t,
105
+ prevEl: i
106
+ } = a.navigation;
107
+ t = d(t), i = d(i);
108
+ const s = e.target;
109
+ let m = i.includes(s) || t.includes(s);
110
+ if (a.isElement && !m) {
111
+ const p = e.path || e.composedPath && e.composedPath();
112
+ p && (m = p.find((f) => t.includes(f) || i.includes(f)));
113
+ }
114
+ if (a.params.navigation.hideOnClick && !m) {
115
+ if (a.pagination && a.params.pagination && a.params.pagination.clickable && (a.pagination.el === s || a.pagination.el.contains(s)))
116
+ return;
117
+ let p;
118
+ t.length ? p = t[0].classList.contains(a.params.navigation.hiddenClass) : i.length && (p = i[0].classList.contains(a.params.navigation.hiddenClass)), l(p === !0 ? "navigationShow" : "navigationHide"), [...t, ...i].filter((f) => !!f).forEach((f) => f.classList.toggle(a.params.navigation.hiddenClass));
119
+ }
120
+ });
121
+ const L = () => {
122
+ a.el.classList.remove(...a.params.navigation.navigationDisabledClass.split(" ")), E(), v();
123
+ }, C = () => {
124
+ a.el.classList.add(...a.params.navigation.navigationDisabledClass.split(" ")), h();
125
+ };
126
+ Object.assign(a.navigation, {
127
+ enable: L,
128
+ disable: C,
129
+ update: v,
130
+ init: E,
131
+ destroy: h
132
+ });
133
+ }
134
+ export {
135
+ O as N
136
+ };
@@ -0,0 +1,133 @@
1
+ import { f as S } from "./swiper-react-3c2710e8.js";
2
+ import './assets/navigation.css';function k(x) {
3
+ let {
4
+ swiper: e,
5
+ extendParams: B,
6
+ on: s,
7
+ emit: r,
8
+ params: u
9
+ } = x;
10
+ e.autoplay = {
11
+ running: !1,
12
+ paused: !1,
13
+ timeLeft: 0
14
+ }, B({
15
+ autoplay: {
16
+ enabled: !1,
17
+ delay: 3e3,
18
+ waitForTransition: !0,
19
+ disableOnInteraction: !1,
20
+ stopOnLastSlide: !1,
21
+ reverseDirection: !1,
22
+ pauseOnMouseEnter: !1
23
+ }
24
+ });
25
+ let y, E, b = u && u.autoplay ? u.autoplay.delay : 3e3, g = u && u.autoplay ? u.autoplay.delay : 3e3, n, f = (/* @__PURE__ */ new Date()).getTime(), w, v, p, h, L, o, D;
26
+ function M(t) {
27
+ !e || e.destroyed || !e.wrapperEl || t.target === e.wrapperEl && (e.wrapperEl.removeEventListener("transitionend", M), !(D || t.detail && t.detail.bySwiperTouchMove) && l());
28
+ }
29
+ const O = () => {
30
+ if (e.destroyed || !e.autoplay.running)
31
+ return;
32
+ e.autoplay.paused ? w = !0 : w && (g = n, w = !1);
33
+ const t = e.autoplay.paused ? n : f + g - (/* @__PURE__ */ new Date()).getTime();
34
+ e.autoplay.timeLeft = t, r("autoplayTimeLeft", t, t / b), E = requestAnimationFrame(() => {
35
+ O();
36
+ });
37
+ }, C = () => {
38
+ let t;
39
+ return e.virtual && e.params.virtual.enabled ? t = e.slides.find((a) => a.classList.contains("swiper-slide-active")) : t = e.slides[e.activeIndex], t ? parseInt(t.getAttribute("data-swiper-autoplay"), 10) : void 0;
40
+ }, T = (t) => {
41
+ if (e.destroyed || !e.autoplay.running)
42
+ return;
43
+ cancelAnimationFrame(E), O();
44
+ let i = typeof t > "u" ? e.params.autoplay.delay : t;
45
+ b = e.params.autoplay.delay, g = e.params.autoplay.delay;
46
+ const a = C();
47
+ !Number.isNaN(a) && a > 0 && typeof t > "u" && (i = a, b = a, g = a), n = i;
48
+ const c = e.params.speed, N = () => {
49
+ !e || e.destroyed || (e.params.autoplay.reverseDirection ? !e.isBeginning || e.params.loop || e.params.rewind ? (e.slidePrev(c, !0, !0), r("autoplay")) : e.params.autoplay.stopOnLastSlide || (e.slideTo(e.slides.length - 1, c, !0, !0), r("autoplay")) : !e.isEnd || e.params.loop || e.params.rewind ? (e.slideNext(c, !0, !0), r("autoplay")) : e.params.autoplay.stopOnLastSlide || (e.slideTo(0, c, !0, !0), r("autoplay")), e.params.cssMode && (f = (/* @__PURE__ */ new Date()).getTime(), requestAnimationFrame(() => {
50
+ T();
51
+ })));
52
+ };
53
+ return i > 0 ? (clearTimeout(y), y = setTimeout(() => {
54
+ N();
55
+ }, i)) : requestAnimationFrame(() => {
56
+ N();
57
+ }), i;
58
+ }, A = () => {
59
+ f = (/* @__PURE__ */ new Date()).getTime(), e.autoplay.running = !0, T(), r("autoplayStart");
60
+ }, m = () => {
61
+ e.autoplay.running = !1, clearTimeout(y), cancelAnimationFrame(E), r("autoplayStop");
62
+ }, d = (t, i) => {
63
+ if (e.destroyed || !e.autoplay.running)
64
+ return;
65
+ clearTimeout(y), t || (o = !0);
66
+ const a = () => {
67
+ r("autoplayPause"), e.params.autoplay.waitForTransition ? e.wrapperEl.addEventListener("transitionend", M) : l();
68
+ };
69
+ if (e.autoplay.paused = !0, i) {
70
+ L && (n = e.params.autoplay.delay), L = !1, a();
71
+ return;
72
+ }
73
+ n = (n || e.params.autoplay.delay) - ((/* @__PURE__ */ new Date()).getTime() - f), !(e.isEnd && n < 0 && !e.params.loop) && (n < 0 && (n = 0), a());
74
+ }, l = () => {
75
+ e.isEnd && n < 0 && !e.params.loop || e.destroyed || !e.autoplay.running || (f = (/* @__PURE__ */ new Date()).getTime(), o ? (o = !1, T(n)) : T(), e.autoplay.paused = !1, r("autoplayResume"));
76
+ }, I = () => {
77
+ if (e.destroyed || !e.autoplay.running)
78
+ return;
79
+ const t = S();
80
+ t.visibilityState === "hidden" && (o = !0, d(!0)), t.visibilityState === "visible" && l();
81
+ }, P = (t) => {
82
+ t.pointerType === "mouse" && (o = !0, D = !0, !(e.animating || e.autoplay.paused) && d(!0));
83
+ }, F = (t) => {
84
+ t.pointerType === "mouse" && (D = !1, e.autoplay.paused && l());
85
+ }, q = () => {
86
+ e.params.autoplay.pauseOnMouseEnter && (e.el.addEventListener("pointerenter", P), e.el.addEventListener("pointerleave", F));
87
+ }, R = () => {
88
+ e.el && typeof e.el != "string" && (e.el.removeEventListener("pointerenter", P), e.el.removeEventListener("pointerleave", F));
89
+ }, _ = () => {
90
+ S().addEventListener("visibilitychange", I);
91
+ }, j = () => {
92
+ S().removeEventListener("visibilitychange", I);
93
+ };
94
+ s("init", () => {
95
+ e.params.autoplay.enabled && (q(), _(), A());
96
+ }), s("destroy", () => {
97
+ R(), j(), e.autoplay.running && m();
98
+ }), s("_freeModeStaticRelease", () => {
99
+ (p || o) && l();
100
+ }), s("_freeModeNoMomentumRelease", () => {
101
+ e.params.autoplay.disableOnInteraction ? m() : d(!0, !0);
102
+ }), s("beforeTransitionStart", (t, i, a) => {
103
+ e.destroyed || !e.autoplay.running || (a || !e.params.autoplay.disableOnInteraction ? d(!0, !0) : m());
104
+ }), s("sliderFirstMove", () => {
105
+ if (!(e.destroyed || !e.autoplay.running)) {
106
+ if (e.params.autoplay.disableOnInteraction) {
107
+ m();
108
+ return;
109
+ }
110
+ v = !0, p = !1, o = !1, h = setTimeout(() => {
111
+ o = !0, p = !0, d(!0);
112
+ }, 200);
113
+ }
114
+ }), s("touchEnd", () => {
115
+ if (!(e.destroyed || !e.autoplay.running || !v)) {
116
+ if (clearTimeout(h), clearTimeout(y), e.params.autoplay.disableOnInteraction) {
117
+ p = !1, v = !1;
118
+ return;
119
+ }
120
+ p && e.params.cssMode && l(), p = !1, v = !1;
121
+ }
122
+ }), s("slideChange", () => {
123
+ e.destroyed || !e.autoplay.running || (L = !0);
124
+ }), Object.assign(e.autoplay, {
125
+ start: A,
126
+ stop: m,
127
+ pause: d,
128
+ resume: l
129
+ });
130
+ }
131
+ export {
132
+ k as A
133
+ };
@@ -40,7 +40,9 @@ const a = {
40
40
  black9: "#1f2425",
41
41
  lightBlue9: "#45464b",
42
42
  lightGray2: "#f1f2f3",
43
- gray5: "#d6d7dc"
43
+ gray5: "#d6d7dc",
44
+ red: "#f5222d",
45
+ grayBlue6: "#7893b0"
44
46
  };
45
47
  export {
46
48
  a as p