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
@@ -1,8 +1,12 @@
1
- import { p as e } from "./palette-c2fe86ec.js";
2
- import { b as a } from "./const-53dff524.js";
3
- var t = /* @__PURE__ */ ((i) => (i.Header = "Header", i.Banner = "Banner", i.CardImageList = "CardImageList", i.Stepper = "Stepper", i.Segments = "Segments", i.Video = "VideoFull", i.VideoList = "VideoList", i.VideoListMini = "VideoListMini", i.ContentCardList = "ContentCardList", i.CardIconList = "CardIconList", i.MultiCards = "MultiCards", i.Partners = "Partners", i.PartnersColors = "PartnersColors", i.MainBanner = "MainBanner", i.WarningCard = "WarningCard", i.Faq = "Faq", i.DownloadFileBanner = "DownloadFileBanner", i.FileBannerSecondary = "FileBannerSecondary", i.DownloadFileFull = "DownloadFileFull", i.DownloadFileHalf = "DownloadFileHalf", i.DownloadFileMini = "DownloadFileMini", i.InstructionList = "InstructionList", i.PreviewList = "PreviewList", i.SwiperList = "SwiperList", i.AnimatedSwiper = "AnimatedSwiper", i.InfoBannerList = "InfoBannerList", i.TasksBannerList = "TasksBannerList", i.VideoMainBanner = "VideoMainBanner", i.EmptyBox = "EmptyBox", i.PromoPoster = "PromoPoster", i.CardImageSecondaryList = "CardImageSecondaryList", i.CardInfoTable = "CardInfoTable", i.StandartTable = "StandartTable", i.IntroBanner = "IntroBanner", i.DownloadFileBright = "DownloadFileBright", i.Footer = "Footer", i.TitleBlock = "TitleBlock", i.ActionCard = "ActionCard", i.ActionIconList = "ActionIconList", i))(t || {});
4
- const s = {
5
- key: t.Banner,
1
+ import { ActionSecondaryCardVariant as a } from "./Cards/ActionSecondaryCard/types.js";
2
+ import { InfoCardVariant as l } from "./Cards/InfoCard/types.js";
3
+ import { PostCardVariant as o } from "./Cards/PostCard/types.js";
4
+ import { CurrencyRatesVariant as r } from "./CurrencyRates/types.js";
5
+ import { p as t } from "./palette-256cf77a.js";
6
+ import { b as i } from "./const-53dff524.js";
7
+ import { C as e } from "./types-c3843cc0.js";
8
+ const _ = {
9
+ key: e.Banner,
6
10
  id: "1",
7
11
  component_props: {
8
12
  bg_image: "https://mbank.kg/media/market/Banner_bg.webp",
@@ -16,17 +20,17 @@ const s = {
16
20
  {
17
21
  title: "Начать",
18
22
  link: "/start",
19
- variant: a.Primary
23
+ variant: i.Primary
20
24
  },
21
25
  {
22
26
  title: "Узнать больше",
23
27
  link: "/learn-more",
24
- variant: a.Secondary
28
+ variant: i.Secondary
25
29
  }
26
30
  ]
27
31
  }
28
- }, r = {
29
- key: t.Banner,
32
+ }, u = {
33
+ key: e.Banner,
30
34
  id: "2",
31
35
  component_props: {
32
36
  bg_image: "https://mbank.kg/media/market/Banner_bg.webp",
@@ -44,12 +48,12 @@ const s = {
44
48
  button: {
45
49
  text: "Узнать больше",
46
50
  link: "/learn-more",
47
- variant: a.Secondary
51
+ variant: i.Secondary
48
52
  }
49
53
  }
50
54
  }
51
- }, o = {
52
- key: t.CardImageList,
55
+ }, h = {
56
+ key: e.CardImageList,
53
57
  id: "3",
54
58
  component_props: {
55
59
  cards: [
@@ -70,19 +74,19 @@ const s = {
70
74
  {
71
75
  text: "button",
72
76
  link: "#",
73
- variant: a.Primary
77
+ variant: i.Primary
74
78
  }
75
79
  ]
76
80
  }
77
- }, m = {
78
- key: t.Stepper,
81
+ }, y = {
82
+ key: e.Stepper,
79
83
  id: "4",
80
84
  component_props: {
81
85
  title: "Stepper",
82
86
  button: {
83
87
  title: "Кнопка",
84
88
  link: "#",
85
- variant: a.Primary
89
+ variant: i.Primary
86
90
  },
87
91
  data: [
88
92
  {
@@ -94,8 +98,8 @@ const s = {
94
98
  { text: "Выберите товар, который Вы хотите взять в рассрочку", id: 3 }
95
99
  ]
96
100
  }
97
- }, d = {
98
- key: t.Segments,
101
+ }, f = {
102
+ key: e.Segments,
99
103
  id: "5",
100
104
  component_props: {
101
105
  data: [
@@ -103,8 +107,8 @@ const s = {
103
107
  { title: "Segment 2", id: 2 }
104
108
  ]
105
109
  }
106
- }, p = {
107
- key: t.Video,
110
+ }, v = {
111
+ key: e.Video,
108
112
  id: "6",
109
113
  component_props: {
110
114
  data: {
@@ -112,8 +116,8 @@ const s = {
112
116
  title: "Заголовок1"
113
117
  }
114
118
  }
115
- }, g = {
116
- key: t.VideoList,
119
+ }, F = {
120
+ key: e.VideoList,
117
121
  id: "7",
118
122
  component_props: {
119
123
  data: [
@@ -127,8 +131,8 @@ const s = {
127
131
  }
128
132
  ]
129
133
  }
130
- }, c = {
131
- key: t.VideoListMini,
134
+ }, D = {
135
+ key: e.VideoListMini,
132
136
  id: "8",
133
137
  component_props: {
134
138
  data: [
@@ -146,8 +150,8 @@ const s = {
146
150
  }
147
151
  ]
148
152
  }
149
- }, k = {
150
- key: t.ContentCardList,
153
+ }, w = {
154
+ key: e.ContentCardList,
151
155
  id: "9",
152
156
  component_props: {
153
157
  title: "Content Card List",
@@ -166,7 +170,7 @@ const s = {
166
170
  button: {
167
171
  title: "button",
168
172
  link: "#",
169
- variant: a.Primary
173
+ variant: i.Primary
170
174
  }
171
175
  },
172
176
  {
@@ -184,7 +188,7 @@ const s = {
184
188
  {
185
189
  title: "button",
186
190
  link: "#",
187
- variant: a.Primary
191
+ variant: i.Primary
188
192
  }
189
193
  ]
190
194
  },
@@ -203,14 +207,14 @@ const s = {
203
207
  {
204
208
  title: "button",
205
209
  link: "#",
206
- variant: a.Primary
210
+ variant: i.Primary
207
211
  }
208
212
  ]
209
213
  }
210
214
  ]
211
215
  }
212
- }, _ = {
213
- key: t.Partners,
216
+ }, x = {
217
+ key: e.Partners,
214
218
  id: "10",
215
219
  component_props: {
216
220
  data: {
@@ -260,8 +264,8 @@ const s = {
260
264
  ]
261
265
  }
262
266
  }
263
- }, b = {
264
- key: t.CardIconList,
267
+ }, B = {
268
+ key: e.CardIconList,
265
269
  id: "11",
266
270
  component_props: {
267
271
  title: "Card Icon List",
@@ -305,8 +309,8 @@ const s = {
305
309
  ],
306
310
  size: "medium"
307
311
  }
308
- }, u = {
309
- key: t.CardIconList,
312
+ }, q = {
313
+ key: e.CardIconList,
310
314
  id: "12",
311
315
  component_props: {
312
316
  title: "Card Icon List",
@@ -323,12 +327,12 @@ const s = {
323
327
  is_promo: !1,
324
328
  is_yellow: !1,
325
329
  badge: "Promo",
326
- badge_bg_hex: e.white,
327
- bg_hex: e.yellowLight,
330
+ badge_bg_hex: t.white,
331
+ bg_hex: t.yellowLight,
328
332
  button_link: "/",
329
333
  button_text: "string",
330
334
  button_type: "button",
331
- button_variant: a.Static
335
+ button_variant: i.Static
332
336
  },
333
337
  {
334
338
  id: 2,
@@ -342,7 +346,7 @@ const s = {
342
346
  is_promo: !0,
343
347
  is_yellow: !1,
344
348
  badge: "Promo",
345
- badge_bg_hex: e.yellowLight,
349
+ badge_bg_hex: t.yellowLight,
346
350
  button_link: "/",
347
351
  button_text: "string",
348
352
  button_type: "button",
@@ -367,8 +371,8 @@ const s = {
367
371
  ],
368
372
  size: "large"
369
373
  }
370
- }, h = {
371
- key: t.MultiCards,
374
+ }, C = {
375
+ key: e.MultiCards,
372
376
  id: "13",
373
377
  component_props: {
374
378
  title: "Multi Card List",
@@ -421,8 +425,8 @@ const s = {
421
425
  is_banner_first: !0,
422
426
  is_cards_first: !0
423
427
  }
424
- }, y = {
425
- key: t.PartnersColors,
428
+ }, S = {
429
+ key: e.PartnersColors,
426
430
  id: "14",
427
431
  component_props: {
428
432
  title: "С нами сотрудничают одни из самых крупных брендов",
@@ -658,8 +662,8 @@ const s = {
658
662
  }
659
663
  ]
660
664
  }
661
- }, F = {
662
- key: t.MainBanner,
665
+ }, T = {
666
+ key: e.MainBanner,
663
667
  id: "15",
664
668
  component_props: {
665
669
  id: 1,
@@ -682,8 +686,8 @@ const s = {
682
686
  logo: "https://mbank.kg/media/market/item-hero-image-logos.svg",
683
687
  grid: 2
684
688
  }
685
- }, w = {
686
- key: t.WarningCard,
689
+ }, M = {
690
+ key: e.WarningCard,
687
691
  id: "16",
688
692
  component_props: {
689
693
  title: "Test",
@@ -691,8 +695,8 @@ const s = {
691
695
  button_text: "button text",
692
696
  variant: "orange"
693
697
  }
694
- }, D = {
695
- key: t.WarningCard,
698
+ }, A = {
699
+ key: e.WarningCard,
696
700
  id: "17",
697
701
  component_props: {
698
702
  title: "Test",
@@ -700,8 +704,8 @@ const s = {
700
704
  button_text: "button text",
701
705
  variant: "gray"
702
706
  }
703
- }, v = {
704
- key: t.WarningCard,
707
+ }, I = {
708
+ key: e.WarningCard,
705
709
  id: "18",
706
710
  component_props: {
707
711
  title: "Test",
@@ -709,8 +713,8 @@ const s = {
709
713
  button_text: "button text",
710
714
  variant: "black"
711
715
  }
712
- }, B = {
713
- key: t.Faq,
716
+ }, L = {
717
+ key: e.Faq,
714
718
  id: "19",
715
719
  component_props: {
716
720
  title: "Часто задаваемые вопросы",
@@ -729,8 +733,8 @@ const s = {
729
733
  }
730
734
  ]
731
735
  }
732
- }, f = {
733
- key: t.DownloadFileHalf,
736
+ }, V = {
737
+ key: e.DownloadFileHalf,
734
738
  id: "20",
735
739
  component_props: {
736
740
  data: [
@@ -748,8 +752,8 @@ const s = {
748
752
  }
749
753
  ]
750
754
  }
751
- }, x = {
752
- key: t.DownloadFileBanner,
755
+ }, N = {
756
+ key: e.DownloadFileBanner,
753
757
  id: "21",
754
758
  component_props: {
755
759
  id: "1",
@@ -758,9 +762,9 @@ const s = {
758
762
  link: "#"
759
763
  }
760
764
  };
761
- t.FileBannerSecondary;
762
- const q = {
763
- key: t.DownloadFileFull,
765
+ e.FileBannerSecondary;
766
+ const P = {
767
+ key: e.DownloadFileFull,
764
768
  id: "22",
765
769
  component_props: {
766
770
  data: [
@@ -784,8 +788,8 @@ const q = {
784
788
  }
785
789
  ]
786
790
  }
787
- }, M = {
788
- key: t.DownloadFileMini,
791
+ }, E = {
792
+ key: e.DownloadFileMini,
789
793
  id: "23",
790
794
  component_props: {
791
795
  data: [
@@ -815,8 +819,8 @@ const q = {
815
819
  }
816
820
  ]
817
821
  }
818
- }, L = {
819
- key: t.InstructionList,
822
+ }, U = {
823
+ key: e.InstructionList,
820
824
  id: "24",
821
825
  component_props: {
822
826
  title: "Hero stepper screen",
@@ -851,8 +855,8 @@ const q = {
851
855
  link: "https://www.youtube.com/"
852
856
  }
853
857
  }
854
- }, S = {
855
- key: t.PreviewList,
858
+ }, K = {
859
+ key: e.PreviewList,
856
860
  id: "25",
857
861
  component_props: {
858
862
  title: "Hero blog",
@@ -880,8 +884,8 @@ const q = {
880
884
  ],
881
885
  grid: 2
882
886
  }
883
- }, I = {
884
- key: t.SwiperList,
887
+ }, G = {
888
+ key: e.SwiperList,
885
889
  id: "26",
886
890
  component_props: {
887
891
  title: "Hero Gallery",
@@ -946,8 +950,8 @@ const q = {
946
950
  autoplayDelay: 2e3,
947
951
  perViewScreens: 4
948
952
  }
949
- }, A = {
950
- key: t.AnimatedSwiper,
953
+ }, R = {
954
+ key: e.AnimatedSwiper,
951
955
  id: "27",
952
956
  component_props: {
953
957
  title: "Анимированный свайпер",
@@ -1042,8 +1046,8 @@ const q = {
1042
1046
  isLight: !1,
1043
1047
  isButton: !1
1044
1048
  }
1045
- }, V = {
1046
- key: t.InfoBannerList,
1049
+ }, H = {
1050
+ key: e.InfoBannerList,
1047
1051
  id: "28",
1048
1052
  component_props: {
1049
1053
  title: "Премиальная карта для самых первых",
@@ -1130,8 +1134,8 @@ const q = {
1130
1134
  isLight: !1,
1131
1135
  isLightTitle: !1
1132
1136
  }
1133
- }, T = {
1134
- key: t.TasksBannerList,
1137
+ }, z = {
1138
+ key: e.TasksBannerList,
1135
1139
  id: "29",
1136
1140
  component_props: {
1137
1141
  title: "Задачи",
@@ -1211,8 +1215,8 @@ const q = {
1211
1215
  }
1212
1216
  ]
1213
1217
  }
1214
- }, P = {
1215
- key: t.VideoMainBanner,
1218
+ }, J = {
1219
+ key: e.VideoMainBanner,
1216
1220
  id: "30",
1217
1221
  component_props: {
1218
1222
  title: "Марафон призов от MBANK",
@@ -1237,14 +1241,14 @@ const q = {
1237
1241
  grid: 2,
1238
1242
  isShadow: !0
1239
1243
  }
1240
- }, N = {
1241
- key: t.EmptyBox,
1244
+ }, Q = {
1245
+ key: e.EmptyBox,
1242
1246
  id: "31",
1243
1247
  component_props: {
1244
1248
  size: "100"
1245
1249
  }
1246
- }, C = {
1247
- key: t.PromoPoster,
1250
+ }, Y = {
1251
+ key: e.PromoPoster,
1248
1252
  id: "32",
1249
1253
  component_props: {
1250
1254
  id: 1,
@@ -1269,8 +1273,8 @@ const q = {
1269
1273
  }
1270
1274
  ]
1271
1275
  }
1272
- }, E = {
1273
- key: t.CardImageSecondaryList,
1276
+ }, Z = {
1277
+ key: e.CardImageSecondaryList,
1274
1278
  id: "33",
1275
1279
  component_props: {
1276
1280
  title: "На какие цели можно получить финансирование?",
@@ -1299,8 +1303,8 @@ const q = {
1299
1303
  ],
1300
1304
  isHorizontal: !1
1301
1305
  }
1302
- }, G = {
1303
- key: t.CardInfoTable,
1306
+ }, j = {
1307
+ key: e.CardInfoTable,
1304
1308
  id: "34",
1305
1309
  component_props: {
1306
1310
  title: "Условия финансирования",
@@ -1406,8 +1410,8 @@ const q = {
1406
1410
  }
1407
1411
  ]
1408
1412
  }
1409
- }, U = {
1410
- key: t.StandartTable,
1413
+ }, W = {
1414
+ key: e.StandartTable,
1411
1415
  id: "35",
1412
1416
  component_props: {
1413
1417
  title: "Ознакомьтесь с условиями",
@@ -1655,8 +1659,8 @@ const q = {
1655
1659
  }
1656
1660
  ]
1657
1661
  }
1658
- }, H = {
1659
- key: t.IntroBanner,
1662
+ }, $ = {
1663
+ key: e.IntroBanner,
1660
1664
  id: "36",
1661
1665
  component_props: {
1662
1666
  title: "Откройте путь в Барселону с Visa и MBANK!",
@@ -1670,8 +1674,8 @@ const q = {
1670
1674
  logo: "https://mbank.kg/media/standard/logo/Vector_1.svg",
1671
1675
  logo_second: "https://mbank.kg/media/standard/logo_second/mbank_logo_full_tNoEfG4.svg"
1672
1676
  }
1673
- }, R = {
1674
- key: t.DownloadFileBright,
1677
+ }, O = {
1678
+ key: e.DownloadFileBright,
1675
1679
  id: "37",
1676
1680
  component_props: {
1677
1681
  id: 1,
@@ -1682,54 +1686,402 @@ const q = {
1682
1686
  button_link: "https://mbank.kg/media/documents/%D0%9F%D1%80%D0%B8%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5_1_%D0%9F%D1%80%D0%B0%D0%B2%D0%B8%D0%BB%D0%B0_%D0%B0%D0%BA%D1%86%D0%B8%D0%B8__C%D0%BE%D0%B2%D0%B5%D1%80%D1%88%D0%B0%D0%B9_%D0%BE%D0%BF%D0%B5%D1%80%D0%B0%D1%86%D0%B8%D0%B8-%D0%BE%D1%82%D0%BA%D1%80%D0%BE%D0%B9_%D0%BF%D1%83%D1%82%D1%8C_%D0%B2_%D0%91%D0%B0%D1%80%D1%81%D0%B5%D0%BB%D0%BE%D0%BD%D1%83__%D0%A4%D0%98%D0%9D%D0%90%D0%9B_YZc1tmj.pdf"
1683
1687
  }
1684
1688
  };
1685
- t.Header;
1686
- t.Footer;
1687
- const Q = {
1688
- key: t.TitleBlock,
1689
+ e.Header;
1690
+ e.Footer;
1691
+ const X = {
1692
+ key: e.TitleBlock,
1689
1693
  id: "40",
1690
1694
  component_props: {
1691
1695
  title: "TitleBlockData",
1692
1696
  description: "DescriptionTitleBlockData"
1693
1697
  }
1694
1698
  };
1695
- t.ActionIconList, e.white, e.blackBG, e.graySoft, e.greenLight, e.white, a.Primary, e.white, e.blackBG, e.graySoft, e.greenLight, e.white, a.Primary, e.white, e.blackBG, e.graySoft, e.greenLight, e.white, a.Primary;
1699
+ e.ActionIconList, t.white, t.blackBG, t.graySoft, t.greenLight, t.white, i.Primary, t.white, t.blackBG, t.graySoft, t.greenLight, t.white, i.Primary, t.white, t.blackBG, t.graySoft, t.greenLight, t.white, i.Primary;
1700
+ const ee = {
1701
+ key: e.ButtonsList,
1702
+ id: "42",
1703
+ component_props: {
1704
+ gap: 4,
1705
+ buttons: [
1706
+ {
1707
+ title: "Начать",
1708
+ link: "/start",
1709
+ variant: i.Primary
1710
+ },
1711
+ {
1712
+ title: "Узнать больше",
1713
+ link: "/learn-more",
1714
+ variant: i.Secondary
1715
+ }
1716
+ ]
1717
+ }
1718
+ }, te = {
1719
+ key: e.IconList,
1720
+ id: "43",
1721
+ component_props: {
1722
+ items: [
1723
+ {
1724
+ title: "Icon 1",
1725
+ icon: "https://mbank.kg/media/logo/mprofi.svg",
1726
+ action: {
1727
+ link: "#"
1728
+ }
1729
+ },
1730
+ {
1731
+ title: "Icon 2",
1732
+ icon: "https://mbank.kg/media/logo/mcafe.svg",
1733
+ action: {
1734
+ link: "#"
1735
+ }
1736
+ }
1737
+ ]
1738
+ }
1739
+ }, ie = {
1740
+ key: e.HeroIconsBanner,
1741
+ id: "44",
1742
+ component_props: {
1743
+ title: "Hero Banner",
1744
+ description: "Hero Banner Description",
1745
+ background_image: "https://mbank.kg/media/market/Banner_bg.webp",
1746
+ buttons: [
1747
+ {
1748
+ title: "Banner Button",
1749
+ link: "#",
1750
+ variant: i.Primary
1751
+ }
1752
+ ],
1753
+ icon_list: [
1754
+ {
1755
+ title: "Banner Icon",
1756
+ icon: "https://mbank.kg/media/logo/mprofi.svg",
1757
+ action: {
1758
+ link: "#"
1759
+ }
1760
+ }
1761
+ ]
1762
+ }
1763
+ }, ne = {
1764
+ key: e.SearchBlock,
1765
+ id: "45",
1766
+ component_props: {
1767
+ title: "Как мы можем вам помочь?",
1768
+ placeholder: "Поиск по услугам",
1769
+ tags: [
1770
+ { label: "Переводы", action: "/transfers" },
1771
+ { label: "Кредиты", action: "/credits" },
1772
+ { label: "Штрафы", action: "/fines" }
1773
+ ]
1774
+ }
1775
+ }, ae = {
1776
+ key: e.SegmentsIcons,
1777
+ id: "46",
1778
+ component_props: {
1779
+ data: [
1780
+ {
1781
+ title: "MTravel",
1782
+ icon: "/mtravel.svg",
1783
+ activeColor: "linear-gradient(90deg, #3DC5F4 0%, #2AB5F6 100%)"
1784
+ },
1785
+ {
1786
+ title: "GovServices",
1787
+ icon: "https://cdn-icons-png.flaticon.com/512/9206/9206685.png",
1788
+ activeColor: "linear-gradient(90deg, #E62E6B 0%, #FF2F7C 100%)"
1789
+ },
1790
+ {
1791
+ title: "MCinema",
1792
+ icon: "https://cdn-icons-png.flaticon.com/512/2798/2798007.png",
1793
+ activeColor: "linear-gradient(90deg, #FF7A00 0%, #FF5C00 100%)"
1794
+ },
1795
+ {
1796
+ title: "MShop",
1797
+ icon: "https://cdn-icons-png.flaticon.com/512/3652/3652191.png",
1798
+ activeColor: "linear-gradient(90deg, #009C4D 0%, #007E8B 100%)"
1799
+ },
1800
+ {
1801
+ title: "MInvest",
1802
+ icon: "https://cdn-icons-png.flaticon.com/512/3313/3313361.png",
1803
+ activeColor: "linear-gradient(90deg, #AB74F8 0%, #875CF6 100%)"
1804
+ },
1805
+ {
1806
+ title: "MProfi",
1807
+ icon: "https://cdn-icons-png.flaticon.com/512/3652/3652191.png",
1808
+ activeColor: "linear-gradient(90deg, #FF7A00 0%, #FF5C00 100%)"
1809
+ }
1810
+ ]
1811
+ }
1812
+ }, le = {
1813
+ key: e.SegmentedContent,
1814
+ id: "47",
1815
+ component_props: {
1816
+ title: "Сервисы экосистемы",
1817
+ items: [
1818
+ {
1819
+ segment: {
1820
+ title: "MTravel",
1821
+ icon: "https://cdn-icons-png.flaticon.com/512/2200/2200326.png",
1822
+ // самолет
1823
+ activeColor: "linear-gradient(90deg, #3DC5F4 0%, #2AB5F6 100%)"
1824
+ },
1825
+ content: {
1826
+ left_card: {
1827
+ title: "В любую точку мира — быстро, удобно и с выгодой",
1828
+ description: "Путешествуйте легко и выгодно вместе с нашим сервисом.",
1829
+ image: "https://cdn-icons-png.flaticon.com/512/854/854894.png"
1830
+ },
1831
+ right_card: {
1832
+ title: "Захватывающие экскурсии",
1833
+ description: "Откройте новые места и впечатления с уникальными турами.",
1834
+ image: "https://cdn-icons-png.flaticon.com/512/3268/3268412.png"
1835
+ },
1836
+ button: {
1837
+ text: "Начать путешествовать",
1838
+ actions: {
1839
+ link: {
1840
+ link: "#",
1841
+ target: "_blank"
1842
+ }
1843
+ }
1844
+ }
1845
+ }
1846
+ },
1847
+ {
1848
+ segment: {
1849
+ title: "MMarket",
1850
+ icon: "https://cdn-icons-png.flaticon.com/512/3081/3081559.png",
1851
+ // магазин
1852
+ activeColor: "linear-gradient(90deg, #009C4D 0%, #007E8B 100%)"
1853
+ },
1854
+ content: {
1855
+ left_card: {
1856
+ title: "Выгодные покупки каждый день",
1857
+ description: "Широкий ассортимент товаров с кэшбэком и скидками.",
1858
+ image: "https://cdn-icons-png.flaticon.com/512/1170/1170576.png"
1859
+ },
1860
+ right_card: {
1861
+ title: "Быстрая доставка",
1862
+ description: "Получайте заказы день в день с нашей курьерской службой.",
1863
+ image: "https://cdn-icons-png.flaticon.com/512/2830/2830305.png"
1864
+ },
1865
+ button: {
1866
+ text: "Перейти в магазин",
1867
+ actions: {
1868
+ link: {
1869
+ link: "#",
1870
+ target: "_blank"
1871
+ }
1872
+ }
1873
+ }
1874
+ }
1875
+ },
1876
+ {
1877
+ segment: {
1878
+ title: "MInvest",
1879
+ icon: "https://cdn-icons-png.flaticon.com/512/2331/2331943.png",
1880
+ // инвестиции
1881
+ activeColor: "linear-gradient(90deg, #FFD700 0%, #FF8C00 100%)"
1882
+ },
1883
+ content: {
1884
+ left_card: {
1885
+ title: "Инвестиции для каждого",
1886
+ description: "Простые и понятные инструменты для роста вашего капитала.",
1887
+ image: "https://cdn-icons-png.flaticon.com/512/3135/3135715.png"
1888
+ },
1889
+ right_card: {
1890
+ title: "Советы экспертов",
1891
+ description: "Получайте рекомендации от профессионалов рынка.",
1892
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046784.png"
1893
+ },
1894
+ button: {
1895
+ text: "Начать инвестировать",
1896
+ actions: {
1897
+ link: {
1898
+ link: "#",
1899
+ target: "_blank"
1900
+ }
1901
+ }
1902
+ }
1903
+ }
1904
+ },
1905
+ {
1906
+ segment: {
1907
+ title: "MProfi",
1908
+ icon: "https://cdn-icons-png.flaticon.com/512/3135/3135810.png",
1909
+ // обучение
1910
+ activeColor: "linear-gradient(90deg, #8A2BE2 0%, #4B0082 100%)"
1911
+ },
1912
+ content: {
1913
+ left_card: {
1914
+ title: "Развитие профессиональных навыков",
1915
+ description: "Онлайн‑курсы и тренинги для карьерного роста.",
1916
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046786.png"
1917
+ },
1918
+ right_card: {
1919
+ title: "Сертификация",
1920
+ description: "Получайте официальные сертификаты и повышайте квалификацию.",
1921
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046790.png"
1922
+ },
1923
+ button: {
1924
+ text: "Учиться сейчас",
1925
+ actions: {
1926
+ link: {
1927
+ link: "#",
1928
+ target: "_blank"
1929
+ }
1930
+ }
1931
+ }
1932
+ }
1933
+ },
1934
+ {
1935
+ segment: {
1936
+ title: "MCafe",
1937
+ icon: "https://cdn-icons-png.flaticon.com/512/1046/1046784.png",
1938
+ // кофе
1939
+ activeColor: "linear-gradient(90deg, #FF6F61 0%, #FFB347 100%)"
1940
+ },
1941
+ content: {
1942
+ left_card: {
1943
+ title: "Лучшие напитки и десерты",
1944
+ description: "Наслаждайтесь ароматным кофе и свежей выпечкой.",
1945
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046786.png"
1946
+ },
1947
+ right_card: {
1948
+ title: "Уютная атмосфера",
1949
+ description: "Идеальное место для встреч и отдыха.",
1950
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046790.png"
1951
+ },
1952
+ button: {
1953
+ text: "Забронировать столик",
1954
+ actions: {
1955
+ link: {
1956
+ link: "#",
1957
+ target: "_blank"
1958
+ }
1959
+ }
1960
+ }
1961
+ }
1962
+ },
1963
+ {
1964
+ segment: {
1965
+ title: "MTicket",
1966
+ icon: "https://cdn-icons-png.flaticon.com/512/1046/1046792.png",
1967
+ activeColor: "linear-gradient(90deg, #FF1493 0%, #FF69B4 100%)"
1968
+ },
1969
+ content: {
1970
+ left_card: {
1971
+ title: "Билеты на любые события",
1972
+ description: "Концерты, театры, спорт — всё в одном месте.",
1973
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046790.png"
1974
+ },
1975
+ right_card: {
1976
+ title: "Удобная покупка онлайн",
1977
+ description: "Покупайте билеты быстро и безопасно.",
1978
+ image: "https://cdn-icons-png.flaticon.com/512/1046/1046792.png"
1979
+ },
1980
+ button: {
1981
+ text: "Купить билет",
1982
+ actions: {
1983
+ link: {
1984
+ link: "#",
1985
+ target: "_blank"
1986
+ }
1987
+ }
1988
+ }
1989
+ }
1990
+ }
1991
+ ]
1992
+ }
1993
+ }, oe = {
1994
+ key: e.InfoCardList,
1995
+ id: "48",
1996
+ component_props: {
1997
+ title: "Премиальные карты",
1998
+ description: "Выберите карту, которая подходит именно вам",
1999
+ variant: l.SECONDARY,
2000
+ grid: "3",
2001
+ cards: [
2002
+ {
2003
+ title: "Premium карта",
2004
+ description: "Высшая категория сегмента премиальных карт VISA",
2005
+ image: "https://mbank.kg/constructor-media/components/files/imageCont_2.webp",
2006
+ attributes: [
2007
+ { id: 1, label: "Валюта", value: "KGS / USD / EUR" },
2008
+ { id: 2, label: "Ежемесячное обслуживание", value: "1900 сом" },
2009
+ { id: 3, label: "Выпуск", value: "Бесплатный" }
2010
+ ]
2011
+ },
2012
+ {
2013
+ title: "Visa Infinite",
2014
+ description: "Высшая категория сегмента премиальных карт VISA",
2015
+ image: "https://mbank.kg/constructor-media/components/files/gkfytnf_ESL8vzY.webp",
2016
+ attributes: [
2017
+ { id: 1, label: "Валюта", value: "KGS / USD / EUR" },
2018
+ { id: 2, label: "Ежемесячное обслуживание", value: "1900 сом" },
2019
+ { id: 3, label: "Выпуск", value: "Бесплатный" }
2020
+ ]
2021
+ },
2022
+ {
2023
+ title: "MBANK Premium",
2024
+ description: "Высшая категория сегмента премиальных карт VISA",
2025
+ image: "https://mbank.kg/constructor-media/components/files/imageCont_3.webp",
2026
+ attributes: [
2027
+ { id: 1, label: "Валюта", value: "KGS / USD / EUR" },
2028
+ { id: 2, label: "Ежемесячное обслуживание", value: "1900 сом" },
2029
+ { id: 3, label: "Выпуск", value: "Бесплатный" }
2030
+ ]
2031
+ }
2032
+ ]
2033
+ }
2034
+ };
2035
+ e.CurrencyRates, r.SECONDARY;
2036
+ e.ActionCardSecondaryList, a.SECONDARY;
2037
+ o.SECONDARY;
2038
+ e.FormDefault;
2039
+ e.FormDefault;
2040
+ e.FormDefault;
1696
2041
  export {
1697
- A,
1698
- s as B,
1699
- o as C,
1700
- f as D,
1701
- N as E,
1702
- B as F,
1703
- L as I,
1704
- F as M,
1705
- _ as P,
1706
- m as S,
1707
- T,
1708
- p as V,
1709
- w as W,
1710
- r as a,
1711
- d as b,
1712
- g as c,
1713
- c as d,
1714
- k as e,
1715
- b as f,
1716
- h as g,
1717
- y as h,
1718
- D as i,
1719
- v as j,
1720
- x as k,
1721
- q as l,
1722
- M as m,
1723
- u as n,
1724
- S as o,
1725
- I as p,
1726
- V as q,
1727
- P as r,
1728
- C as s,
1729
- E as t,
1730
- G as u,
1731
- U as v,
1732
- H as w,
1733
- R as x,
1734
- Q as y
2042
+ R as A,
2043
+ _ as B,
2044
+ h as C,
2045
+ V as D,
2046
+ Q as E,
2047
+ L as F,
2048
+ te as G,
2049
+ ie as H,
2050
+ U as I,
2051
+ ne as J,
2052
+ ae as K,
2053
+ le as L,
2054
+ T as M,
2055
+ oe as N,
2056
+ x as P,
2057
+ y as S,
2058
+ z as T,
2059
+ v as V,
2060
+ M as W,
2061
+ u as a,
2062
+ f as b,
2063
+ F as c,
2064
+ D as d,
2065
+ w as e,
2066
+ B as f,
2067
+ C as g,
2068
+ S as h,
2069
+ A as i,
2070
+ I as j,
2071
+ N as k,
2072
+ P as l,
2073
+ E as m,
2074
+ q as n,
2075
+ K as o,
2076
+ G as p,
2077
+ H as q,
2078
+ J as r,
2079
+ Y as s,
2080
+ Z as t,
2081
+ j as u,
2082
+ W as v,
2083
+ $ as w,
2084
+ O as x,
2085
+ X as y,
2086
+ ee as z
1735
2087
  };