@bytebrand/fe-ui-core 4.2.71 → 4.2.72

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 (1055) hide show
  1. package/.editorconfig +10 -10
  2. package/.storybook/addons.js +4 -4
  3. package/.storybook/config.js +64 -64
  4. package/.storybook/postcss.config.js +6 -6
  5. package/.storybook/preview-head.html +9 -9
  6. package/.storybook/webpack.config.js +130 -130
  7. package/__tests__/components/Checkout/PaymentTypeCard/PaymentTypeCard.test.tsx +49 -49
  8. package/__tests__/components/UserDasboardPage/sections/OrderStatusSection/AdditionalOrderInfo.test.tsx +127 -127
  9. package/__tests__/components/UserDasboardPage/sections/OrderStatusSection/OrderStatusCar.test.tsx +58 -58
  10. package/__tests__/components/UserDasboardPage/sections/OrderStatusSection/OrderStatusCard.test.tsx +74 -74
  11. package/__tests__/components/UserDasboardPage/sections/OrderStatusSection/OrderStatusSection.test.tsx +62 -62
  12. package/__tests__/components/UserDasboardPage/sections/RequestedCarsSection/RequestedCarsSection.test.tsx +116 -116
  13. package/__tests__/components/Vehicle/VehicleFormattedPrice/VehicleFormattedPrice.test.tsx +58 -58
  14. package/__tests__/components/VehicleSmallCard/VehicleInfo.test.tsx +87 -87
  15. package/__tests__/components/VehicleSmallCard/VehicleTitle.test.tsx +90 -90
  16. package/__tests__/components/_common/Badge/Badge.test.tsx +15 -15
  17. package/__tests__/components/_common/IconSVG/IconSVG.test.tsx +22 -22
  18. package/__tests__/components/_common/Image/Image.test.tsx +82 -82
  19. package/__tests__/components/_common/MaterialAutocomplete/MaterialAutocomplete.test.tsx +48 -48
  20. package/__tests__/components/_common/MaterialField/MaterialField.test.tsx +58 -58
  21. package/__tests__/components/_common/StarButton/StarButton.test.tsx +45 -45
  22. package/__tests__/mockedData/financingConfig.js +201 -201
  23. package/__tests__/mockedData/mockedPendingRequestedCar.js +68 -68
  24. package/__tests__/utils/CommonUtils/addPrefixToKeys.test.ts +18 -18
  25. package/__tests__/utils/CommonUtils/arrToObj.test.js +32 -32
  26. package/__tests__/utils/CommonUtils/checkRangeValuesOnEqual.test.ts +16 -16
  27. package/__tests__/utils/CommonUtils/fixNumber.test.ts +19 -19
  28. package/__tests__/utils/CommonUtils/formatMileage.test.ts +8 -8
  29. package/__tests__/utils/CommonUtils/getChipFilterValue.test.ts +22 -22
  30. package/__tests__/utils/CommonUtils/getFormattedNumber.test.ts +18 -18
  31. package/__tests__/utils/CommonUtils/getFormattedPrice.test.ts +19 -19
  32. package/__tests__/utils/CommonUtils/getGroupValuesForQuery.test.ts +51 -51
  33. package/__tests__/utils/CommonUtils/getOfferSliders.test.ts +61 -61
  34. package/__tests__/utils/CommonUtils/getPriceRating.test.ts +26 -26
  35. package/__tests__/utils/CommonUtils/getPriceRatingConfig.test.ts +33 -33
  36. package/__tests__/utils/CommonUtils/preloadNearbyImages.test.ts +8 -8
  37. package/__tests__/utils/CommonUtils/sliceLessThan.test.ts +23 -23
  38. package/__tests__/utils/CommonUtils/sliceMoreThan.test.ts +23 -23
  39. package/common.ts +161 -162
  40. package/feWpComponents.ts +25 -25
  41. package/index.ts +4 -4
  42. package/jest.config.js +42 -42
  43. package/landing.ts +38 -38
  44. package/media/images/advantages/advantage_cart.svg +4 -4
  45. package/media/images/advantages/advantage_check.svg +4 -4
  46. package/media/images/advantages/advantage_like.svg +10 -10
  47. package/media/images/advantages/advantage_secure.svg +6 -6
  48. package/media/images/check-blue.svg +40 -40
  49. package/media/images/raiting-star.svg +3 -3
  50. package/media/images/raiting-stars-min.svg +7 -7
  51. package/media/images/refresh-button.svg +49 -49
  52. package/media/images/slider-arrow-big.svg +11 -11
  53. package/media/images/user-icon.svg +16 -16
  54. package/media/locales/de/promoSlider.json +25 -25
  55. package/media/locales/en/promoSlider.json +25 -25
  56. package/media/svg/common/arrow_breadcrumps.svg +3 -3
  57. package/media/svg/common/home.svg +8 -8
  58. package/media/svg/common/whyAutodeIconSet-F.svg +9 -9
  59. package/media/svg/common/whyAutodeIconSet-G.svg +8 -8
  60. package/media/svg/common/whyAutodeIconSet-Q.svg +6 -6
  61. package/media/svg/common/whyAutodeIconSet-R.svg +9 -9
  62. package/media/svg/infoBlocks/whyAutodeIconSet-F.svg +9 -9
  63. package/media/svg/infoBlocks/whyAutodeIconSet-G.svg +8 -8
  64. package/media/svg/infoBlocks/whyAutodeIconSet-Q.svg +6 -6
  65. package/media/svg/infoBlocks/whyAutodeIconSet-R.svg +9 -9
  66. package/media/svg/usp/icon1.svg +16 -16
  67. package/media/svg/usp/icon2.svg +13 -13
  68. package/media/svg/usp/icon3.svg +10 -10
  69. package/media/svg/usp/icon4.svg +14 -14
  70. package/package.json +123 -123
  71. package/profile.ts +1 -1
  72. package/setupTests.js +7 -7
  73. package/source/components/AccardionSection/AccardionSection.styl +45 -45
  74. package/source/components/AccardionSection/AccardionSection.tsx +47 -47
  75. package/source/components/AccordionWidget/AccordionWidget.styl +205 -205
  76. package/source/components/AccordionWidget/AccordionWidget.tsx +225 -225
  77. package/source/components/AdvantageItem/AdvantageItem.story.js +23 -23
  78. package/source/components/AdvantageItem/AdvantageItem.styl +47 -47
  79. package/source/components/AdvantageItem/AdvantageItem.tsx +26 -26
  80. package/source/components/Alternative/Dealer.story.js +31 -31
  81. package/source/components/Alternative/Dealer.story.styl +2 -2
  82. package/source/components/Alternative/DealerInfo.styl +116 -116
  83. package/source/components/Alternative/DealerInfo.tsx +171 -171
  84. package/source/components/Breadcrumbs/Breadcrumbs.story.js +40 -40
  85. package/source/components/Breadcrumbs/Breadcrumbs.styl +136 -136
  86. package/source/components/Breadcrumbs/Breadcrumbs.tsx +93 -93
  87. package/source/components/Breadcrumbs/FirstInfoBlock/FirstInfoBlock.story.js +45 -45
  88. package/source/components/Breadcrumbs/FirstInfoBlock/FirstInfoBlock.styl +54 -54
  89. package/source/components/Breadcrumbs/FirstInfoBlock/FirstInfoBlock.tsx +17 -17
  90. package/source/components/Checkout/CheckoutStepper/CheckoutStepper.styl +221 -221
  91. package/source/components/Checkout/CheckoutStepper/CheckoutStepper.tsx +70 -70
  92. package/source/components/Checkout/CheckoutStepper/CheckoutStepperClasses.js +173 -173
  93. package/source/components/Checkout/OrderOverviewItem/OrderOverviewItem.story.js +243 -243
  94. package/source/components/Checkout/OrderOverviewItem/OrderOverviewItem.story.styl +20 -20
  95. package/source/components/Checkout/OrderOverviewItem/OrderOverviewItem.styl +36 -36
  96. package/source/components/Checkout/OrderOverviewItem/OrderOverviewItem.tsx +53 -53
  97. package/source/components/Checkout/RadioCards/AdditionalServiceCard/ServiceCardWrapper.styl +201 -201
  98. package/source/components/Checkout/RadioCards/AdditionalServiceCard/ServiceCardWrapper.tsx +212 -212
  99. package/source/components/Checkout/RadioCards/ContentCard/AdditionalServiceContent.styl +30 -30
  100. package/source/components/Checkout/RadioCards/ContentCard/AdditionalServiceContent.tsx +62 -62
  101. package/source/components/Checkout/RadioCards/ContentCard/VehicleDeliveryContent.styl +73 -73
  102. package/source/components/Checkout/RadioCards/ContentCard/VehicleDeliveryContent.tsx +61 -61
  103. package/source/components/Checkout/RadioCards/PaymentTypeCard/PaymentTypeCard.styl +193 -193
  104. package/source/components/Checkout/RadioCards/PaymentTypeCard/PaymentTypeCard.tsx +181 -181
  105. package/source/components/Checkout/RadioCards/RadioCheckout.styl +158 -158
  106. package/source/components/Checkout/RadioCards/RadioCheckout.tsx +178 -178
  107. package/source/components/Checkout/RadioCards/RadioGroupCheckout.story.js +105 -105
  108. package/source/components/Checkout/RadioCards/RadioGroupCheckout.story.styl +37 -37
  109. package/source/components/Checkout/Switcher/Switcher.story.js +41 -41
  110. package/source/components/Checkout/Switcher/Switcher.story.styl +1 -1
  111. package/source/components/Checkout/Switcher/Switcher.styled.tsx +53 -53
  112. package/source/components/Checkout/Switcher/Switcher.tsx +48 -48
  113. package/source/components/CompactSearchWidget/CompactSearchFields/CompactSearchFields.styl +176 -176
  114. package/source/components/CompactSearchWidget/CompactSearchFields/CompactSearchFields.tsx +477 -477
  115. package/source/components/CompactSearchWidget/CompactSearchWidget.story.js +187 -187
  116. package/source/components/CompactSearchWidget/CompactSearchWidget.styl +43 -43
  117. package/source/components/CompactSearchWidget/CompactSearchWidget.tsx +165 -165
  118. package/source/components/ContactForm/ContactForm.story.js +93 -93
  119. package/source/components/ContactForm/ContactForm.styl +260 -260
  120. package/source/components/ContactForm/ContactForm.tsx +588 -588
  121. package/source/components/ContactForm/WpContactForm.tsx +287 -287
  122. package/source/components/ContactInfo/ContactInfo.story.js +58 -58
  123. package/source/components/ContactInfo/ContactInfo.styl +22 -22
  124. package/source/components/ContactInfo/ContactInfo.tsx +161 -161
  125. package/source/components/ContactInfo/TemporaryTranslation.ts +11 -11
  126. package/source/components/CustomerQuote/CustomerQuote.story.js +41 -41
  127. package/source/components/CustomerQuote/CustomerQuote.styl +79 -79
  128. package/source/components/CustomerQuote/CustomerQuote.tsx +68 -68
  129. package/source/components/CustomerQuotesSlider/CustomerQuotesSlider.story.js +73 -73
  130. package/source/components/CustomerQuotesSlider/CustomerQuotesSlider.story.styl +4 -4
  131. package/source/components/CustomerQuotesSlider/CustomerQuotesSlider.styl +46 -46
  132. package/source/components/CustomerQuotesSlider/CustomerQuotesSlider.tsx +79 -79
  133. package/source/components/CustomerQuotesSlider/SliderArrow.tsx +20 -20
  134. package/source/components/FormattedNumber/FormattedNumber.story.js +114 -114
  135. package/source/components/FormattedNumber/FormattedNumber.styl +1 -1
  136. package/source/components/FormattedNumber/FormattedNumber.tsx +91 -91
  137. package/source/components/ImageSettings/EditableOptionsTable/CustomCheckbox/CustomCheckbox.styl +7 -7
  138. package/source/components/ImageSettings/EditableOptionsTable/CustomCheckbox/CustomCheckbox.tsx +30 -30
  139. package/source/components/ImageSettings/EditableOptionsTable/EditableOptionsTable.styl +122 -122
  140. package/source/components/ImageSettings/EditableOptionsTable/EditableOptionsTable.tsx +199 -199
  141. package/source/components/ImageSettings/EditableOptionsTable/ImageIcon/ImageIcon.styl +3 -3
  142. package/source/components/ImageSettings/EditableOptionsTable/ImageIcon/ImageIcon.tsx +15 -15
  143. package/source/components/ImageSettings/OptionsTable/OptionsTable.styl +47 -47
  144. package/source/components/ImageSettings/OptionsTable/OptionsTable.tsx +122 -122
  145. package/source/components/ImageSettings/PricePlan/PricePlan.styl +63 -63
  146. package/source/components/ImageSettings/PricePlan/PricePlan.tsx +32 -32
  147. package/source/components/ImageSettings/index.ts +42 -42
  148. package/source/components/ImageSettings/story.js +1212 -1212
  149. package/source/components/InfoBlocks/FirstInfoBlock/FirstInfoBlock.styl +33 -33
  150. package/source/components/InfoBlocks/FirstInfoBlock/FirstInfoBlock.tsx +48 -48
  151. package/source/components/InfoBlocks/FirstInfoBlock/FirstInfoBlockItem/FirstInfoBlockItem.styl +68 -68
  152. package/source/components/InfoBlocks/FirstInfoBlock/FirstInfoBlockItem/FirstInfoBlockItem.tsx +21 -21
  153. package/source/components/InfoBlocks/InfoBlockWrapper/InfoBlockWrapper.styl +41 -41
  154. package/source/components/InfoBlocks/InfoBlockWrapper/InfoBlockWrapper.tsx +45 -45
  155. package/source/components/InfoBlocks/InfoBlockWrapper.story.js +101 -101
  156. package/source/components/InfoBlocks/InfoBlockWrapper.story.styl +45 -45
  157. package/source/components/InfoBlocks/PricingToolBlock/PricingTool.styl +6 -6
  158. package/source/components/InfoBlocks/PricingToolBlock/PricingTool.tsx +29 -29
  159. package/source/components/InfoBlocks/PricingToolBlock/PricingToolBlock.styl +45 -45
  160. package/source/components/InfoBlocks/PricingToolBlock/PricingToolBlock.tsx +81 -81
  161. package/source/components/InfoBlocks/ServicesBlock/ServiceBlockItem.styl +47 -47
  162. package/source/components/InfoBlocks/ServicesBlock/ServiceBlockItem.tsx +25 -25
  163. package/source/components/OfferDetailedSection/OfferDetailedSection.styl +31 -31
  164. package/source/components/OfferDetailedSection/OfferDetailedSection.tsx +100 -100
  165. package/source/components/OfferDetailedSection/partials/PanelConfig.styl +127 -127
  166. package/source/components/OfferDetailedSection/partials/PanelConfig.tsx +124 -124
  167. package/source/components/OfferPanel/AboAccordion/AboAccordion.styl +24 -24
  168. package/source/components/OfferPanel/AboAccordion/AboAccordion.tsx +128 -128
  169. package/source/components/OfferPanel/AboAccordion/AboColorOptions/AboColorOptions.styl +11 -11
  170. package/source/components/OfferPanel/AboAccordion/AboColorOptions/AboColorOptions.tsx +35 -35
  171. package/source/components/OfferPanel/AboAccordion/AboFaq/AboFaq.story.js +97 -97
  172. package/source/components/OfferPanel/AboAccordion/AboFaq/AboFaq.styl +20 -20
  173. package/source/components/OfferPanel/AboAccordion/AboFaq/AboFaq.tsx +25 -25
  174. package/source/components/OfferPanel/AboAccordion/AboIncludedServices/AboIncludedServices.styl +13 -13
  175. package/source/components/OfferPanel/AboAccordion/AboIncludedServices/AboIncludedServices.tsx +39 -39
  176. package/source/components/OfferPanel/MuiOfferPeriod/MuiOfferPeriod.theme.js +29 -29
  177. package/source/components/OfferPanel/MuiOfferPeriod/MuiOfferPeriod.tsx +49 -49
  178. package/source/components/OfferPanel/OfferCheckboxGroup/CheckboxContainer.tsx +146 -146
  179. package/source/components/OfferPanel/OfferCheckboxGroup/OfferCheckboxGroup.styl +122 -122
  180. package/source/components/OfferPanel/OfferCheckboxGroup/OfferCheckboxGroup.tsx +24 -24
  181. package/source/components/OfferPanel/OfferPanel.story.js +139 -139
  182. package/source/components/OfferPanel/OfferPanel.styl +192 -192
  183. package/source/components/OfferPanel/OfferPanel.tsx +81 -81
  184. package/source/components/OfferPanel/OfferPeriod/OfferPeriod.styl +24 -24
  185. package/source/components/OfferPanel/OfferPeriod/OfferPeriod.tsx +49 -49
  186. package/source/components/OfferPanel/RangeGroup/RangeGroup.story.js +35 -35
  187. package/source/components/OfferPanel/RangeGroup/RangeGroup.story.styl +2 -2
  188. package/source/components/OfferPanel/RangeGroup/RangeGroup.tsx +37 -37
  189. package/source/components/PriceRating/PriceRating.story.js +39 -39
  190. package/source/components/PriceRating/PriceRating.story.styl +1 -1
  191. package/source/components/PriceRating/PriceRating.styl +47 -47
  192. package/source/components/PriceRating/PriceRating.tsx +64 -64
  193. package/source/components/PriceRatingDetailed/PriceRatingDetailed.story.js +78 -78
  194. package/source/components/PriceRatingDetailed/PriceRatingDetailed.story.styl +11 -11
  195. package/source/components/PriceRatingDetailed/PriceRatingDetailed.styl +120 -120
  196. package/source/components/PriceRatingDetailed/PriceRatingDetailed.tsx +187 -187
  197. package/source/components/RateSearchValue/RateSearchValue.story.js +78 -78
  198. package/source/components/RateSearchValue/RateSearchValue.story.styl +1 -1
  199. package/source/components/RateSearchValue/RateSearchValue.styl +22 -22
  200. package/source/components/RateSearchValue/RateSearchValue.tsx +55 -55
  201. package/source/components/RateSearchWidget/RateSearchWidget.story.js +57 -57
  202. package/source/components/RateSearchWidget/RateSearchWidget.story.styl +12 -12
  203. package/source/components/RateSearchWidget/RateSearchWidget.styl +106 -106
  204. package/source/components/RateSearchWidget/RateSearchWidget.tsx +163 -163
  205. package/source/components/SearchFilters/FiltersFactory.story.js +273 -273
  206. package/source/components/SearchFilters/FiltersFactory.tsx +85 -85
  207. package/source/components/SearchFilters/Slider.styl +66 -66
  208. package/source/components/SearchFilters/common/Color/Color.styl +29 -29
  209. package/source/components/SearchFilters/common/Color/Color.tsx +60 -60
  210. package/source/components/SearchFilters/common/FilterBlock/FilterBlock.styl +39 -39
  211. package/source/components/SearchFilters/common/FilterBlock/FilterBlock.styled.tsx +28 -28
  212. package/source/components/SearchFilters/common/FilterBlock/FilterBlock.tsx +54 -54
  213. package/source/components/SearchFilters/common/FilterBlock/FilterBlockFactory.tsx +151 -151
  214. package/source/components/SearchFilters/common/RangeControlled/RangeControlled.tsx +155 -155
  215. package/source/components/SearchFilters/filters/AlternativeID.styl +98 -98
  216. package/source/components/SearchFilters/filters/AlternativeID.tsx +79 -79
  217. package/source/components/SearchFilters/filters/Consumption.styl +41 -41
  218. package/source/components/SearchFilters/filters/Consumption.tsx +52 -52
  219. package/source/components/SearchFilters/filters/Cost.styl +43 -43
  220. package/source/components/SearchFilters/filters/Cost.tsx +112 -112
  221. package/source/components/SearchFilters/filters/CubicCapacity.styl +30 -30
  222. package/source/components/SearchFilters/filters/CubicCapacity.tsx +134 -134
  223. package/source/components/SearchFilters/filters/Damaged.styl +1 -1
  224. package/source/components/SearchFilters/filters/Damaged.tsx +40 -40
  225. package/source/components/SearchFilters/filters/Doors.styl +18 -18
  226. package/source/components/SearchFilters/filters/Doors.tsx +113 -113
  227. package/source/components/SearchFilters/filters/DriveType.styl +22 -22
  228. package/source/components/SearchFilters/filters/DriveType.tsx +72 -72
  229. package/source/components/SearchFilters/filters/EmissionClass.tsx +35 -35
  230. package/source/components/SearchFilters/filters/EmissionSticker.styl +46 -46
  231. package/source/components/SearchFilters/filters/EmissionSticker.tsx +52 -52
  232. package/source/components/SearchFilters/filters/FirstRegistration.tsx +97 -97
  233. package/source/components/SearchFilters/filters/Fuel.styl +27 -27
  234. package/source/components/SearchFilters/filters/Fuel.tsx +75 -75
  235. package/source/components/SearchFilters/filters/Highlights.styl +38 -38
  236. package/source/components/SearchFilters/filters/Highlights.tsx +69 -69
  237. package/source/components/SearchFilters/filters/ImagesCount.tsx +66 -66
  238. package/source/components/SearchFilters/filters/InteriorColor.styl +29 -29
  239. package/source/components/SearchFilters/filters/InteriorColor.tsx +71 -71
  240. package/source/components/SearchFilters/filters/InteriorMaterial.styl +28 -28
  241. package/source/components/SearchFilters/filters/InteriorMaterial.tsx +71 -71
  242. package/source/components/SearchFilters/filters/MakeModel.styl +106 -106
  243. package/source/components/SearchFilters/filters/MakeModel.tsx +164 -164
  244. package/source/components/SearchFilters/filters/Mileage.tsx +108 -108
  245. package/source/components/SearchFilters/filters/OwnerID.styl +14 -14
  246. package/source/components/SearchFilters/filters/OwnerID.tsx +65 -65
  247. package/source/components/SearchFilters/filters/Owners.styl +23 -23
  248. package/source/components/SearchFilters/filters/Owners.tsx +72 -72
  249. package/source/components/SearchFilters/filters/Power.tsx +157 -157
  250. package/source/components/SearchFilters/filters/PriceDifference.tsx +67 -67
  251. package/source/components/SearchFilters/filters/Rate.styl +34 -34
  252. package/source/components/SearchFilters/filters/Rate.tsx +53 -53
  253. package/source/components/SearchFilters/filters/Seats.styl +31 -31
  254. package/source/components/SearchFilters/filters/Seats.tsx +53 -53
  255. package/source/components/SearchFilters/filters/StateOptions.styl +16 -16
  256. package/source/components/SearchFilters/filters/StateOptions.tsx +58 -58
  257. package/source/components/SearchFilters/filters/StateOptionsNew.styl +23 -23
  258. package/source/components/SearchFilters/filters/StateOptionsNew.tsx +72 -72
  259. package/source/components/SearchFilters/filters/Transmission.styl +20 -20
  260. package/source/components/SearchFilters/filters/Transmission.tsx +71 -71
  261. package/source/components/SearchFilters/filters/commonFilters.styl +93 -93
  262. package/source/components/SearchPage/ChipFilter/ChipFilter.styl +45 -45
  263. package/source/components/SearchPage/ChipFilter/ChipFilter.tsx +21 -21
  264. package/source/components/SearchPage/DropDown/DropDown.styl +99 -99
  265. package/source/components/SearchPage/DropDown/DropDown.tsx +52 -52
  266. package/source/components/SearchPage/DropDown/MultiDropDown.tsx +84 -84
  267. package/source/components/SearchPage/DropDown/index.ts +8 -8
  268. package/source/components/SearchPage/Filters/HistogramSlider.styl +77 -77
  269. package/source/components/SearchPage/Filters/MakeModel/MakeModel.story.js +11 -11
  270. package/source/components/SearchPage/Filters/MakeModel/MakeModel.styl +95 -95
  271. package/source/components/SearchPage/Filters/MakeModel/MakeModel.tsx +152 -152
  272. package/source/components/SearchPage/Pagination/Pagination.styl +95 -95
  273. package/source/components/SearchPage/Pagination/Pagination.tsx +89 -89
  274. package/source/components/SearchPage/SearchChips/SearchChips.styl +52 -52
  275. package/source/components/SearchPage/SearchChips/SearchChips.tsx +76 -76
  276. package/source/components/SearchPage/SearchTopBar/SearchTopBar.styl +109 -109
  277. package/source/components/SearchPage/SearchTopBar/SearchTopBar.tsx +116 -116
  278. package/source/components/SearchPageMobile/FiltersContainer/FiltersContainer.styl +44 -44
  279. package/source/components/SearchPageMobile/FiltersContainer/FiltersContainer.tsx +162 -162
  280. package/source/components/SearchPageMobile/FiltersDetailed/BodyType.styl +47 -47
  281. package/source/components/SearchPageMobile/FiltersDetailed/BodyType.tsx +85 -85
  282. package/source/components/SearchPageMobile/FiltersDetailed/Consumption.styl +48 -48
  283. package/source/components/SearchPageMobile/FiltersDetailed/Consumption.tsx +76 -76
  284. package/source/components/SearchPageMobile/FiltersDetailed/Doors.styl +52 -52
  285. package/source/components/SearchPageMobile/FiltersDetailed/Doors.tsx +103 -103
  286. package/source/components/SearchPageMobile/FiltersDetailed/FirstRegistration.tsx +69 -69
  287. package/source/components/SearchPageMobile/FiltersDetailed/Fuel.styl +31 -31
  288. package/source/components/SearchPageMobile/FiltersDetailed/Fuel.tsx +83 -83
  289. package/source/components/SearchPageMobile/FiltersDetailed/HistogramSlider.styl +100 -100
  290. package/source/components/SearchPageMobile/FiltersDetailed/MakeModel.styl +95 -95
  291. package/source/components/SearchPageMobile/FiltersDetailed/MakeModel.tsx +171 -171
  292. package/source/components/SearchPageMobile/FiltersDetailed/MakeModelExclude.styl +112 -112
  293. package/source/components/SearchPageMobile/FiltersDetailed/MakeModelExclude.tsx +122 -122
  294. package/source/components/SearchPageMobile/FiltersDetailed/Mileage.tsx +80 -80
  295. package/source/components/SearchPageMobile/FiltersDetailed/Power.tsx +116 -116
  296. package/source/components/SearchPageMobile/FiltersDetailed/Price.tsx +129 -129
  297. package/source/components/SearchPageMobile/FiltersDetailed/Rate.tsx +252 -252
  298. package/source/components/SearchPageMobile/FiltersDetailed/Seats.styl +41 -41
  299. package/source/components/SearchPageMobile/FiltersDetailed/Seats.tsx +85 -85
  300. package/source/components/SearchWidget/BasicDataWidget/BasicDataWidget.story.js +834 -834
  301. package/source/components/SearchWidget/BasicDataWidget/BasicDataWidget.story.styl +40 -40
  302. package/source/components/SearchWidget/BasicDataWidget/BasicDataWidget.styl +37 -37
  303. package/source/components/SearchWidget/BasicDataWidget/BasicDataWidget.tsx +130 -130
  304. package/source/components/SearchWidget/ColorWidget/BodyColorWidget.styl +54 -54
  305. package/source/components/SearchWidget/ColorWidget/BodyColorWidget.tsx +122 -122
  306. package/source/components/SearchWidget/DriveTransmissionWidget/DriveTransmissionWidget.styl +17 -17
  307. package/source/components/SearchWidget/DriveTransmissionWidget/DriveTransmissionWidget.tsx +36 -36
  308. package/source/components/SearchWidget/EnvironmentWidget/DetailedEnvironmentWidget.styl +25 -25
  309. package/source/components/SearchWidget/EnvironmentWidget/DetailedEnvironmentWidget.tsx +126 -126
  310. package/source/components/SearchWidget/EnvironmentWidget/EnvironmentWidget.styl +54 -54
  311. package/source/components/SearchWidget/EnvironmentWidget/EnvironmentWidget.tsx +173 -173
  312. package/source/components/SearchWidget/HighlightsWidget/HighlightsWidget.styl +39 -39
  313. package/source/components/SearchWidget/HighlightsWidget/HighlightsWidget.tsx +99 -99
  314. package/source/components/SearchWidget/InteriorWidget/DetailedInteriorWidget.tsx +44 -44
  315. package/source/components/SearchWidget/InteriorWidget/InteriorWidget.styl +28 -28
  316. package/source/components/SearchWidget/InteriorWidget/InteriorWidget.tsx +42 -42
  317. package/source/components/SearchWidget/OfferDetalisWidget/OfferDetailsWidgetMobile.tsx +59 -59
  318. package/source/components/SearchWidget/SearchWidget.story.js +191 -191
  319. package/source/components/SearchWidget/SearchWidget.story.styl +5 -5
  320. package/source/components/SearchWidget/SearchWidget.styl +196 -196
  321. package/source/components/SearchWidget/SearchWidget.tsx +208 -208
  322. package/source/components/SearchWidget/StateWidget/StateWidget.styl +57 -57
  323. package/source/components/SearchWidget/StateWidget/StateWidget.tsx +107 -107
  324. package/source/components/SearchWidget/SuperAdminWidget/SuperAdminWidget.styl +10 -10
  325. package/source/components/SearchWidget/SuperAdminWidget/SuperAdminWidget.tsx +64 -64
  326. package/source/components/SearchWidget/partials/BuyCar/BuyCar.styl +19 -19
  327. package/source/components/SearchWidget/partials/BuyCar/BuyCar.tsx +162 -162
  328. package/source/components/SearchWidget/partials/DropDown/DropDown.styl +70 -70
  329. package/source/components/SearchWidget/partials/DropDown/DropDown.tsx +36 -36
  330. package/source/components/SearchWidget/partials/DropDown/MultiDropDown.tsx +76 -76
  331. package/source/components/SearchWidget/partials/DropDown/index.ts +7 -7
  332. package/source/components/SearchWidget/partials/DropDownGroup/DropDownGroup.styl +48 -48
  333. package/source/components/SearchWidget/partials/DropDownGroup/DropDownGroup.tsx +101 -101
  334. package/source/components/SearchWidget/partials/FastSearch/FastSearch.tsx +55 -55
  335. package/source/components/SearchWidget/partials/MakerFilter/MakerFilter.styl +8 -8
  336. package/source/components/SearchWidget/partials/MakerFilter/MakerFilter.tsx +69 -69
  337. package/source/components/SearchWidget/partials/PanelFilter/Item.tsx +43 -43
  338. package/source/components/SearchWidget/partials/PanelFilter/PanelFilter.styl +32 -32
  339. package/source/components/SearchWidget/partials/PanelFilter/PanelFilter.tsx +53 -53
  340. package/source/components/SearchWidget/partials/TabPanel/TabPanel.tsx +29 -29
  341. package/source/components/SearchWidget/partials/Tabs/Tab.tsx +20 -20
  342. package/source/components/SearchWidget/partials/Tabs/Tabs.styl +27 -27
  343. package/source/components/SearchWidget/partials/Tabs/Tabs.tsx +69 -69
  344. package/source/components/SearchWidget/partials/Tabs/index.ts +7 -7
  345. package/source/components/SearchWidgetsMobile/BasicDataWidgetMobile/BasicDataWidgetMobile.styl +91 -91
  346. package/source/components/SearchWidgetsMobile/BasicDataWidgetMobile/BasicDataWidgetMobile.tsx +219 -219
  347. package/source/components/SearchWidgetsMobile/EngineTransDriveWidget/EngineTransDriveWidget.styl +47 -47
  348. package/source/components/SearchWidgetsMobile/EngineTransDriveWidget/EngineTransDriveWidget.tsx +126 -126
  349. package/source/components/SearchWidgetsMobile/EquipmentsWidget/EquipmentsWidget.styl +62 -62
  350. package/source/components/SearchWidgetsMobile/EquipmentsWidget/EquipmentsWidget.styled.tsx +38 -38
  351. package/source/components/SearchWidgetsMobile/EquipmentsWidget/EquipmentsWidget.tsx +294 -294
  352. package/source/components/SearchWidgetsMobile/EquipmentsWidget/EquipmentsWidgetCategory.tsx +50 -50
  353. package/source/components/SearchWidgetsMobile/HighlightsWidgetMobile/HighlightsWidgetMobile.styl +50 -50
  354. package/source/components/SearchWidgetsMobile/HighlightsWidgetMobile/HighlightsWidgetMobile.tsx +96 -96
  355. package/source/components/SearchWidgetsMobile/InteriorWidget/InteriorWidget.styl +30 -30
  356. package/source/components/SearchWidgetsMobile/InteriorWidget/InteriorWidget.tsx +33 -33
  357. package/source/components/SearchWidgetsMobile/InteriorWidget/InteriorWidgetMobile.tsx +44 -44
  358. package/source/components/SearchWidgetsMobile/SafetyWidget/SafetyWidget.styl +45 -45
  359. package/source/components/SearchWidgetsMobile/SafetyWidget/SafetyWidget.tsx +149 -149
  360. package/source/components/SearchWidgetsMobile/StateWidget/StateWidget.styl +59 -59
  361. package/source/components/SearchWidgetsMobile/StateWidget/StateWidget.tsx +172 -172
  362. package/source/components/SearchWidgetsMobile/index.ts +18 -18
  363. package/source/components/Stepper/Step/Step.styl +46 -46
  364. package/source/components/Stepper/Step/Step.tsx +44 -44
  365. package/source/components/Stepper/Stepper.story.js +119 -119
  366. package/source/components/Stepper/Stepper.story.styl +41 -41
  367. package/source/components/Stepper/Stepper.styl +10 -10
  368. package/source/components/Stepper/Stepper.tsx +67 -67
  369. package/source/components/Stepper/StepsDivider/StepsDivider.styl +15 -15
  370. package/source/components/Stepper/StepsDivider/StepsDivider.tsx +23 -23
  371. package/source/components/Theme.story.js +36 -36
  372. package/source/components/Theme.story.styl +85 -85
  373. package/source/components/TickerText/TickerText.story.js +17 -17
  374. package/source/components/TickerText/TickerText.styl +43 -43
  375. package/source/components/TickerText/TickerText.tsx +24 -24
  376. package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.styl +85 -85
  377. package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.tsx +81 -81
  378. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusCar.tsx +130 -130
  379. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusCard.styl +53 -53
  380. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusCard.tsx +41 -41
  381. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.story.js +95 -95
  382. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.styl +166 -166
  383. package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.tsx +142 -142
  384. package/source/components/UserDashboardPage/sections/RequestedCarsSection/RequestedCarsSection.story.js +97 -97
  385. package/source/components/UserDashboardPage/sections/RequestedCarsSection/RequestedCarsSection.styl +144 -144
  386. package/source/components/UserDashboardPage/sections/RequestedCarsSection/RequestedCarsSection.tsx +126 -126
  387. package/source/components/UserDashboardPage/sections/RequestedCarsSection/SupportSection.styl +46 -46
  388. package/source/components/UserDashboardPage/sections/RequestedCarsSection/SupportSection.tsx +32 -32
  389. package/source/components/Vehicle/VehicleConsumption/VehicleConsumption.styl +10 -10
  390. package/source/components/Vehicle/VehicleConsumption/VehicleConsumption.tsx +44 -44
  391. package/source/components/Vehicle/VehicleFormattedPrice/VehicleFormattedPrice.story.js +247 -247
  392. package/source/components/Vehicle/VehicleFormattedPrice/VehicleFormattedPrice.styl +148 -148
  393. package/source/components/Vehicle/VehicleFormattedPrice/VehicleFormattedPrice.tsx +137 -137
  394. package/source/components/VehicleCompared/CompareGeneral/CompareGeneral.story.js +30 -30
  395. package/source/components/VehicleCompared/CompareGeneral/CompareGeneral.styl +49 -49
  396. package/source/components/VehicleCompared/CompareGeneral/CompareGeneral.tsx +55 -55
  397. package/source/components/VehicleCompared/ComparePrice/ComparePrice.story.js +18 -18
  398. package/source/components/VehicleCompared/ComparePrice/ComparePrice.styl +17 -17
  399. package/source/components/VehicleCompared/ComparePrice/ComparePrice.tsx +33 -33
  400. package/source/components/VehicleCompared/CompareTitle/CompareTitle.story.js +19 -19
  401. package/source/components/VehicleCompared/CompareTitle/CompareTitle.styl +38 -38
  402. package/source/components/VehicleCompared/CompareTitle/CompareTitle.tsx +32 -32
  403. package/source/components/VehicleDetailedSidebar/VehicleDetailedSidebar.story.js +44 -44
  404. package/source/components/VehicleDetailedSidebar/VehicleDetailedSidebar.styl +28 -28
  405. package/source/components/VehicleDetailedSidebar/VehicleDetailedSidebar.tsx +168 -168
  406. package/source/components/VehicleDetailedSidebar/partials/Price.styl +22 -22
  407. package/source/components/VehicleDetailedSidebar/partials/Price.tsx +40 -40
  408. package/source/components/VehicleDetailedSidebar/partials/PriceContent.styl +113 -113
  409. package/source/components/VehicleDetailedSidebar/partials/PriceContent.tsx +123 -123
  410. package/source/components/VehicleDetailedSidebar/partials/Properties.styl +53 -53
  411. package/source/components/VehicleDetailedSidebar/partials/Properties.tsx +117 -117
  412. package/source/components/VehicleDetailedSidebar/partials/Title.styl +35 -35
  413. package/source/components/VehicleDetailedSidebar/partials/Title.tsx +33 -33
  414. package/source/components/VehicleDetailedSlider/VehicleDetailedSlider.story.js +120 -120
  415. package/source/components/VehicleDetailedSlider/VehicleDetailedSlider.styl +102 -102
  416. package/source/components/VehicleDetailedSlider/VehicleDetailedSlider.tsx +296 -296
  417. package/source/components/VehicleDetailedSlider/partials/MobileStast.tsx +61 -61
  418. package/source/components/VehicleDetailedSlider/partials/MobileStats.styl +71 -71
  419. package/source/components/VehicleDetailedSlider/partials/PriceData.styl +48 -48
  420. package/source/components/VehicleDetailedSlider/partials/PriceData.tsx +37 -37
  421. package/source/components/VehicleDetailedSlider/partials/Stats.styl +80 -80
  422. package/source/components/VehicleDetailedSlider/partials/Stats.tsx +62 -62
  423. package/source/components/VehicleDetailedSlider/partials/Title.styl +44 -44
  424. package/source/components/VehicleDetailedSlider/partials/Title.tsx +36 -36
  425. package/source/components/VehiclePromoSlider/VehiclePromoInfo/VehiclePromoInfo.story.js +42 -42
  426. package/source/components/VehiclePromoSlider/VehiclePromoInfo/VehiclePromoInfo.styl +298 -298
  427. package/source/components/VehiclePromoSlider/VehiclePromoInfo/VehiclePromoInfo.tsx +201 -201
  428. package/source/components/VehiclePromoSlider/VehiclePromoSlide/VehiclePromoSlide.story.js +62 -62
  429. package/source/components/VehiclePromoSlider/VehiclePromoSlide/VehiclePromoSlide.styl +263 -263
  430. package/source/components/VehiclePromoSlider/VehiclePromoSlide/VehiclePromoSlide.tsx +141 -141
  431. package/source/components/VehiclePromoSlider/VehiclePromoSlider.story.js +42 -42
  432. package/source/components/VehiclePromoSlider/VehiclePromoSlider.styl +122 -122
  433. package/source/components/VehiclePromoSlider/VehiclePromoSlider.tsx +111 -111
  434. package/source/components/VehiclePromoSlider/cars.js +220 -220
  435. package/source/components/VehicleSmallCard/SeoText/SeoText.styl +8 -8
  436. package/source/components/VehicleSmallCard/SeoText/SeoText.tsx +16 -16
  437. package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.styl +162 -162
  438. package/source/components/VehicleSmallCard/VehicleData/VechiclePriceItem/VechiclePriceItem.tsx +188 -188
  439. package/source/components/VehicleSmallCard/VehicleData/VehicleInfo/VehicleInfo.styl +218 -218
  440. package/source/components/VehicleSmallCard/VehicleData/VehicleInfo/VehicleInfo.tsx +153 -153
  441. package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.styl +129 -129
  442. package/source/components/VehicleSmallCard/VehicleData/VehiclePrice/VehiclePrice.tsx +282 -282
  443. package/source/components/VehicleSmallCard/VehicleData/VehicleProperty/VehicleProperty.styl +21 -21
  444. package/source/components/VehicleSmallCard/VehicleData/VehicleProperty/VehicleProperty.tsx +32 -32
  445. package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.styl +126 -126
  446. package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.tsx +90 -90
  447. package/source/components/VehicleSmallCard/VehicleSmallCard.story.js +412 -412
  448. package/source/components/VehicleSmallCard/VehicleSmallCard.story.styl +55 -55
  449. package/source/components/VehicleSmallCard/VehicleSmallCard.styl +242 -242
  450. package/source/components/VehicleSmallCard/VehicleSmallCard.tsx +408 -408
  451. package/source/components/VehicleSmallCardForDealerships/VehicleSmallCardForDealerships.story.js +199 -199
  452. package/source/components/VehicleSmallCardForDealerships/VehicleSmallCardForDealerships.story.styl +40 -40
  453. package/source/components/VehicleSmallCardForDealerships/VehicleSmallCardForDealerships.styl +150 -150
  454. package/source/components/VehicleSmallCardForDealerships/VehicleSmallCardForDealerships.tsx +185 -185
  455. package/source/components/_common/Accordion/Accordion.story.js +36 -36
  456. package/source/components/_common/Accordion/Accordion.styl +2 -2
  457. package/source/components/_common/Accordion/Accordion.tsx +132 -132
  458. package/source/components/_common/Accordion/AccordionTitle/AccordionTitle.styl +49 -49
  459. package/source/components/_common/Accordion/AccordionTitle/AccordionTitle.tsx +33 -33
  460. package/source/components/_common/AccordionWrapper/AccordionItem/AccordionItem.styl +34 -34
  461. package/source/components/_common/AccordionWrapper/AccordionItem/AccordionItem.tsx +64 -64
  462. package/source/components/_common/AccordionWrapper/AccordionWrapper.tsx +34 -34
  463. package/source/components/_common/Badge/Badge.story.js +27 -27
  464. package/source/components/_common/Badge/Badge.story.styl +5 -5
  465. package/source/components/_common/Badge/Badge.styl +41 -41
  466. package/source/components/_common/Badge/Badge.tsx +25 -25
  467. package/source/components/_common/BodyTypeIcons/Audi.tsx +9 -9
  468. package/source/components/_common/BodyTypeIcons/Bmw.tsx +860 -860
  469. package/source/components/_common/BodyTypeIcons/Ford.tsx +31 -31
  470. package/source/components/_common/BodyTypeIcons/IconsConfig.tsx +44 -44
  471. package/source/components/_common/BodyTypeIcons/IconsConfigCompact.tsx +30 -30
  472. package/source/components/_common/BodyTypeIcons/Mazda.tsx +44 -44
  473. package/source/components/_common/BodyTypeIcons/MercedesBenz.tsx +38 -38
  474. package/source/components/_common/BodyTypeIcons/Opel.tsx +19 -19
  475. package/source/components/_common/BodyTypeIcons/Search.tsx +19 -19
  476. package/source/components/_common/BodyTypeIcons/SelectorCategoryCombi.tsx +68 -68
  477. package/source/components/_common/BodyTypeIcons/SelectorCategoryCompact.tsx +20 -20
  478. package/source/components/_common/BodyTypeIcons/SelectorCategoryConvertible.tsx +68 -68
  479. package/source/components/_common/BodyTypeIcons/SelectorCategoryCoupe.tsx +60 -60
  480. package/source/components/_common/BodyTypeIcons/SelectorCategoryMinibus.tsx +64 -64
  481. package/source/components/_common/BodyTypeIcons/SelectorCategorySedan.tsx +69 -69
  482. package/source/components/_common/BodyTypeIcons/SelectorCategorySuv.tsx +77 -77
  483. package/source/components/_common/BodyTypeIcons/SelectorCategoryTransporter.tsx +68 -68
  484. package/source/components/_common/BodyTypeIcons/SelectorCategoryVan.tsx +72 -72
  485. package/source/components/_common/BodyTypeIcons/Volkswagen.tsx +330 -330
  486. package/source/components/_common/BodyTypeIcons/index.ts +17 -17
  487. package/source/components/_common/Bubble/Bubble.story.js +52 -52
  488. package/source/components/_common/Bubble/Bubble.styl +53 -53
  489. package/source/components/_common/Bubble/Bubble.tsx +37 -37
  490. package/source/components/_common/Button/Button.story.js +52 -52
  491. package/source/components/_common/Button/Button.story.styl +5 -5
  492. package/source/components/_common/Button/Button.styl +12 -12
  493. package/source/components/_common/Button/Button.styled.tsx +51 -51
  494. package/source/components/_common/Button/Button.tsx +78 -78
  495. package/source/components/_common/ButtonOld/Button.story.js +54 -54
  496. package/source/components/_common/ButtonOld/Button.story.styl +5 -5
  497. package/source/components/_common/ButtonOld/Button.styl +65 -65
  498. package/source/components/_common/ButtonOld/Button.tsx +84 -84
  499. package/source/components/_common/Checkbox/Checkbox.story.js +85 -85
  500. package/source/components/_common/Checkbox/Checkbox.story.styl +14 -14
  501. package/source/components/_common/Checkbox/Checkbox.styl +119 -119
  502. package/source/components/_common/Checkbox/Checkbox.tsx +151 -151
  503. package/source/components/_common/Checkbox/FormCheckbox.styl +22 -22
  504. package/source/components/_common/Checkbox/FormCheckbox.tsx +86 -54
  505. package/source/components/_common/Checkbox/index.js +4 -4
  506. package/source/components/_common/CheckboxMaterial/CheckboxMaterial.story.js +126 -136
  507. package/source/components/_common/CheckboxMaterial/CheckboxMaterial.story.styl +14 -14
  508. package/source/components/_common/CheckboxMaterial/CheckboxMaterial.styl +155 -155
  509. package/source/components/_common/CheckboxMaterial/CheckboxMaterial.tsx +210 -210
  510. package/source/components/_common/Chip/Chip.story.js +43 -43
  511. package/source/components/_common/Chip/Chip.styl +69 -69
  512. package/source/components/_common/Chip/Chip.tsx +40 -40
  513. package/source/components/_common/ChipList/ChipList.story.js +36 -36
  514. package/source/components/_common/ChipList/ChipList.styl +80 -80
  515. package/source/components/_common/ChipList/ChipList.tsx +58 -58
  516. package/source/components/_common/Co2Widget/CO2Efficiency.styl +114 -114
  517. package/source/components/_common/Co2Widget/CO2Efficiency.tsx +49 -49
  518. package/source/components/_common/Divider/Divider.styl +8 -8
  519. package/source/components/_common/Divider/Divider.tsx +16 -16
  520. package/source/components/_common/DoorSelector/DoorSelector.styl +35 -35
  521. package/source/components/_common/DoorSelector/DoorSelector.tsx +39 -39
  522. package/source/components/_common/DropDown/DropDown.story.js +35 -35
  523. package/source/components/_common/DropDown/DropDown.styl +129 -129
  524. package/source/components/_common/DropDown/DropDown.tsx +111 -111
  525. package/source/components/_common/DropDown/DropDownComponents.tsx +53 -53
  526. package/source/components/_common/DropDown/DropDownGroup.styl +20 -20
  527. package/source/components/_common/DropDown/DropDownGroup.tsx +136 -136
  528. package/source/components/_common/DropDown/FormDropDown.styl +35 -35
  529. package/source/components/_common/DropDown/FormDropDown.tsx +52 -52
  530. package/source/components/_common/DropDown/MultiDropDown.tsx +84 -84
  531. package/source/components/_common/DropDown/index.ts +7 -7
  532. package/source/components/_common/ExpandablePanel/ExpandablePanel.story.js +41 -41
  533. package/source/components/_common/ExpandablePanel/ExpandablePanel.styl +19 -19
  534. package/source/components/_common/ExpandablePanel/ExpandablePanel.tsx +88 -88
  535. package/source/components/_common/ExpansionPanel/ExpansionPanel.styl +36 -36
  536. package/source/components/_common/ExpansionPanel/ExpansionPanel.styled.tsx +28 -28
  537. package/source/components/_common/ExpansionPanel/ExpansionPanel.tsx +99 -99
  538. package/source/components/_common/FilterLabel/FilterLabel.styl +25 -25
  539. package/source/components/_common/FilterLabel/FilterLabel.tsx +27 -27
  540. package/source/components/_common/Histogram/Histogram.story.js +51 -51
  541. package/source/components/_common/IconContainer/IconContainer.styl +23 -23
  542. package/source/components/_common/IconContainer/IconContainer.tsx +34 -34
  543. package/source/components/_common/IconSVG/IconSVG.story.js +21 -21
  544. package/source/components/_common/IconSVG/IconSVG.story.styl +25 -25
  545. package/source/components/_common/IconSVG/IconSVG.tsx +30 -30
  546. package/source/components/_common/IconSVG/IconSVGConfig.tsx +766 -766
  547. package/source/components/_common/IconSVG/SVG/AboPartner.tsx +16 -16
  548. package/source/components/_common/IconSVG/SVG/ArrowQuotes.tsx +22 -22
  549. package/source/components/_common/IconSVG/SVG/CloseIcon.tsx +17 -17
  550. package/source/components/_common/IconSVG/SVG/CloseIconSelect.tsx +18 -18
  551. package/source/components/_common/IconSVG/SVG/ClosedLockIcon.tsx +18 -18
  552. package/source/components/_common/IconSVG/SVG/DealerCheckIcon.tsx +18 -18
  553. package/source/components/_common/IconSVG/SVG/DealerPopoverMail.tsx +21 -21
  554. package/source/components/_common/IconSVG/SVG/DealerPopoverPhone.tsx +21 -21
  555. package/source/components/_common/IconSVG/SVG/GrayPhoneIcon.tsx +22 -22
  556. package/source/components/_common/IconSVG/SVG/InternetIcon.tsx +18 -18
  557. package/source/components/_common/IconSVG/SVG/WhiteEnvelopeIcon.tsx +21 -21
  558. package/source/components/_common/IconSVG/SVG/bodyType/Cabrio.tsx +23 -23
  559. package/source/components/_common/IconSVG/SVG/bodyType/Coupe.tsx +22 -22
  560. package/source/components/_common/IconSVG/SVG/bodyType/Minibus.tsx +22 -22
  561. package/source/components/_common/IconSVG/SVG/bodyType/Other.tsx +25 -25
  562. package/source/components/_common/IconSVG/SVG/bodyType/Sedan.tsx +22 -22
  563. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryCombi.tsx +68 -68
  564. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryCompact.tsx +20 -20
  565. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryConvertible.tsx +68 -68
  566. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryCoupe.tsx +60 -60
  567. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryMinibus.tsx +64 -64
  568. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryOther.tsx +60 -60
  569. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategorySedan.tsx +69 -69
  570. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategorySuv.tsx +77 -77
  571. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryTransporter.tsx +68 -68
  572. package/source/components/_common/IconSVG/SVG/bodyType/SelectorCategoryVan.tsx +72 -72
  573. package/source/components/_common/IconSVG/SVG/bodyType/Small.tsx +23 -23
  574. package/source/components/_common/IconSVG/SVG/bodyType/Suv.tsx +23 -23
  575. package/source/components/_common/IconSVG/SVG/bodyType/Van.tsx +23 -23
  576. package/source/components/_common/IconSVG/SVG/bodyType/Wagon.tsx +23 -23
  577. package/source/components/_common/IconSVG/SVG/common/AddIcon.tsx +16 -16
  578. package/source/components/_common/IconSVG/SVG/common/AddPlus.tsx +16 -16
  579. package/source/components/_common/IconSVG/SVG/common/AddressDashboard.tsx +29 -29
  580. package/source/components/_common/IconSVG/SVG/common/AddressIcon.tsx +20 -20
  581. package/source/components/_common/IconSVG/SVG/common/ArrowDetailedAccordionBlue.tsx +26 -26
  582. package/source/components/_common/IconSVG/SVG/common/ArrowDownBlue.tsx +21 -21
  583. package/source/components/_common/IconSVG/SVG/common/ArrowSelect.tsx +23 -23
  584. package/source/components/_common/IconSVG/SVG/common/ArrowStepDown.tsx +18 -18
  585. package/source/components/_common/IconSVG/SVG/common/Autocheck.tsx +19 -19
  586. package/source/components/_common/IconSVG/SVG/common/AutodeLogo.tsx +36 -36
  587. package/source/components/_common/IconSVG/SVG/common/Avatar.tsx +17 -17
  588. package/source/components/_common/IconSVG/SVG/common/BellGray.tsx +19 -19
  589. package/source/components/_common/IconSVG/SVG/common/BigInfoTransparent.tsx +13 -13
  590. package/source/components/_common/IconSVG/SVG/common/Browse.tsx +20 -20
  591. package/source/components/_common/IconSVG/SVG/common/Calendar.tsx +24 -24
  592. package/source/components/_common/IconSVG/SVG/common/CallbackDashboard.tsx +30 -30
  593. package/source/components/_common/IconSVG/SVG/common/Camera.tsx +17 -17
  594. package/source/components/_common/IconSVG/SVG/common/Car.tsx +16 -16
  595. package/source/components/_common/IconSVG/SVG/common/CarBody.tsx +19 -19
  596. package/source/components/_common/IconSVG/SVG/common/CarFront.tsx +43 -43
  597. package/source/components/_common/IconSVG/SVG/common/CarInspectionCheck.tsx +21 -21
  598. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme0.tsx +32 -32
  599. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme1.tsx +53 -53
  600. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme2.tsx +52 -52
  601. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme3.tsx +32 -32
  602. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme4.tsx +32 -32
  603. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme5.tsx +32 -32
  604. package/source/components/_common/IconSVG/SVG/common/CarInspectionScheme6.tsx +32 -32
  605. package/source/components/_common/IconSVG/SVG/common/CarInspectionSchemeGeneral copy.tsx +24 -24
  606. package/source/components/_common/IconSVG/SVG/common/CarInspectionSchemeGeneral.tsx +24 -24
  607. package/source/components/_common/IconSVG/SVG/common/CheckBlue.tsx +18 -18
  608. package/source/components/_common/IconSVG/SVG/common/CheckGreen.tsx +22 -22
  609. package/source/components/_common/IconSVG/SVG/common/CheckMark.tsx +16 -16
  610. package/source/components/_common/IconSVG/SVG/common/CheckWhite.tsx +19 -19
  611. package/source/components/_common/IconSVG/SVG/common/Chevron.tsx +17 -17
  612. package/source/components/_common/IconSVG/SVG/common/CircledCheckmark.tsx +25 -25
  613. package/source/components/_common/IconSVG/SVG/common/Clock.tsx +18 -18
  614. package/source/components/_common/IconSVG/SVG/common/Close.tsx +19 -19
  615. package/source/components/_common/IconSVG/SVG/common/CloseGrey.tsx +22 -22
  616. package/source/components/_common/IconSVG/SVG/common/ContactEmail.tsx +21 -21
  617. package/source/components/_common/IconSVG/SVG/common/ContactPhone.tsx +28 -28
  618. package/source/components/_common/IconSVG/SVG/common/CopyIcon copy.tsx +22 -22
  619. package/source/components/_common/IconSVG/SVG/common/CopyIcon.tsx +22 -22
  620. package/source/components/_common/IconSVG/SVG/common/CopyIconForDealer.tsx +21 -21
  621. package/source/components/_common/IconSVG/SVG/common/DashboardIcon.tsx +20 -20
  622. package/source/components/_common/IconSVG/SVG/common/DashboardQuestionMark.tsx +20 -20
  623. package/source/components/_common/IconSVG/SVG/common/DealersIcon.tsx +20 -20
  624. package/source/components/_common/IconSVG/SVG/common/DeleteCircle.tsx +31 -31
  625. package/source/components/_common/IconSVG/SVG/common/DeleteV1Icon.tsx +18 -18
  626. package/source/components/_common/IconSVG/SVG/common/DeliveryDashboard.tsx +25 -25
  627. package/source/components/_common/IconSVG/SVG/common/DeliveryMail.tsx +24 -24
  628. package/source/components/_common/IconSVG/SVG/common/Discount100De.tsx +18 -18
  629. package/source/components/_common/IconSVG/SVG/common/Discount100En.tsx +19 -19
  630. package/source/components/_common/IconSVG/SVG/common/Discount66De.tsx +28 -28
  631. package/source/components/_common/IconSVG/SVG/common/Discount66En.tsx +20 -20
  632. package/source/components/_common/IconSVG/SVG/common/DoneIcon.tsx +18 -18
  633. package/source/components/_common/IconSVG/SVG/common/EditCircle.tsx +32 -32
  634. package/source/components/_common/IconSVG/SVG/common/EditPriceIcon.tsx +20 -20
  635. package/source/components/_common/IconSVG/SVG/common/EuroCurrency.tsx +18 -18
  636. package/source/components/_common/IconSVG/SVG/common/Export.tsx +20 -20
  637. package/source/components/_common/IconSVG/SVG/common/Eye.tsx +17 -17
  638. package/source/components/_common/IconSVG/SVG/common/EyeCatch.tsx +19 -19
  639. package/source/components/_common/IconSVG/SVG/common/FavoritesIcon.tsx +20 -20
  640. package/source/components/_common/IconSVG/SVG/common/FilterRange.tsx +16 -16
  641. package/source/components/_common/IconSVG/SVG/common/FilterToolBlack.tsx +23 -23
  642. package/source/components/_common/IconSVG/SVG/common/FlagDe.tsx +21 -21
  643. package/source/components/_common/IconSVG/SVG/common/FlagEn.tsx +43 -43
  644. package/source/components/_common/IconSVG/SVG/common/GrayEnvelopeIcon.tsx +19 -19
  645. package/source/components/_common/IconSVG/SVG/common/HamburgerMenuIcon.tsx +18 -18
  646. package/source/components/_common/IconSVG/SVG/common/HandingOverDashboard.tsx +32 -32
  647. package/source/components/_common/IconSVG/SVG/common/ImageSettingsIcon.tsx +20 -20
  648. package/source/components/_common/IconSVG/SVG/common/Info.tsx +16 -16
  649. package/source/components/_common/IconSVG/SVG/common/InfoIcon.tsx +17 -17
  650. package/source/components/_common/IconSVG/SVG/common/InfoTransparent.tsx +18 -18
  651. package/source/components/_common/IconSVG/SVG/common/LogoutIcon.tsx +20 -20
  652. package/source/components/_common/IconSVG/SVG/common/MagnifyingGlass.tsx +31 -31
  653. package/source/components/_common/IconSVG/SVG/common/MenuArrow.tsx +16 -16
  654. package/source/components/_common/IconSVG/SVG/common/MenuGrey.tsx +22 -22
  655. package/source/components/_common/IconSVG/SVG/common/MobileDeLogo.tsx +108 -108
  656. package/source/components/_common/IconSVG/SVG/common/MyOrderIcon.tsx +20 -20
  657. package/source/components/_common/IconSVG/SVG/common/MyVehiclesIcon.tsx +20 -20
  658. package/source/components/_common/IconSVG/SVG/common/NewFlagDe.tsx +25 -25
  659. package/source/components/_common/IconSVG/SVG/common/NewFlagEn.tsx +34 -34
  660. package/source/components/_common/IconSVG/SVG/common/OrderReceivedDashboard.tsx +27 -27
  661. package/source/components/_common/IconSVG/SVG/common/Package.tsx +30 -30
  662. package/source/components/_common/IconSVG/SVG/common/Phone.tsx +18 -18
  663. package/source/components/_common/IconSVG/SVG/common/PhoneGrey.tsx +22 -22
  664. package/source/components/_common/IconSVG/SVG/common/PickupDashboard.tsx +30 -30
  665. package/source/components/_common/IconSVG/SVG/common/Picture.tsx +24 -24
  666. package/source/components/_common/IconSVG/SVG/common/Pictures.tsx +32 -32
  667. package/source/components/_common/IconSVG/SVG/common/Plus.tsx +16 -16
  668. package/source/components/_common/IconSVG/SVG/common/PlusNew.tsx +16 -16
  669. package/source/components/_common/IconSVG/SVG/common/PreparationDashboard.tsx +29 -29
  670. package/source/components/_common/IconSVG/SVG/common/ProfileDashboard.tsx +24 -24
  671. package/source/components/_common/IconSVG/SVG/common/ProfileIcon.tsx +17 -17
  672. package/source/components/_common/IconSVG/SVG/common/Question.tsx +19 -19
  673. package/source/components/_common/IconSVG/SVG/common/QuestionBold.tsx +25 -25
  674. package/source/components/_common/IconSVG/SVG/common/RegistrationDashboard.tsx +31 -31
  675. package/source/components/_common/IconSVG/SVG/common/SavedSearchsIcon.tsx +20 -20
  676. package/source/components/_common/IconSVG/SVG/common/Search.tsx +19 -19
  677. package/source/components/_common/IconSVG/SVG/common/SearchGrey.tsx +22 -22
  678. package/source/components/_common/IconSVG/SVG/common/SettingPenIcon.tsx +20 -20
  679. package/source/components/_common/IconSVG/SVG/common/Share.tsx +16 -16
  680. package/source/components/_common/IconSVG/SVG/common/ShoppingCart.tsx +18 -18
  681. package/source/components/_common/IconSVG/SVG/common/SliderArrow.tsx +21 -21
  682. package/source/components/_common/IconSVG/SVG/common/SliderEye.tsx +17 -17
  683. package/source/components/_common/IconSVG/SVG/common/SortUpDownArrows.tsx +18 -18
  684. package/source/components/_common/IconSVG/SVG/common/Speedometer.tsx +23 -23
  685. package/source/components/_common/IconSVG/SVG/common/Star.tsx +20 -20
  686. package/source/components/_common/IconSVG/SVG/common/StarNew.tsx +16 -16
  687. package/source/components/_common/IconSVG/SVG/common/StarOutline.tsx +20 -20
  688. package/source/components/_common/IconSVG/SVG/common/StarRoundedCorners.tsx +18 -18
  689. package/source/components/_common/IconSVG/SVG/common/Stats.tsx +17 -17
  690. package/source/components/_common/IconSVG/SVG/common/Step1.tsx +21 -21
  691. package/source/components/_common/IconSVG/SVG/common/Step2.tsx +20 -20
  692. package/source/components/_common/IconSVG/SVG/common/Step3.tsx +21 -21
  693. package/source/components/_common/IconSVG/SVG/common/SupportCallbackIcon.tsx +20 -20
  694. package/source/components/_common/IconSVG/SVG/common/Telephone.tsx +22 -22
  695. package/source/components/_common/IconSVG/SVG/common/Time.tsx +17 -17
  696. package/source/components/_common/IconSVG/SVG/common/Timetable.tsx +18 -18
  697. package/source/components/_common/IconSVG/SVG/common/Trash.tsx +22 -22
  698. package/source/components/_common/IconSVG/SVG/common/TrashRed.tsx +23 -23
  699. package/source/components/_common/IconSVG/SVG/common/Upload.tsx +17 -17
  700. package/source/components/_common/IconSVG/SVG/common/UserGrey.tsx +22 -22
  701. package/source/components/_common/IconSVG/SVG/common/UserProfileIcon.tsx +20 -20
  702. package/source/components/_common/IconSVG/SVG/common/ValidateFailure.tsx +21 -21
  703. package/source/components/_common/IconSVG/SVG/common/ValidateSuccess.tsx +21 -21
  704. package/source/components/_common/IconSVG/SVG/common/WarningTriangle.tsx +20 -20
  705. package/source/components/_common/IconSVG/SVG/common/WhiteArrowUp.tsx +21 -21
  706. package/source/components/_common/IconSVG/SVG/common/WhiteKey.tsx +21 -21
  707. package/source/components/_common/IconSVG/SVG/common/WhitePeople.tsx +23 -23
  708. package/source/components/_common/IconSVG/SVG/common/WhiteTick.tsx +19 -19
  709. package/source/components/_common/IconSVG/SVG/flags/AT.tsx +19 -19
  710. package/source/components/_common/IconSVG/SVG/flags/BE.tsx +20 -20
  711. package/source/components/_common/IconSVG/SVG/flags/BG.tsx +20 -20
  712. package/source/components/_common/IconSVG/SVG/flags/CH.tsx +22 -22
  713. package/source/components/_common/IconSVG/SVG/flags/CZ.tsx +18 -18
  714. package/source/components/_common/IconSVG/SVG/flags/DE.tsx +18 -18
  715. package/source/components/_common/IconSVG/SVG/flags/DK.tsx +18 -18
  716. package/source/components/_common/IconSVG/SVG/flags/ES.tsx +2585 -2585
  717. package/source/components/_common/IconSVG/SVG/flags/FI.tsx +18 -18
  718. package/source/components/_common/IconSVG/SVG/flags/FR.tsx +20 -20
  719. package/source/components/_common/IconSVG/SVG/flags/GB.tsx +26 -26
  720. package/source/components/_common/IconSVG/SVG/flags/HR.tsx +135 -135
  721. package/source/components/_common/IconSVG/SVG/flags/HU.tsx +20 -20
  722. package/source/components/_common/IconSVG/SVG/flags/IT.tsx +20 -20
  723. package/source/components/_common/IconSVG/SVG/flags/LI.tsx +106 -106
  724. package/source/components/_common/IconSVG/SVG/flags/LU.tsx +18 -18
  725. package/source/components/_common/IconSVG/SVG/flags/NL.tsx +18 -18
  726. package/source/components/_common/IconSVG/SVG/flags/NO.tsx +20 -20
  727. package/source/components/_common/IconSVG/SVG/flags/PL.tsx +19 -19
  728. package/source/components/_common/IconSVG/SVG/flags/RO.tsx +20 -20
  729. package/source/components/_common/IconSVG/SVG/flags/RU.tsx +20 -20
  730. package/source/components/_common/IconSVG/SVG/flags/SE.tsx +20 -20
  731. package/source/components/_common/IconSVG/SVG/flags/SI.tsx +54 -54
  732. package/source/components/_common/IconSVG/SVG/flags/SK.tsx +35 -35
  733. package/source/components/_common/IconSVG/SVG/flags/UA.tsx +19 -19
  734. package/source/components/_common/IconSVG/SVG/infoBlocks/14DaysReturnPolicy.tsx +18 -18
  735. package/source/components/_common/IconSVG/SVG/infoBlocks/AlertInfo.tsx +19 -19
  736. package/source/components/_common/IconSVG/SVG/infoBlocks/Autocheck.tsx +19 -19
  737. package/source/components/_common/IconSVG/SVG/infoBlocks/CheckTheStory.tsx +22 -22
  738. package/source/components/_common/IconSVG/SVG/infoBlocks/CustomerServiceWhite.tsx +16 -16
  739. package/source/components/_common/IconSVG/SVG/infoBlocks/Guarantee.tsx +16 -16
  740. package/source/components/_common/IconSVG/SVG/infoBlocks/OrderWhite.tsx +13 -13
  741. package/source/components/_common/IconSVG/SVG/infoBlocks/PriceGuarantee.tsx +19 -19
  742. package/source/components/_common/IconSVG/SVG/infoBlocks/PriceGuaranteeWhite.tsx +17 -17
  743. package/source/components/_common/IconSVG/SVG/infoBlocks/TransportAndDelivery.tsx +21 -21
  744. package/source/components/_common/IconSVG/SVG/infoBlocks/Warranty.tsx +23 -23
  745. package/source/components/_common/IconSVG/SVG/popower/Mail.tsx +18 -18
  746. package/source/components/_common/IconSVG/SVG/popower/Phone.tsx +19 -19
  747. package/source/components/_common/IconSVG/SVG/popower/Schedule.tsx +18 -18
  748. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/AAllWheelDrive.tsx +26 -26
  749. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/AllWheelDrive.tsx +26 -26
  750. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/FrontWheelDrive.tsx +25 -25
  751. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/OtherWheelDrive.tsx +26 -26
  752. package/source/components/_common/IconSVG/SVG/searchWidgets/drive/RearWheelDrive.tsx +25 -25
  753. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelDiesel.tsx +18 -18
  754. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelElectrical.tsx +19 -19
  755. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelElectricalDiesel.tsx +34 -34
  756. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelElectricalPetrol.tsx +20 -20
  757. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelEthanol.tsx +53 -53
  758. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelHydrogen.tsx +24 -24
  759. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelLpg.tsx +24 -24
  760. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelNaturalGas.tsx +23 -23
  761. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelOther.tsx +28 -28
  762. package/source/components/_common/IconSVG/SVG/searchWidgets/fuel/FuelPetrol.tsx +18 -18
  763. package/source/components/_common/IconSVG/SVG/settings/Account.tsx +17 -17
  764. package/source/components/_common/IconSVG/SVG/settings/DataUsage.tsx +17 -17
  765. package/source/components/_common/IconSVG/SVG/settings/MarketResearch.tsx +17 -17
  766. package/source/components/_common/IconSVG/SVG/settings/Newsletter.tsx +17 -17
  767. package/source/components/_common/IconSVG/SVG/settings/RemoveEye.tsx +17 -17
  768. package/source/components/_common/IconSVG/SVG/settings/RemoveEyeOff.tsx +17 -17
  769. package/source/components/_common/IconSVG/SVG/settings/Security.tsx +17 -17
  770. package/source/components/_common/IconSVG/SVG/settings/Warning.tsx +17 -17
  771. package/source/components/_common/IconSVG/SVG/slider/360.tsx +23 -23
  772. package/source/components/_common/IconSVG/SVG/slider/360New.tsx +20 -20
  773. package/source/components/_common/IconSVG/SVG/slider/Checked.tsx +19 -19
  774. package/source/components/_common/IconSVG/SVG/slider/DiscountRibbon.tsx +51 -51
  775. package/source/components/_common/IconSVG/SVG/slider/DiscountRibbonMobile.tsx +47 -47
  776. package/source/components/_common/IconSVG/SVG/slider/DiscountRibbonNew.tsx +29 -29
  777. package/source/components/_common/IconSVG/SVG/slider/Easy.tsx +19 -19
  778. package/source/components/_common/IconSVG/SVG/slider/Fullscreen.tsx +16 -16
  779. package/source/components/_common/IconSVG/SVG/slider/FullscreenWindow.tsx +23 -23
  780. package/source/components/_common/IconSVG/SVG/slider/Safe.tsx +19 -19
  781. package/source/components/_common/IconSVG/SVG/slider/ToBuy.tsx +19 -19
  782. package/source/components/_common/IconSVG/SVG/slider/ZoomIn.tsx +21 -21
  783. package/source/components/_common/IconSVG/SVG/slider/ZoomOut.tsx +21 -21
  784. package/source/components/_common/IconSVG/SVG/social/AndroidLogo.tsx +18 -18
  785. package/source/components/_common/IconSVG/SVG/social/Apple.tsx +19 -19
  786. package/source/components/_common/IconSVG/SVG/social/FacebookF.tsx +19 -19
  787. package/source/components/_common/IconSVG/SVG/social/GooglePlusG.tsx +19 -19
  788. package/source/components/_common/IconSVG/SVG/social/Instagram.tsx +17 -17
  789. package/source/components/_common/IconSVG/SVG/social/Pinterest.tsx +19 -19
  790. package/source/components/_common/IconSVG/SVG/social/SharingInterface.tsx +21 -21
  791. package/source/components/_common/IconSVG/SVG/social/Twitter.tsx +19 -19
  792. package/source/components/_common/IconSVG/SVG/social/Youtube.tsx +19 -19
  793. package/source/components/_common/IconSVG/SVG/vehicle/AboIcon.tsx +11 -11
  794. package/source/components/_common/IconSVG/SVG/vehicle/Abs.tsx +24 -24
  795. package/source/components/_common/IconSVG/SVG/vehicle/AirCond.tsx +34 -34
  796. package/source/components/_common/IconSVG/SVG/vehicle/Airbag.tsx +21 -21
  797. package/source/components/_common/IconSVG/SVG/vehicle/AuxiliaryHeating.tsx +23 -23
  798. package/source/components/_common/IconSVG/SVG/vehicle/Bluetooth.tsx +22 -22
  799. package/source/components/_common/IconSVG/SVG/vehicle/BuyIcon.tsx +15 -15
  800. package/source/components/_common/IconSVG/SVG/vehicle/CarAvailability.tsx +22 -22
  801. package/source/components/_common/IconSVG/SVG/vehicle/CarInspectionCheck.tsx +21 -21
  802. package/source/components/_common/IconSVG/SVG/vehicle/CarInspectionCross.tsx +21 -21
  803. package/source/components/_common/IconSVG/SVG/vehicle/CheckoutChecked.tsx +15 -15
  804. package/source/components/_common/IconSVG/SVG/vehicle/Co2.tsx +24 -24
  805. package/source/components/_common/IconSVG/SVG/vehicle/CruiseControl.tsx +25 -25
  806. package/source/components/_common/IconSVG/SVG/vehicle/Date.tsx +21 -21
  807. package/source/components/_common/IconSVG/SVG/vehicle/Delivery.tsx +12 -12
  808. package/source/components/_common/IconSVG/SVG/vehicle/Diesel.tsx +28 -28
  809. package/source/components/_common/IconSVG/SVG/vehicle/Display.tsx +25 -25
  810. package/source/components/_common/IconSVG/SVG/vehicle/Done.tsx +11 -11
  811. package/source/components/_common/IconSVG/SVG/vehicle/Door.tsx +19 -19
  812. package/source/components/_common/IconSVG/SVG/vehicle/DoubleDone.tsx +18 -18
  813. package/source/components/_common/IconSVG/SVG/vehicle/EditIcon.tsx +11 -11
  814. package/source/components/_common/IconSVG/SVG/vehicle/EmergencyBrakeAssistant.tsx +27 -27
  815. package/source/components/_common/IconSVG/SVG/vehicle/Eps.tsx +24 -24
  816. package/source/components/_common/IconSVG/SVG/vehicle/Esp.tsx +24 -24
  817. package/source/components/_common/IconSVG/SVG/vehicle/FinancingIcon.tsx +20 -20
  818. package/source/components/_common/IconSVG/SVG/vehicle/FuelConsumption.tsx +20 -20
  819. package/source/components/_common/IconSVG/SVG/vehicle/Fueling.tsx +22 -22
  820. package/source/components/_common/IconSVG/SVG/vehicle/FullDrive.tsx +24 -24
  821. package/source/components/_common/IconSVG/SVG/vehicle/GasElectric.tsx +28 -28
  822. package/source/components/_common/IconSVG/SVG/vehicle/HandsFreePhoneSystem.tsx +24 -24
  823. package/source/components/_common/IconSVG/SVG/vehicle/Kw.tsx +23 -23
  824. package/source/components/_common/IconSVG/SVG/vehicle/LastCrawledAt.tsx +22 -22
  825. package/source/components/_common/IconSVG/SVG/vehicle/LeasingIcon.tsx +14 -14
  826. package/source/components/_common/IconSVG/SVG/vehicle/Led.tsx +24 -24
  827. package/source/components/_common/IconSVG/SVG/vehicle/LightSensor.tsx +22 -22
  828. package/source/components/_common/IconSVG/SVG/vehicle/LinkAlternative.tsx +15 -15
  829. package/source/components/_common/IconSVG/SVG/vehicle/Location.tsx +17 -17
  830. package/source/components/_common/IconSVG/SVG/vehicle/MinusIcon.tsx +11 -11
  831. package/source/components/_common/IconSVG/SVG/vehicle/Mirror.tsx +19 -19
  832. package/source/components/_common/IconSVG/SVG/vehicle/Navigation.tsx +27 -27
  833. package/source/components/_common/IconSVG/SVG/vehicle/NewCar.tsx +21 -21
  834. package/source/components/_common/IconSVG/SVG/vehicle/NoImage.tsx +17 -17
  835. package/source/components/_common/IconSVG/SVG/vehicle/Owner.tsx +18 -18
  836. package/source/components/_common/IconSVG/SVG/vehicle/PanoramicRoof.tsx +23 -23
  837. package/source/components/_common/IconSVG/SVG/vehicle/ParkingAssistants.tsx +24 -24
  838. package/source/components/_common/IconSVG/SVG/vehicle/PickYourself.tsx +18 -18
  839. package/source/components/_common/IconSVG/SVG/vehicle/PlusIcon.tsx +11 -11
  840. package/source/components/_common/IconSVG/SVG/vehicle/Power.tsx +21 -21
  841. package/source/components/_common/IconSVG/SVG/vehicle/Ps.tsx +19 -19
  842. package/source/components/_common/IconSVG/SVG/vehicle/Question.tsx +24 -24
  843. package/source/components/_common/IconSVG/SVG/vehicle/Seats.tsx +21 -21
  844. package/source/components/_common/IconSVG/SVG/vehicle/SeatsHeating.tsx +26 -26
  845. package/source/components/_common/IconSVG/SVG/vehicle/SelectorGearboxAutomatic.tsx +24 -24
  846. package/source/components/_common/IconSVG/SVG/vehicle/SelectorGearboxManualShift.tsx +19 -19
  847. package/source/components/_common/IconSVG/SVG/vehicle/SelectorGearboxOther.tsx +24 -24
  848. package/source/components/_common/IconSVG/SVG/vehicle/SelectorGearboxSemiAutomatic.tsx +30 -30
  849. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeAlcantara.tsx +225 -225
  850. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeFabric.tsx +29 -29
  851. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeFullLeather.tsx +29 -29
  852. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeOther.tsx +26 -26
  853. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypePartLeather.tsx +142 -142
  854. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeSyntheticLeather.tsx +27 -27
  855. package/source/components/_common/IconSVG/SVG/vehicle/SelectorInteriorTypeVelours.tsx +39 -39
  856. package/source/components/_common/IconSVG/SVG/vehicle/Shield.tsx +39 -39
  857. package/source/components/_common/IconSVG/SVG/vehicle/Speedometer.tsx +17 -17
  858. package/source/components/_common/IconSVG/SVG/vehicle/StartStopSystem.tsx +30 -30
  859. package/source/components/_common/IconSVG/SVG/vehicle/Stop.tsx +25 -25
  860. package/source/components/_common/IconSVG/SVG/vehicle/TickMark.tsx +21 -21
  861. package/source/components/_common/IconSVG/SVG/vehicle/TrafficSignRecognition.tsx +29 -29
  862. package/source/components/_common/IconSVG/SVG/vehicle/TrailerCoupling.tsx +24 -24
  863. package/source/components/_common/IconSVG/SVG/vehicle/Transmission.tsx +27 -27
  864. package/source/components/_common/IconSVG/SVG/vehicle/Wheel.tsx +43 -43
  865. package/source/components/_common/IconSVG/SVG/vehicle/Wipers.tsx +22 -22
  866. package/source/components/_common/IconSVG/SVG/vehicle/Wrench.tsx +17 -17
  867. package/source/components/_common/Image/Image.story.js +142 -142
  868. package/source/components/_common/Image/Image.story.styl +18 -18
  869. package/source/components/_common/Image/Image.styl +109 -109
  870. package/source/components/_common/Image/Image.tsx +302 -302
  871. package/source/components/_common/ImagesSet/ImagesSet.story.js +34 -34
  872. package/source/components/_common/ImagesSet/ImagesSet.story.styl +3 -3
  873. package/source/components/_common/ImagesSet/ImagesSet.styl +27 -27
  874. package/source/components/_common/ImagesSet/ImagesSet.tsx +76 -76
  875. package/source/components/_common/Loader/Loader.story.js +21 -21
  876. package/source/components/_common/Loader/Loader.styl +39 -39
  877. package/source/components/_common/Loader/Loader.tsx +32 -32
  878. package/source/components/_common/MagnifyGlass/MagnifyGlass.styl +33 -33
  879. package/source/components/_common/MagnifyGlass/MagnifyGlass.tsx +213 -213
  880. package/source/components/_common/MaterialAccordion/MaterialAccordion.tsx +149 -149
  881. package/source/components/_common/MaterialAccordionGroup/MaterialAccordionGroup.story.js +49 -49
  882. package/source/components/_common/MaterialAccordionGroup/MaterialAccordionGroup.styled.tsx +71 -71
  883. package/source/components/_common/MaterialAccordionGroup/MaterialAccordionGroup.tsx +40 -40
  884. package/source/components/_common/MaterialAutocomplete/MaterialAutocomplete.styled.tsx +204 -204
  885. package/source/components/_common/MaterialAutocomplete/MaterialAutocomplete.tsx +248 -248
  886. package/source/components/_common/MaterialDatePicker/MaterialDatePicker.story.js +45 -45
  887. package/source/components/_common/MaterialDatePicker/MaterialDatePicker.story.styl +5 -5
  888. package/source/components/_common/MaterialDatePicker/MaterialDatePicker.styled.tsx +21 -21
  889. package/source/components/_common/MaterialDatePicker/MaterialDatePicker.tsx +112 -112
  890. package/source/components/_common/MaterialField/MaterialField.story.js +87 -87
  891. package/source/components/_common/MaterialField/MaterialField.story.styl +33 -33
  892. package/source/components/_common/MaterialField/MaterialField.styled.tsx +52 -52
  893. package/source/components/_common/MaterialField/MaterialField.tsx +129 -129
  894. package/source/components/_common/MaterialSelect/MaterialSelect.story.js +52 -52
  895. package/source/components/_common/MaterialSelect/MaterialSelect.story.styl +5 -5
  896. package/source/components/_common/MaterialSelect/MaterialSelect.styled.tsx +126 -126
  897. package/source/components/_common/MaterialSelect/MaterialSelect.tsx +222 -222
  898. package/source/components/_common/MaterialStepButton/MaterialStepButton.story.js +47 -47
  899. package/source/components/_common/MaterialStepButton/MaterialStepButton.story.styl +5 -5
  900. package/source/components/_common/MaterialStepButton/MaterialStepButton.styl +32 -32
  901. package/source/components/_common/MaterialStepButton/MaterialStepButton.tsx +61 -61
  902. package/source/components/_common/MaterialSwitch/MaterialSwitch.story.js +17 -17
  903. package/source/components/_common/MaterialSwitch/MaterialSwitch.styled.tsx +5 -5
  904. package/source/components/_common/MaterialSwitch/MaterialSwitch.tsx +35 -35
  905. package/source/components/_common/MaterialTooltip/MaterialTooltip.story.js +10 -10
  906. package/source/components/_common/MaterialTooltip/MaterialTooltip.styled.tsx +24 -24
  907. package/source/components/_common/MaterialTooltip/MaterialTooltip.tsx +87 -87
  908. package/source/components/_common/Modal/CookieModal.tsx +40 -40
  909. package/source/components/_common/Modal/Modal.story.js +37 -37
  910. package/source/components/_common/Modal/Modal.styled.tsx +13 -13
  911. package/source/components/_common/Modal/Modal.tsx +27 -27
  912. package/source/components/_common/Modal/ModalsConfig.tsx +19 -19
  913. package/source/components/_common/Modal/modals/ManageCookieModal/ManageCookieModal.styl +67 -67
  914. package/source/components/_common/Modal/modals/ManageCookieModal/ManageCookieModal.tsx +147 -147
  915. package/source/components/_common/Modal/modals/PreviewCookieModal/PreviewCookieModal.styl +44 -44
  916. package/source/components/_common/Modal/modals/PreviewCookieModal/PreviewCookieModal.tsx +33 -33
  917. package/source/components/_common/Modal/modals/TestModal.tsx +7 -7
  918. package/source/components/_common/MuiDropDown/MuiDropDown.tsx +93 -93
  919. package/source/components/_common/MuiGroupedSelect/MuiGroupedSelect.story.js +21 -21
  920. package/source/components/_common/MuiGroupedSelect/MuiGroupedSelect.tsx +87 -87
  921. package/source/components/_common/OfferRequestButtonWrapper/OfferRequestButtonWrapper.styl +119 -119
  922. package/source/components/_common/OfferRequestButtonWrapper/OfferRequestButtonWrapper.styled.tsx +23 -23
  923. package/source/components/_common/OfferRequestButtonWrapper/OfferRequestButtonWrapper.tsx +114 -114
  924. package/source/components/_common/PropertySelector/PSGroup.story.js +93 -93
  925. package/source/components/_common/PropertySelector/PSGroup.story.styl +25 -25
  926. package/source/components/_common/PropertySelector/PSGroup.styl +5 -5
  927. package/source/components/_common/PropertySelector/PSGroup.tsx +98 -98
  928. package/source/components/_common/PropertySelector/PropertySelector.styl +139 -139
  929. package/source/components/_common/PropertySelector/PropertySelector.tsx +100 -100
  930. package/source/components/_common/PropertySelector/ProperySelector.story.js +83 -83
  931. package/source/components/_common/Radio/FormRadioGroup.story.js +28 -28
  932. package/source/components/_common/Radio/FormRadioGroup.story.styl +2 -2
  933. package/source/components/_common/Radio/FormRadioGroup.styl +22 -22
  934. package/source/components/_common/Radio/FormRadioGroup.tsx +52 -52
  935. package/source/components/_common/Radio/Radio.story.js +54 -54
  936. package/source/components/_common/Radio/Radio.styl +115 -115
  937. package/source/components/_common/Radio/Radio.tsx +141 -141
  938. package/source/components/_common/Radio/RadioGroup.story.js +90 -90
  939. package/source/components/_common/Radio/RadioGroup.story.styl +39 -39
  940. package/source/components/_common/Radio/RadioGroup.styl +5 -5
  941. package/source/components/_common/Radio/RadioGroup.tsx +65 -65
  942. package/source/components/_common/Range/Range.story.js +46 -46
  943. package/source/components/_common/Range/Range.story.styl +4 -4
  944. package/source/components/_common/Range/Range.styl +71 -71
  945. package/source/components/_common/Range/Range.tsx +69 -69
  946. package/source/components/_common/Skeleton/SkeletonItem.styl +80 -80
  947. package/source/components/_common/Skeleton/SkeletonItem.tsx +80 -80
  948. package/source/components/_common/Skeleton/SkeletonSearchItem.styl +123 -123
  949. package/source/components/_common/Skeleton/SkeletonSearchItem.tsx +92 -92
  950. package/source/components/_common/Slider/Slider.styl +2 -2
  951. package/source/components/_common/Slider/Slider.tsx +130 -130
  952. package/source/components/_common/SliderArrow/SliderArrow.story.js +18 -18
  953. package/source/components/_common/SliderArrow/SliderArrow.styl +32 -32
  954. package/source/components/_common/SliderArrow/SliderArrow.tsx +36 -36
  955. package/source/components/_common/StarButton/StarButton.styl +39 -39
  956. package/source/components/_common/StarButton/StarButton.tsx +31 -31
  957. package/source/components/_common/Tabs/TabPanel.tsx +28 -28
  958. package/source/components/_common/Tabs/Tabs.story.js +55 -55
  959. package/source/components/_common/Tabs/Tabs.styl +40 -40
  960. package/source/components/_common/Tabs/Tabs.tsx +44 -44
  961. package/source/components/_common/TextAreaField/TextAreaField.styl +47 -47
  962. package/source/components/_common/TextAreaField/TextAreaField.tsx +74 -74
  963. package/source/components/_common/TextField/FormTextField.story.js +21 -21
  964. package/source/components/_common/TextField/FormTextField.styl +35 -35
  965. package/source/components/_common/TextField/FormTextField.tsx +54 -54
  966. package/source/components/_common/TextField/TextField.styl +37 -37
  967. package/source/components/_common/TextField/TextField.tsx +77 -77
  968. package/source/components/_common/TimePicker/TimePicker.story.js +37 -37
  969. package/source/components/_common/TimePicker/TimePicker.styl +22 -22
  970. package/source/components/_common/TimePicker/TimePicker.tsx +155 -155
  971. package/source/components/_common/Tooltip/Tooltip.story.js +28 -28
  972. package/source/components/_common/Tooltip/Tooltip.styl +117 -117
  973. package/source/components/_common/Tooltip/Tooltip.tsx +62 -62
  974. package/source/components/_common/UserMenu/MaterialMenu.story.js +73 -73
  975. package/source/components/_common/UserMenu/MaterialMenu.styled.tsx +85 -85
  976. package/source/components/_common/UserMenu/MaterialMenu.tsx +101 -101
  977. package/source/components/_common/UserMenu/MaterialMenuItem.tsx +54 -54
  978. package/source/components/_common/UserMenu/NestedMenu.tsx +59 -59
  979. package/source/components/_common/Usp/Usp.styl +78 -78
  980. package/source/components/_common/Usp/Usp.tsx +30 -30
  981. package/source/components/_common/VehicleSlider/VehicleSlider.story.js +99 -99
  982. package/source/components/_common/VehicleSlider/VehicleSlider.styl +62 -62
  983. package/source/components/_common/VehicleSlider/VehicleSlider.tsx +125 -125
  984. package/source/components/_common/VehicleSlider/VehicleSliderForSRL.tsx +167 -167
  985. package/source/components/_common/withLabel/withLabel.story.js +62 -62
  986. package/source/components/_common/withLabel/withLabel.styl +33 -33
  987. package/source/components/_common/withLabel/withLabel.tsx +44 -44
  988. package/source/components/_common/withPopover/withPopover.story.js +48 -48
  989. package/source/components/_common/withPopover/withPopover.story.styl +53 -53
  990. package/source/components/_common/withPopover/withPopover.styl +3 -3
  991. package/source/components/_common/withPopover/withPopover.tsx +88 -88
  992. package/source/components/_common/withStats/withStats.story.js +75 -75
  993. package/source/components/_common/withStats/withStats.styl +150 -150
  994. package/source/components/_common/withStats/withStats.tsx +179 -179
  995. package/source/components/containers/DasboardSection/DashboardSection.styl +14 -14
  996. package/source/components/containers/DasboardSection/DashboardSection.tsx +23 -23
  997. package/source/components/containers/SearchPage/FiltersContainer/FiltersContainer.styl +54 -54
  998. package/source/components/containers/SearchPage/FiltersContainer/FiltersContainer.tsx +419 -419
  999. package/source/framework/DataTransformers.ts +80 -80
  1000. package/source/framework/constants/RateSearchWidget.ts +15 -15
  1001. package/source/framework/constants/Search.ts +290 -290
  1002. package/source/framework/constants/SearchWidget.ts +108 -108
  1003. package/source/framework/constants/app.ts +223 -223
  1004. package/source/framework/constants/cars.ts +36 -36
  1005. package/source/framework/constants/common.ts +30 -30
  1006. package/source/framework/constants/data.ts +52 -52
  1007. package/source/framework/constants/filters.ts +11 -11
  1008. package/source/framework/constants/highlights.ts +165 -165
  1009. package/source/framework/constants/price.ts +9 -9
  1010. package/source/framework/constants/queryBuilder.ts +4 -4
  1011. package/source/framework/constants/selectors.ts +38 -38
  1012. package/source/framework/constants.ts +116 -116
  1013. package/source/framework/data.ts +6 -6
  1014. package/source/framework/factories/BreadcrumbsFactory.tsx +285 -285
  1015. package/source/framework/factories/FactoryTypes.d.ts +30 -30
  1016. package/source/framework/factories/FilterFactory.ts +364 -364
  1017. package/source/framework/factories/ModalsFactory.tsx +11 -11
  1018. package/source/framework/hooks/useModal.ts +13 -13
  1019. package/source/framework/schemes/AggregationScheme.ts +73 -73
  1020. package/source/framework/types/types.ts +344 -344
  1021. package/source/framework/utils/CommonUtils.ts +582 -582
  1022. package/source/framework/utils/CookieUtils.ts +61 -61
  1023. package/source/framework/utils/DateUtils.ts +93 -93
  1024. package/source/framework/utils/FiltersUtils.ts +234 -234
  1025. package/source/framework/utils/RequestUtils.ts +20 -20
  1026. package/source/framework/utils/StyledComponent.ts +2 -2
  1027. package/source/framework/vehiclesProps/cbdSelectors.ts +117 -117
  1028. package/source/framework/vehiclesProps/decoratedLightProps.tsx +345 -345
  1029. package/source/framework/vehiclesProps/decoratedProps.tsx +1057 -1057
  1030. package/source/framework/vehiclesProps/equipment.ts +129 -129
  1031. package/source/framework/vehiclesProps/highlights.ts +54 -54
  1032. package/source/framework/vehiclesProps/vehicleDetails.ts +329 -329
  1033. package/source/globals.d.ts +18 -18
  1034. package/source/locales/SearchDetailedPage.ts +205 -205
  1035. package/source/locales/SearchPage.ts +224 -224
  1036. package/source/locales/cbd.ts +719 -719
  1037. package/source/locales/common.ts +109 -109
  1038. package/source/locales/data.ts +1078 -1078
  1039. package/source/locales/priceRating.ts +10 -10
  1040. package/source/locales/sortingOptions.ts +21 -21
  1041. package/source/theme/colors.styl +46 -46
  1042. package/source/theme/mixins.styl +93 -93
  1043. package/source/theme/priceReviewColors.styl +12 -12
  1044. package/source/theme/selector_colors.styl +61 -61
  1045. package/source/theme/slider.global.styl +3 -3
  1046. package/source/theme/theme.styl +136 -136
  1047. package/tsconfig.json +65 -65
  1048. package/tslint.json +39 -39
  1049. package/utils.ts +57 -57
  1050. package/source/components/_common/CheckboxMaterial/FormCheckboxMaterial.styl +0 -22
  1051. package/source/components/_common/CheckboxMaterial/FormCheckboxMaterial.tsx +0 -50
  1052. package/source/components/_common/PropertySelector/FormPSGroup.story.js +0 -36
  1053. package/source/components/_common/PropertySelector/FormPSGroup.story.styl +0 -5
  1054. package/source/components/_common/PropertySelector/FormPSGroup.styl +0 -22
  1055. package/source/components/_common/PropertySelector/FormPSGroup.tsx +0 -54
package/landing.ts CHANGED
@@ -1,38 +1,38 @@
1
- // Common components
2
- export { default as Button } from './source/components/_common/Button/Button';
3
- export { default as Checkbox } from './source/components/_common/Checkbox/Checkbox';
4
- export { default as CheckboxMaterial } from './source/components/_common/CheckboxMaterial/CheckboxMaterial';
5
- export { default as ChipList } from './source/components/_common/ChipList/ChipList';
6
- export { default as FormattedNumber } from './source/components/FormattedNumber/FormattedNumber';
7
- export { default as VehiclePromoSlider } from './source/components/VehiclePromoSlider/VehiclePromoSlider';
8
- export { default as VehicleSmallCard } from './source/components/VehicleSmallCard/VehicleSmallCard';
9
- export { default as AdvantageItem } from './source/components/AdvantageItem/AdvantageItem';
10
- export { default as ImagesSet } from './source/components/_common/ImagesSet/ImagesSet';
11
- export { default as SliderArrow } from './source/components/_common/SliderArrow/SliderArrow';
12
- export { default as Image } from './source/components/_common/Image/Image';
13
- export { default as IconSVG } from './source/components/_common/IconSVG/IconSVG';
14
- // export { default as withPopover } from './source/components/_common/withPopover/withPopover';
15
- export { default as TickerText } from './source/components/TickerText/TickerText';
16
- export { default as CustomerQuotes } from './source/components/CustomerQuote/CustomerQuote';
17
-
18
- // Filters
19
- export { default as FilterBlock } from './source/components/SearchFilters/common/FilterBlock/FilterBlock';
20
-
21
- export { default as Color } from './source/components/SearchFilters/common/Color/Color';
22
- export { default as RangeControlled } from './source/components/SearchFilters/common/RangeControlled/RangeControlled';
23
-
24
- export { default as MakeModel } from './source/components/SearchFilters/filters/MakeModel';
25
- export { default as Consumption } from './source/components/SearchFilters/filters/Consumption';
26
- export { default as Damaged } from './source/components/SearchFilters/filters/Damaged';
27
- export { default as Doors } from './source/components/SearchFilters/filters/Doors';
28
- export { default as DriveType } from './source/components/SearchFilters/filters/DriveType';
29
- export { default as EmissionClass } from './source/components/SearchFilters/filters/EmissionClass';
30
- export { default as EmissionSticker } from './source/components/SearchFilters/filters/EmissionSticker';
31
- export { default as Fuel } from './source/components/SearchFilters/filters/Fuel';
32
- export { default as Highlights } from './source/components/SearchFilters/filters/Highlights';
33
- export { default as InteriorType } from './source/components/SearchFilters/filters/InteriorMaterial';
34
- export { default as Owners } from './source/components/SearchFilters/filters/Owners';
35
- export { default as Seats } from './source/components/SearchFilters/filters/Seats';
36
- export { default as StateOptions } from './source/components/SearchFilters/filters/StateOptions';
37
- export { default as Transmission } from './source/components/SearchFilters/filters/Transmission';
38
- export { default as Cost } from './source/components/SearchFilters/filters/Cost';
1
+ // Common components
2
+ export { default as Button } from './source/components/_common/Button/Button';
3
+ export { default as Checkbox } from './source/components/_common/Checkbox/Checkbox';
4
+ export { default as CheckboxMaterial } from './source/components/_common/CheckboxMaterial/CheckboxMaterial';
5
+ export { default as ChipList } from './source/components/_common/ChipList/ChipList';
6
+ export { default as FormattedNumber } from './source/components/FormattedNumber/FormattedNumber';
7
+ export { default as VehiclePromoSlider } from './source/components/VehiclePromoSlider/VehiclePromoSlider';
8
+ export { default as VehicleSmallCard } from './source/components/VehicleSmallCard/VehicleSmallCard';
9
+ export { default as AdvantageItem } from './source/components/AdvantageItem/AdvantageItem';
10
+ export { default as ImagesSet } from './source/components/_common/ImagesSet/ImagesSet';
11
+ export { default as SliderArrow } from './source/components/_common/SliderArrow/SliderArrow';
12
+ export { default as Image } from './source/components/_common/Image/Image';
13
+ export { default as IconSVG } from './source/components/_common/IconSVG/IconSVG';
14
+ // export { default as withPopover } from './source/components/_common/withPopover/withPopover';
15
+ export { default as TickerText } from './source/components/TickerText/TickerText';
16
+ export { default as CustomerQuotes } from './source/components/CustomerQuote/CustomerQuote';
17
+
18
+ // Filters
19
+ export { default as FilterBlock } from './source/components/SearchFilters/common/FilterBlock/FilterBlock';
20
+
21
+ export { default as Color } from './source/components/SearchFilters/common/Color/Color';
22
+ export { default as RangeControlled } from './source/components/SearchFilters/common/RangeControlled/RangeControlled';
23
+
24
+ export { default as MakeModel } from './source/components/SearchFilters/filters/MakeModel';
25
+ export { default as Consumption } from './source/components/SearchFilters/filters/Consumption';
26
+ export { default as Damaged } from './source/components/SearchFilters/filters/Damaged';
27
+ export { default as Doors } from './source/components/SearchFilters/filters/Doors';
28
+ export { default as DriveType } from './source/components/SearchFilters/filters/DriveType';
29
+ export { default as EmissionClass } from './source/components/SearchFilters/filters/EmissionClass';
30
+ export { default as EmissionSticker } from './source/components/SearchFilters/filters/EmissionSticker';
31
+ export { default as Fuel } from './source/components/SearchFilters/filters/Fuel';
32
+ export { default as Highlights } from './source/components/SearchFilters/filters/Highlights';
33
+ export { default as InteriorType } from './source/components/SearchFilters/filters/InteriorMaterial';
34
+ export { default as Owners } from './source/components/SearchFilters/filters/Owners';
35
+ export { default as Seats } from './source/components/SearchFilters/filters/Seats';
36
+ export { default as StateOptions } from './source/components/SearchFilters/filters/StateOptions';
37
+ export { default as Transmission } from './source/components/SearchFilters/filters/Transmission';
38
+ export { default as Cost } from './source/components/SearchFilters/filters/Cost';
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="cart_svg__Capa_1" x="0" y="0" viewBox="0 0 486.569 486.569">
2
- <path fill="#005CCB"
3
- d="M146.069 320.369h268.1c30.4 0 55.2-24.8 55.2-55.2v-112.8-.4-.8c0-.2 0-.4-.1-.6 0-.2-.1-.5-.1-.7s-.1-.4-.1-.6c-.1-.2-.1-.4-.2-.7-.1-.2-.1-.4-.2-.6-.1-.2-.1-.4-.2-.6-.1-.2-.2-.4-.3-.7-.1-.2-.2-.4-.3-.5l-.3-.6c-.1-.2-.2-.3-.3-.5-.1-.2-.3-.4-.4-.6-.1-.2-.2-.3-.4-.5-.1-.2-.3-.3-.4-.5s-.3-.3-.4-.5-.3-.3-.4-.4l-.5-.5c-.2-.1-.3-.3-.5-.4-.2-.1-.4-.3-.6-.4-.2-.1-.3-.2-.5-.3s-.4-.2-.6-.4l-.6-.3-.6-.3-.6-.3c-.2-.1-.4-.1-.6-.2-.2-.1-.5-.2-.7-.2s-.4-.1-.5-.1c-.3-.1-.5-.1-.8-.1-.1 0-.2-.1-.4-.1l-339.8-46.9v-47.4c0-.5 0-1-.1-1.4 0-.1 0-.2-.1-.4 0-.3-.1-.6-.1-.9-.1-.3-.1-.5-.2-.8 0-.2-.1-.3-.1-.5l-.3-.9c0-.1-.1-.3-.1-.4-.1-.3-.2-.5-.4-.8-.1-.1-.1-.3-.2-.4-.1-.2-.2-.4-.4-.6-.1-.2-.2-.3-.3-.5s-.2-.3-.3-.5-.3-.4-.4-.6l-.3-.3-.6-.6-.3-.3c-.2-.2-.4-.4-.7-.6-.1-.1-.3-.2-.4-.3-.2-.2-.4-.3-.6-.5-.3-.2-.6-.4-.8-.5-.1-.1-.2-.1-.3-.2-.4-.2-.9-.4-1.3-.6l-73.7-31c-6.9-2.9-14.8.3-17.7 7.2s.3 14.8 7.2 17.7l65.4 27.6v295.8c0 28 21 51.2 48.1 54.7-4.9 8.2-7.8 17.8-7.8 28 0 30.1 24.5 54.5 54.5 54.5s54.5-24.5 54.5-54.5c0-10-2.7-19.5-7.5-27.5h121.4c-4.8 8.1-7.5 17.5-7.5 27.5 0 30.1 24.5 54.5 54.5 54.5s54.5-24.5 54.5-54.5-24.5-54.5-54.5-54.5h-255c-15.6 0-28.2-12.7-28.2-28.2v-36.6c8.2 4.8 17.9 7.6 28.2 7.6zm67.2 111.6c0 15.2-12.4 27.5-27.5 27.5s-27.5-12.4-27.5-27.5 12.4-27.5 27.5-27.5 27.5 12.3 27.5 27.5zm215.4 0c0 15.2-12.4 27.5-27.5 27.5s-27.5-12.4-27.5-27.5 12.4-27.5 27.5-27.5 27.5 12.3 27.5 27.5zm-14.5-138.6h-268.1c-15.6 0-28.2-12.7-28.2-28.2v-145.9l324.5 44.7v101.1c0 15.7-12.7 28.3-28.2 28.3z"/>
4
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="cart_svg__Capa_1" x="0" y="0" viewBox="0 0 486.569 486.569">
2
+ <path fill="#005CCB"
3
+ d="M146.069 320.369h268.1c30.4 0 55.2-24.8 55.2-55.2v-112.8-.4-.8c0-.2 0-.4-.1-.6 0-.2-.1-.5-.1-.7s-.1-.4-.1-.6c-.1-.2-.1-.4-.2-.7-.1-.2-.1-.4-.2-.6-.1-.2-.1-.4-.2-.6-.1-.2-.2-.4-.3-.7-.1-.2-.2-.4-.3-.5l-.3-.6c-.1-.2-.2-.3-.3-.5-.1-.2-.3-.4-.4-.6-.1-.2-.2-.3-.4-.5-.1-.2-.3-.3-.4-.5s-.3-.3-.4-.5-.3-.3-.4-.4l-.5-.5c-.2-.1-.3-.3-.5-.4-.2-.1-.4-.3-.6-.4-.2-.1-.3-.2-.5-.3s-.4-.2-.6-.4l-.6-.3-.6-.3-.6-.3c-.2-.1-.4-.1-.6-.2-.2-.1-.5-.2-.7-.2s-.4-.1-.5-.1c-.3-.1-.5-.1-.8-.1-.1 0-.2-.1-.4-.1l-339.8-46.9v-47.4c0-.5 0-1-.1-1.4 0-.1 0-.2-.1-.4 0-.3-.1-.6-.1-.9-.1-.3-.1-.5-.2-.8 0-.2-.1-.3-.1-.5l-.3-.9c0-.1-.1-.3-.1-.4-.1-.3-.2-.5-.4-.8-.1-.1-.1-.3-.2-.4-.1-.2-.2-.4-.4-.6-.1-.2-.2-.3-.3-.5s-.2-.3-.3-.5-.3-.4-.4-.6l-.3-.3-.6-.6-.3-.3c-.2-.2-.4-.4-.7-.6-.1-.1-.3-.2-.4-.3-.2-.2-.4-.3-.6-.5-.3-.2-.6-.4-.8-.5-.1-.1-.2-.1-.3-.2-.4-.2-.9-.4-1.3-.6l-73.7-31c-6.9-2.9-14.8.3-17.7 7.2s.3 14.8 7.2 17.7l65.4 27.6v295.8c0 28 21 51.2 48.1 54.7-4.9 8.2-7.8 17.8-7.8 28 0 30.1 24.5 54.5 54.5 54.5s54.5-24.5 54.5-54.5c0-10-2.7-19.5-7.5-27.5h121.4c-4.8 8.1-7.5 17.5-7.5 27.5 0 30.1 24.5 54.5 54.5 54.5s54.5-24.5 54.5-54.5-24.5-54.5-54.5-54.5h-255c-15.6 0-28.2-12.7-28.2-28.2v-36.6c8.2 4.8 17.9 7.6 28.2 7.6zm67.2 111.6c0 15.2-12.4 27.5-27.5 27.5s-27.5-12.4-27.5-27.5 12.4-27.5 27.5-27.5 27.5 12.3 27.5 27.5zm215.4 0c0 15.2-12.4 27.5-27.5 27.5s-27.5-12.4-27.5-27.5 12.4-27.5 27.5-27.5 27.5 12.3 27.5 27.5zm-14.5-138.6h-268.1c-15.6 0-28.2-12.7-28.2-28.2v-145.9l324.5 44.7v101.1c0 15.7-12.7 28.3-28.2 28.3z"/>
4
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="checked_svg__Capa_1" x="0" y="0" viewBox="0 0 186.238 186.238">
2
- <path fill="#005CCB"
3
- d="M141.483 135.329l-3.353 3.389-2.59-2.596c.722-.674 1.486-1.283 2.184-1.981 30.64-30.64 30.64-80.493 0-111.145C122.89 8.163 103.158 0 82.172 0c-20.997 0-40.73 8.163-55.575 23.008-30.64 30.64-30.646 80.493-.012 111.133 14.846 14.84 34.578 23.008 55.569 23.008 18.396 0 35.825-6.283 49.847-17.811l2.763 2.763-3.353 3.371 41.142 40.766 10.072-10.174-41.142-40.735zm-111.509-4.553c-28.772-28.772-28.766-75.6.006-104.373C43.925 12.465 62.464 4.785 82.184 4.785c19.709 0 38.248 7.667 52.186 21.606 28.772 28.784 28.772 75.612 0 104.384-13.939 13.939-32.478 21.618-52.204 21.618-19.72.001-38.253-7.679-52.192-21.617zm95.13-63.541c-1.939-14.577-9.971-25.234-19.87-25.234h-46.13c-9.899 0-17.93 10.633-19.876 25.234-7.083 3.61-10.806 11.015-10.806 19.649 0 6.629 2.226 12.507 6.426 16.546v13.837H51.95v-8.348h60.432v8.348h17.095V103.43c4.201-4.052 6.426-9.917 6.426-16.546.013-8.634-3.71-16.033-10.799-19.649zm-66-20.091h46.13c6.51 0 12.202 7.703 14.309 18.145-1.05-.197-2.208-.257-3.353-.316 0-.048.012-.084.012-.125 0-6.05-4.923-10.979-10.979-10.979-6.044 0-10.967 4.929-10.967 10.979h-44.71c-1.689 0-3.27.161-4.768.442 2.13-10.443 7.823-18.146 14.326-18.146zm53.69 17.704H97.692c0-4.159 3.389-7.566 7.548-7.566 4.165 0 7.554 3.401 7.554 7.566zM47.004 94.05a7.163 7.163 0 0 1-7.16-7.166c0-3.95 3.21-7.154 7.16-7.154 3.956 0 7.166 3.204 7.166 7.154a7.164 7.164 0 0 1-7.166 7.166zm55.963-1.283H61.366a1.702 1.702 0 0 1-1.712-1.701c0-.943.764-1.712 1.712-1.712h41.601c.949 0 1.712.77 1.712 1.712s-.757 1.701-1.712 1.701zm0-6.265H61.366a1.71 1.71 0 0 1-1.712-1.701c0-.955.764-1.712 1.712-1.712h41.601c.949 0 1.712.758 1.712 1.712a1.702 1.702 0 0 1-1.712 1.701zm14.38 7.548a7.164 7.164 0 0 1-7.166-7.166c0-3.95 3.21-7.154 7.166-7.154a7.157 7.157 0 0 1 7.16 7.154 7.163 7.163 0 0 1-7.16 7.166z"></path>
4
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="checked_svg__Capa_1" x="0" y="0" viewBox="0 0 186.238 186.238">
2
+ <path fill="#005CCB"
3
+ d="M141.483 135.329l-3.353 3.389-2.59-2.596c.722-.674 1.486-1.283 2.184-1.981 30.64-30.64 30.64-80.493 0-111.145C122.89 8.163 103.158 0 82.172 0c-20.997 0-40.73 8.163-55.575 23.008-30.64 30.64-30.646 80.493-.012 111.133 14.846 14.84 34.578 23.008 55.569 23.008 18.396 0 35.825-6.283 49.847-17.811l2.763 2.763-3.353 3.371 41.142 40.766 10.072-10.174-41.142-40.735zm-111.509-4.553c-28.772-28.772-28.766-75.6.006-104.373C43.925 12.465 62.464 4.785 82.184 4.785c19.709 0 38.248 7.667 52.186 21.606 28.772 28.784 28.772 75.612 0 104.384-13.939 13.939-32.478 21.618-52.204 21.618-19.72.001-38.253-7.679-52.192-21.617zm95.13-63.541c-1.939-14.577-9.971-25.234-19.87-25.234h-46.13c-9.899 0-17.93 10.633-19.876 25.234-7.083 3.61-10.806 11.015-10.806 19.649 0 6.629 2.226 12.507 6.426 16.546v13.837H51.95v-8.348h60.432v8.348h17.095V103.43c4.201-4.052 6.426-9.917 6.426-16.546.013-8.634-3.71-16.033-10.799-19.649zm-66-20.091h46.13c6.51 0 12.202 7.703 14.309 18.145-1.05-.197-2.208-.257-3.353-.316 0-.048.012-.084.012-.125 0-6.05-4.923-10.979-10.979-10.979-6.044 0-10.967 4.929-10.967 10.979h-44.71c-1.689 0-3.27.161-4.768.442 2.13-10.443 7.823-18.146 14.326-18.146zm53.69 17.704H97.692c0-4.159 3.389-7.566 7.548-7.566 4.165 0 7.554 3.401 7.554 7.566zM47.004 94.05a7.163 7.163 0 0 1-7.16-7.166c0-3.95 3.21-7.154 7.16-7.154 3.956 0 7.166 3.204 7.166 7.154a7.164 7.164 0 0 1-7.166 7.166zm55.963-1.283H61.366a1.702 1.702 0 0 1-1.712-1.701c0-.943.764-1.712 1.712-1.712h41.601c.949 0 1.712.77 1.712 1.712s-.757 1.701-1.712 1.701zm0-6.265H61.366a1.71 1.71 0 0 1-1.712-1.701c0-.955.764-1.712 1.712-1.712h41.601c.949 0 1.712.758 1.712 1.712a1.702 1.702 0 0 1-1.712 1.701zm14.38 7.548a7.164 7.164 0 0 1-7.166-7.166c0-3.95 3.21-7.154 7.166-7.154a7.157 7.157 0 0 1 7.16 7.154 7.163 7.163 0 0 1-7.16 7.166z"></path>
4
+ </svg>
@@ -1,10 +1,10 @@
1
- <svg
2
- xmlns="http://www.w3.org/2000/svg"
3
- version="1.1"
4
- id="like_svg__Capa_1"
5
- x="0"
6
- y="0"
7
- viewBox="0 0 478.2 478.2">
8
- <path fill="#005CCB"
9
- d="M457.575 325.1c9.8-12.5 14.5-25.9 13.9-39.7-.6-15.2-7.4-27.1-13-34.4 6.5-16.2 9-41.7-12.7-61.5-15.9-14.5-42.9-21-80.3-19.2-26.3 1.2-48.3 6.1-49.2 6.3h-.1c-5 .9-10.3 2-15.7 3.2-.4-6.4.7-22.3 12.5-58.1 14-42.6 13.2-75.2-2.6-97-16.6-22.9-43.1-24.7-50.9-24.7-7.5 0-14.4 3.1-19.3 8.8-11.1 12.9-9.8 36.7-8.4 47.7-13.2 35.4-50.2 122.2-81.5 146.3-.6.4-1.1.9-1.6 1.4-9.2 9.7-15.4 20.2-19.6 29.4-5.9-3.2-12.6-5-19.8-5h-61c-23 0-41.6 18.7-41.6 41.6v162.5c0 23 18.7 41.6 41.6 41.6h61c8.9 0 17.2-2.8 24-7.6l23.5 2.8c3.6.5 67.6 8.6 133.3 7.3 11.9.9 23.1 1.4 33.5 1.4 17.9 0 33.5-1.4 46.5-4.2 30.6-6.5 51.5-19.5 62.1-38.6 8.1-14.6 8.1-29.1 6.8-38.3 19.9-18 23.4-37.9 22.7-51.9-.4-8.1-2.2-15-4.1-20.1zm-409.3 122.2c-8.1 0-14.6-6.6-14.6-14.6V270.1c0-8.1 6.6-14.6 14.6-14.6h61c8.1 0 14.6 6.6 14.6 14.6v162.5c0 8.1-6.6 14.6-14.6 14.6h-61v.1zm383.7-133.9c-4.2 4.4-5 11.1-1.8 16.3 0 .1 4.1 7.1 4.6 16.7.7 13.1-5.6 24.7-18.8 34.6-4.7 3.6-6.6 9.8-4.6 15.4 0 .1 4.3 13.3-2.7 25.8-6.7 12-21.6 20.6-44.2 25.4-18.1 3.9-42.7 4.6-72.9 2.2h-1.4c-64.3 1.4-129.3-7-130-7.1h-.1l-10.1-1.2c.6-2.8.9-5.8.9-8.8V270.1c0-4.3-.7-8.5-1.9-12.4 1.8-6.7 6.8-21.6 18.6-34.3 44.9-35.6 88.8-155.7 90.7-160.9.8-2.1 1-4.4.6-6.7-1.7-11.2-1.1-24.9 1.3-29 5.3.1 19.6 1.6 28.2 13.5 10.2 14.1 9.8 39.3-1.2 72.7-16.8 50.9-18.2 77.7-4.9 89.5 6.6 5.9 15.4 6.2 21.8 3.9 6.1-1.4 11.9-2.6 17.4-3.5.4-.1.9-.2 1.3-.3 30.7-6.7 85.7-10.8 104.8 6.6 16.2 14.8 4.7 34.4 3.4 36.5-3.7 5.6-2.6 12.9 2.4 17.4.1.1 10.6 10 11.1 23.3.4 8.9-3.8 18-12.5 27z"/>
10
- </svg>
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ version="1.1"
4
+ id="like_svg__Capa_1"
5
+ x="0"
6
+ y="0"
7
+ viewBox="0 0 478.2 478.2">
8
+ <path fill="#005CCB"
9
+ d="M457.575 325.1c9.8-12.5 14.5-25.9 13.9-39.7-.6-15.2-7.4-27.1-13-34.4 6.5-16.2 9-41.7-12.7-61.5-15.9-14.5-42.9-21-80.3-19.2-26.3 1.2-48.3 6.1-49.2 6.3h-.1c-5 .9-10.3 2-15.7 3.2-.4-6.4.7-22.3 12.5-58.1 14-42.6 13.2-75.2-2.6-97-16.6-22.9-43.1-24.7-50.9-24.7-7.5 0-14.4 3.1-19.3 8.8-11.1 12.9-9.8 36.7-8.4 47.7-13.2 35.4-50.2 122.2-81.5 146.3-.6.4-1.1.9-1.6 1.4-9.2 9.7-15.4 20.2-19.6 29.4-5.9-3.2-12.6-5-19.8-5h-61c-23 0-41.6 18.7-41.6 41.6v162.5c0 23 18.7 41.6 41.6 41.6h61c8.9 0 17.2-2.8 24-7.6l23.5 2.8c3.6.5 67.6 8.6 133.3 7.3 11.9.9 23.1 1.4 33.5 1.4 17.9 0 33.5-1.4 46.5-4.2 30.6-6.5 51.5-19.5 62.1-38.6 8.1-14.6 8.1-29.1 6.8-38.3 19.9-18 23.4-37.9 22.7-51.9-.4-8.1-2.2-15-4.1-20.1zm-409.3 122.2c-8.1 0-14.6-6.6-14.6-14.6V270.1c0-8.1 6.6-14.6 14.6-14.6h61c8.1 0 14.6 6.6 14.6 14.6v162.5c0 8.1-6.6 14.6-14.6 14.6h-61v.1zm383.7-133.9c-4.2 4.4-5 11.1-1.8 16.3 0 .1 4.1 7.1 4.6 16.7.7 13.1-5.6 24.7-18.8 34.6-4.7 3.6-6.6 9.8-4.6 15.4 0 .1 4.3 13.3-2.7 25.8-6.7 12-21.6 20.6-44.2 25.4-18.1 3.9-42.7 4.6-72.9 2.2h-1.4c-64.3 1.4-129.3-7-130-7.1h-.1l-10.1-1.2c.6-2.8.9-5.8.9-8.8V270.1c0-4.3-.7-8.5-1.9-12.4 1.8-6.7 6.8-21.6 18.6-34.3 44.9-35.6 88.8-155.7 90.7-160.9.8-2.1 1-4.4.6-6.7-1.7-11.2-1.1-24.9 1.3-29 5.3.1 19.6 1.6 28.2 13.5 10.2 14.1 9.8 39.3-1.2 72.7-16.8 50.9-18.2 77.7-4.9 89.5 6.6 5.9 15.4 6.2 21.8 3.9 6.1-1.4 11.9-2.6 17.4-3.5.4-.1.9-.2 1.3-.3 30.7-6.7 85.7-10.8 104.8 6.6 16.2 14.8 4.7 34.4 3.4 36.5-3.7 5.6-2.6 12.9 2.4 17.4.1.1 10.6 10 11.1 23.3.4 8.9-3.8 18-12.5 27z"/>
10
+ </svg>
@@ -1,6 +1,6 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="secure_svg__Capa_1" x="0" y="0" viewBox="0 0 512 512">
2
- <path fill="#005CCB"
3
- d="M474.179 81.453c-36.628 0-66.426-29.799-66.426-66.425V0H104.246v15.028c0 36.628-29.799 66.425-66.425 66.425H22.793v99.938c0 71.815 21.633 140.966 62.563 199.976 40.93 59.009 98.117 103.501 165.379 128.663L256 512l5.266-1.97c67.263-25.162 124.45-69.653 165.378-128.663 40.93-59.01 62.563-128.161 62.563-199.976V81.453h-15.028zm-15.027 99.938h-.001c0 65.664-19.781 128.89-57.205 182.845-36.349 52.408-86.727 92.293-145.947 115.62-59.219-23.328-109.598-63.212-145.947-115.62-37.423-53.954-57.203-117.181-57.203-182.845v-71.05c41.19-6.47 73.815-39.095 80.285-80.285h245.733c6.469 41.19 39.094 73.815 80.285 80.285v71.05z"/>
4
- <path fill="#005CCB"
5
- d="M323.058 141.187l-99.477 99.478-34.641-34.641-63.758 63.759 98.399 98.399 163.235-163.236-63.758-63.759zm-155.37 128.598l21.253-21.253 34.641 34.641 99.477-99.478 21.253 21.253-120.73 120.73-55.894-55.893z"/>
6
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="secure_svg__Capa_1" x="0" y="0" viewBox="0 0 512 512">
2
+ <path fill="#005CCB"
3
+ d="M474.179 81.453c-36.628 0-66.426-29.799-66.426-66.425V0H104.246v15.028c0 36.628-29.799 66.425-66.425 66.425H22.793v99.938c0 71.815 21.633 140.966 62.563 199.976 40.93 59.009 98.117 103.501 165.379 128.663L256 512l5.266-1.97c67.263-25.162 124.45-69.653 165.378-128.663 40.93-59.01 62.563-128.161 62.563-199.976V81.453h-15.028zm-15.027 99.938h-.001c0 65.664-19.781 128.89-57.205 182.845-36.349 52.408-86.727 92.293-145.947 115.62-59.219-23.328-109.598-63.212-145.947-115.62-37.423-53.954-57.203-117.181-57.203-182.845v-71.05c41.19-6.47 73.815-39.095 80.285-80.285h245.733c6.469 41.19 39.094 73.815 80.285 80.285v71.05z"/>
4
+ <path fill="#005CCB"
5
+ d="M323.058 141.187l-99.477 99.478-34.641-34.641-63.758 63.759 98.399 98.399 163.235-163.236-63.758-63.759zm-155.37 128.598l21.253-21.253 34.641 34.641 99.477-99.478 21.253 21.253-120.73 120.73-55.894-55.893z"/>
6
+ </svg>
@@ -1,40 +1,40 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 45.701 45.7" style="enable-background:new 0 0 45.701 45.7;" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path d="M20.687,38.332c-2.072,2.072-5.434,2.072-7.505,0L1.554,26.704c-2.072-2.071-2.072-5.433,0-7.504 c2.071-2.072,5.433-2.072,7.505,0l6.928,6.927c0.523,0.522,1.372,0.522,1.896,0L36.642,7.368c2.071-2.072,5.433-2.072,7.505,0 c0.995,0.995,1.554,2.345,1.554,3.752c0,1.407-0.559,2.757-1.554,3.752L20.687,38.332z" fill="#005CCB"/>
8
- </g>
9
- </g>
10
- <g>
11
- </g>
12
- <g>
13
- </g>
14
- <g>
15
- </g>
16
- <g>
17
- </g>
18
- <g>
19
- </g>
20
- <g>
21
- </g>
22
- <g>
23
- </g>
24
- <g>
25
- </g>
26
- <g>
27
- </g>
28
- <g>
29
- </g>
30
- <g>
31
- </g>
32
- <g>
33
- </g>
34
- <g>
35
- </g>
36
- <g>
37
- </g>
38
- <g>
39
- </g>
40
- </svg>
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 45.701 45.7" style="enable-background:new 0 0 45.701 45.7;" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M20.687,38.332c-2.072,2.072-5.434,2.072-7.505,0L1.554,26.704c-2.072-2.071-2.072-5.433,0-7.504 c2.071-2.072,5.433-2.072,7.505,0l6.928,6.927c0.523,0.522,1.372,0.522,1.896,0L36.642,7.368c2.071-2.072,5.433-2.072,7.505,0 c0.995,0.995,1.554,2.345,1.554,3.752c0,1.407-0.559,2.757-1.554,3.752L20.687,38.332z" fill="#005CCB"/>
8
+ </g>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M10.462 18.2269L16.7219 22.6747L15.0658 14.2863L20.5913 8.64503L13.3074 7.90867L10.462 0L7.61674 7.90867L0.332764 8.64503L5.8583 14.2863L4.20214 22.6747L10.462 18.2269Z" fill="#F1AD46"/>
3
- </svg>
1
+ <svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.462 18.2269L16.7219 22.6747L15.0658 14.2863L20.5913 8.64503L13.3074 7.90867L10.462 0L7.61674 7.90867L0.332764 8.64503L5.8583 14.2863L4.20214 22.6747L10.462 18.2269Z" fill="#F1AD46"/>
3
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="54" height="10" viewBox="0 0 54 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6.73469 3.46939L4.89796 0L3.26531 3.46939L0 3.87755L2.44898 6.32653L1.83673 10L4.89796 8.16327L8.16327 10L7.55102 6.32653L10 3.87755L6.73469 3.46939Z" fill="#F8B805"/>
3
- <path d="M17.7347 3.46939L15.898 0L14.2653 3.46939L11 3.87755L13.449 6.32653L12.8367 10L15.898 8.16327L19.1633 10L18.551 6.32653L21 3.87755L17.7347 3.46939Z" fill="#F8B805"/>
4
- <path d="M28.7347 3.46939L26.898 0L25.2653 3.46939L22 3.87755L24.449 6.32653L23.8367 10L26.898 8.16327L30.1633 10L29.551 6.32653L32 3.87755L28.7347 3.46939Z" fill="#F8B805"/>
5
- <path d="M39.7347 3.46939L37.898 0L36.2653 3.46939L33 3.87755L35.449 6.32653L34.8367 10L37.898 8.16327L41.1633 10L40.551 6.32653L43 3.87755L39.7347 3.46939Z" fill="#F8B805"/>
6
- <path d="M50.7347 3.46939L48.898 0L47.2653 3.46939L44 3.87755L46.449 6.32653L45.8367 10L48.898 8.16327L52.1633 10L51.551 6.32653L54 3.87755L50.7347 3.46939Z" fill="#F8B805"/>
7
- </svg>
1
+ <svg width="54" height="10" viewBox="0 0 54 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.73469 3.46939L4.89796 0L3.26531 3.46939L0 3.87755L2.44898 6.32653L1.83673 10L4.89796 8.16327L8.16327 10L7.55102 6.32653L10 3.87755L6.73469 3.46939Z" fill="#F8B805"/>
3
+ <path d="M17.7347 3.46939L15.898 0L14.2653 3.46939L11 3.87755L13.449 6.32653L12.8367 10L15.898 8.16327L19.1633 10L18.551 6.32653L21 3.87755L17.7347 3.46939Z" fill="#F8B805"/>
4
+ <path d="M28.7347 3.46939L26.898 0L25.2653 3.46939L22 3.87755L24.449 6.32653L23.8367 10L26.898 8.16327L30.1633 10L29.551 6.32653L32 3.87755L28.7347 3.46939Z" fill="#F8B805"/>
5
+ <path d="M39.7347 3.46939L37.898 0L36.2653 3.46939L33 3.87755L35.449 6.32653L34.8367 10L37.898 8.16327L41.1633 10L40.551 6.32653L43 3.87755L39.7347 3.46939Z" fill="#F8B805"/>
6
+ <path d="M50.7347 3.46939L48.898 0L47.2653 3.46939L44 3.87755L46.449 6.32653L45.8367 10L48.898 8.16327L52.1633 10L51.551 6.32653L54 3.87755L50.7347 3.46939Z" fill="#F8B805"/>
7
+ </svg>
@@ -1,49 +1,49 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 294.843 294.843" style="enable-background:new 0 0 294.843 294.843;" xml:space="preserve">
5
- <g>
6
- <path d="M147.421,0c-3.313,0-6,2.687-6,6s2.687,6,6,6c74.671,0,135.421,60.75,135.421,135.421s-60.75,135.421-135.421,135.421
7
- S12,222.093,12,147.421c0-50.804,28.042-96.902,73.183-120.305c2.942-1.525,4.09-5.146,2.565-8.088
8
- c-1.525-2.942-5.147-4.09-8.088-2.565C30.524,41.937,0,92.118,0,147.421c0,81.289,66.133,147.421,147.421,147.421
9
- s147.421-66.133,147.421-147.421S228.71,0,147.421,0z"/>
10
- <path d="M205.213,71.476c-16.726-12.747-36.71-19.484-57.792-19.484c-52.62,0-95.43,42.81-95.43,95.43s42.81,95.43,95.43,95.43
11
- c25.49,0,49.455-9.926,67.479-27.951c2.343-2.343,2.343-6.142,0-8.485c-2.343-2.343-6.143-2.343-8.485,0
12
- c-15.758,15.758-36.709,24.436-58.994,24.436c-46.003,0-83.43-37.426-83.43-83.43s37.426-83.43,83.43-83.43
13
- c36.894,0,69.843,24.715,80.126,60.104c0.924,3.182,4.253,5.011,7.436,4.087c3.182-0.925,5.012-4.254,4.087-7.436
14
- C233.422,101.308,221.398,83.809,205.213,71.476z"/>
15
- <path d="M217.773,129.262c-2.344-2.343-6.143-2.343-8.485,0c-2.343,2.343-2.343,6.142,0,8.485l22.57,22.571
16
- c1.125,1.125,2.651,1.757,4.243,1.757s3.118-0.632,4.243-1.757l22.57-22.571c2.343-2.343,2.343-6.142,0-8.485
17
- c-2.344-2.343-6.143-2.343-8.485,0l-18.328,18.328L217.773,129.262z"/>
18
- </g>
19
- <g>
20
- </g>
21
- <g>
22
- </g>
23
- <g>
24
- </g>
25
- <g>
26
- </g>
27
- <g>
28
- </g>
29
- <g>
30
- </g>
31
- <g>
32
- </g>
33
- <g>
34
- </g>
35
- <g>
36
- </g>
37
- <g>
38
- </g>
39
- <g>
40
- </g>
41
- <g>
42
- </g>
43
- <g>
44
- </g>
45
- <g>
46
- </g>
47
- <g>
48
- </g>
49
- </svg>
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 294.843 294.843" style="enable-background:new 0 0 294.843 294.843;" xml:space="preserve">
5
+ <g>
6
+ <path d="M147.421,0c-3.313,0-6,2.687-6,6s2.687,6,6,6c74.671,0,135.421,60.75,135.421,135.421s-60.75,135.421-135.421,135.421
7
+ S12,222.093,12,147.421c0-50.804,28.042-96.902,73.183-120.305c2.942-1.525,4.09-5.146,2.565-8.088
8
+ c-1.525-2.942-5.147-4.09-8.088-2.565C30.524,41.937,0,92.118,0,147.421c0,81.289,66.133,147.421,147.421,147.421
9
+ s147.421-66.133,147.421-147.421S228.71,0,147.421,0z"/>
10
+ <path d="M205.213,71.476c-16.726-12.747-36.71-19.484-57.792-19.484c-52.62,0-95.43,42.81-95.43,95.43s42.81,95.43,95.43,95.43
11
+ c25.49,0,49.455-9.926,67.479-27.951c2.343-2.343,2.343-6.142,0-8.485c-2.343-2.343-6.143-2.343-8.485,0
12
+ c-15.758,15.758-36.709,24.436-58.994,24.436c-46.003,0-83.43-37.426-83.43-83.43s37.426-83.43,83.43-83.43
13
+ c36.894,0,69.843,24.715,80.126,60.104c0.924,3.182,4.253,5.011,7.436,4.087c3.182-0.925,5.012-4.254,4.087-7.436
14
+ C233.422,101.308,221.398,83.809,205.213,71.476z"/>
15
+ <path d="M217.773,129.262c-2.344-2.343-6.143-2.343-8.485,0c-2.343,2.343-2.343,6.142,0,8.485l22.57,22.571
16
+ c1.125,1.125,2.651,1.757,4.243,1.757s3.118-0.632,4.243-1.757l22.57-22.571c2.343-2.343,2.343-6.142,0-8.485
17
+ c-2.344-2.343-6.143-2.343-8.485,0l-18.328,18.328L217.773,129.262z"/>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ <g>
48
+ </g>
49
+ </svg>
@@ -1,11 +1,11 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
- viewBox="0 0 512.005 512.005" style="enable-background:new 0 0 512.005 512.005;" xml:space="preserve">
4
- <g>
5
- <g>
6
- <path d="M388.418,240.923L153.751,6.256c-8.341-8.341-21.824-8.341-30.165,0s-8.341,21.824,0,30.165L343.17,256.005
7
- L123.586,475.589c-8.341,8.341-8.341,21.824,0,30.165c4.16,4.16,9.621,6.251,15.083,6.251c5.461,0,10.923-2.091,15.083-6.251
8
- l234.667-234.667C396.759,262.747,396.759,249.264,388.418,240.923z"/>
9
- </g>
10
- </g>
11
- </svg>
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 512.005 512.005" style="enable-background:new 0 0 512.005 512.005;" xml:space="preserve">
4
+ <g>
5
+ <g>
6
+ <path d="M388.418,240.923L153.751,6.256c-8.341-8.341-21.824-8.341-30.165,0s-8.341,21.824,0,30.165L343.17,256.005
7
+ L123.586,475.589c-8.341,8.341-8.341,21.824,0,30.165c4.16,4.16,9.621,6.251,15.083,6.251c5.461,0,10.923-2.091,15.083-6.251
8
+ l234.667-234.667C396.759,262.747,396.759,249.264,388.418,240.923z"/>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
- viewBox="0 0 53 53" style="enable-background:new 0 0 53 53;" xml:space="preserve">
4
- <path style="fill:#EBC2B5;" d="M18.613,41.552l-7.907,4.313c-0.464,0.253-0.881,0.564-1.269,0.903C14.047,50.655,19.998,53,26.5,53
5
- c6.454,0,12.367-2.31,16.964-6.144c-0.424-0.358-0.884-0.68-1.394-0.934l-8.467-4.233c-1.094-0.547-1.785-1.665-1.785-2.888v-3.322
6
- c0.238-0.271,0.51-0.619,0.801-1.03c1.154-1.63,2.027-3.423,2.632-5.304c1.086-0.335,1.886-1.338,1.886-2.53v-3.546
7
- c0-0.78-0.347-1.477-0.886-1.965v-5.126c0,0,1.053-7.977-9.75-7.977s-9.75,7.977-9.75,7.977v5.126
8
- c-0.54,0.488-0.886,1.185-0.886,1.965v3.546c0,0.934,0.491,1.756,1.226,2.231c0.886,3.857,3.206,6.633,3.206,6.633v3.24
9
- C20.296,39.899,19.65,40.986,18.613,41.552z"/>
10
- <path style="fill:#BF360C;" d="M26.953,0.004C12.32-0.246,0.254,11.414,0.004,26.047C-0.138,34.344,3.56,41.801,9.448,46.76
11
- c0.385-0.336,0.798-0.644,1.257-0.894l7.907-4.313c1.037-0.566,1.683-1.653,1.683-2.835v-3.24c0,0-2.321-2.776-3.206-6.633
12
- c-0.734-0.475-1.226-1.296-1.226-2.231v-3.546c0-0.78,0.347-1.477,0.886-1.965v-5.126c0,0-1.053-7.977,9.75-7.977
13
- s9.75,7.977,9.75,7.977v5.126c0.54,0.488,0.886,1.185,0.886,1.965v3.546c0,1.192-0.8,2.195-1.886,2.53
14
- c-0.605,1.881-1.478,3.674-2.632,5.304c-0.291,0.411-0.563,0.759-0.801,1.03V38.8c0,1.223,0.691,2.342,1.785,2.888l8.467,4.233
15
- c0.508,0.254,0.967,0.575,1.39,0.932c5.71-4.762,9.399-11.882,9.536-19.9C53.246,12.32,41.587,0.254,26.953,0.004z"/>
16
- </svg>
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 53 53" style="enable-background:new 0 0 53 53;" xml:space="preserve">
4
+ <path style="fill:#EBC2B5;" d="M18.613,41.552l-7.907,4.313c-0.464,0.253-0.881,0.564-1.269,0.903C14.047,50.655,19.998,53,26.5,53
5
+ c6.454,0,12.367-2.31,16.964-6.144c-0.424-0.358-0.884-0.68-1.394-0.934l-8.467-4.233c-1.094-0.547-1.785-1.665-1.785-2.888v-3.322
6
+ c0.238-0.271,0.51-0.619,0.801-1.03c1.154-1.63,2.027-3.423,2.632-5.304c1.086-0.335,1.886-1.338,1.886-2.53v-3.546
7
+ c0-0.78-0.347-1.477-0.886-1.965v-5.126c0,0,1.053-7.977-9.75-7.977s-9.75,7.977-9.75,7.977v5.126
8
+ c-0.54,0.488-0.886,1.185-0.886,1.965v3.546c0,0.934,0.491,1.756,1.226,2.231c0.886,3.857,3.206,6.633,3.206,6.633v3.24
9
+ C20.296,39.899,19.65,40.986,18.613,41.552z"/>
10
+ <path style="fill:#BF360C;" d="M26.953,0.004C12.32-0.246,0.254,11.414,0.004,26.047C-0.138,34.344,3.56,41.801,9.448,46.76
11
+ c0.385-0.336,0.798-0.644,1.257-0.894l7.907-4.313c1.037-0.566,1.683-1.653,1.683-2.835v-3.24c0,0-2.321-2.776-3.206-6.633
12
+ c-0.734-0.475-1.226-1.296-1.226-2.231v-3.546c0-0.78,0.347-1.477,0.886-1.965v-5.126c0,0-1.053-7.977,9.75-7.977
13
+ s9.75,7.977,9.75,7.977v5.126c0.54,0.488,0.886,1.185,0.886,1.965v3.546c0,1.192-0.8,2.195-1.886,2.53
14
+ c-0.605,1.881-1.478,3.674-2.632,5.304c-0.291,0.411-0.563,0.759-0.801,1.03V38.8c0,1.223,0.691,2.342,1.785,2.888l8.467,4.233
15
+ c0.508,0.254,0.967,0.575,1.39,0.932c5.71-4.762,9.399-11.882,9.536-19.9C53.246,12.32,41.587,0.254,26.953,0.004z"/>
16
+ </svg>
@@ -1,25 +1,25 @@
1
- {
2
- "consumptionCombined": "{{consumptionCombined}}l/100km (komb)*",
3
- "co2": "{{co2}}g CO2/km (komb)*",
4
- "weDeliverMagdeburg": "Wir liefern Ihr Auto zu Ihnen nach Magdeburg!",
5
- "weDeliverToYou": "Wir liefern Ihr Auto zu Ihnen!",
6
- "withoutDeposit": "ohne Anzahlung",
7
- "dealerWarranty": "Händlergarantie",
8
- "availableImmediately": "sofort lieferbar",
9
- "partsExchange": "Inzahlungsnahme",
10
- "monthlyFrom": "monatlich ab",
11
- "monthlyFromShort": "mtl. ab",
12
- "insteadOf": "Statt",
13
- "vatIncluded": "inkl. MwSt.",
14
- "secureOffer": "Angebot sichern",
15
- "adjustFinancingDetails": "Finanzierungsdetails anpassen",
16
- "financingDetails": "Finanzierungsdetails",
17
- "saveUp": "{{discount}} {{currency}} sparen",
18
- "warranty": "garantie",
19
- "promoCheck": "geprüft",
20
- "promoEasy": "einfach",
21
- "promoSafe": "sicher",
22
- "promoBuy": "kaufen",
23
- "from": "ab",
24
- "neu": "neu"
25
- }
1
+ {
2
+ "consumptionCombined": "{{consumptionCombined}}l/100km (komb)*",
3
+ "co2": "{{co2}}g CO2/km (komb)*",
4
+ "weDeliverMagdeburg": "Wir liefern Ihr Auto zu Ihnen nach Magdeburg!",
5
+ "weDeliverToYou": "Wir liefern Ihr Auto zu Ihnen!",
6
+ "withoutDeposit": "ohne Anzahlung",
7
+ "dealerWarranty": "Händlergarantie",
8
+ "availableImmediately": "sofort lieferbar",
9
+ "partsExchange": "Inzahlungsnahme",
10
+ "monthlyFrom": "monatlich ab",
11
+ "monthlyFromShort": "mtl. ab",
12
+ "insteadOf": "Statt",
13
+ "vatIncluded": "inkl. MwSt.",
14
+ "secureOffer": "Angebot sichern",
15
+ "adjustFinancingDetails": "Finanzierungsdetails anpassen",
16
+ "financingDetails": "Finanzierungsdetails",
17
+ "saveUp": "{{discount}} {{currency}} sparen",
18
+ "warranty": "garantie",
19
+ "promoCheck": "geprüft",
20
+ "promoEasy": "einfach",
21
+ "promoSafe": "sicher",
22
+ "promoBuy": "kaufen",
23
+ "from": "ab",
24
+ "neu": "neu"
25
+ }
@@ -1,25 +1,25 @@
1
- {
2
- "consumptionCombined": "{{consumptionCombined}}/100km (comb)*",
3
- "co2": "{{co2}}g CO2/km (comb)*",
4
- "weDeliverMagdeburg": "We will deliver your car to Magdeburg!",
5
- "weDeliverToYou": "We deliver your car to you!",
6
- "withoutDeposit": "Without Deposit",
7
- "dealerWarranty": "Dealer Warranty",
8
- "availableImmediately": "Available Immediately",
9
- "partsExchange": "Parts Exchange",
10
- "monthlyFrom": "monthly from",
11
- "monthlyFromShort": "mtl. fr",
12
- "insteadOf": "Instead of",
13
- "vatIncluded": "VAT incl.",
14
- "secureOffer": "Secure offer",
15
- "adjustFinancingDetails": "Adjust financing details",
16
- "financingDetails": "Financing details",
17
- "saveUp": "{{discount}} {{currency}}",
18
- "warranty": "warranty",
19
- "promoCheck": "checked",
20
- "promoEasy": "easy",
21
- "promoSafe": "safe",
22
- "promoBuy": "buy",
23
- "from": "from",
24
- "neu": "new"
25
- }
1
+ {
2
+ "consumptionCombined": "{{consumptionCombined}}/100km (comb)*",
3
+ "co2": "{{co2}}g CO2/km (comb)*",
4
+ "weDeliverMagdeburg": "We will deliver your car to Magdeburg!",
5
+ "weDeliverToYou": "We deliver your car to you!",
6
+ "withoutDeposit": "Without Deposit",
7
+ "dealerWarranty": "Dealer Warranty",
8
+ "availableImmediately": "Available Immediately",
9
+ "partsExchange": "Parts Exchange",
10
+ "monthlyFrom": "monthly from",
11
+ "monthlyFromShort": "mtl. fr",
12
+ "insteadOf": "Instead of",
13
+ "vatIncluded": "VAT incl.",
14
+ "secureOffer": "Secure offer",
15
+ "adjustFinancingDetails": "Adjust financing details",
16
+ "financingDetails": "Financing details",
17
+ "saveUp": "{{discount}} {{currency}}",
18
+ "warranty": "warranty",
19
+ "promoCheck": "checked",
20
+ "promoEasy": "easy",
21
+ "promoSafe": "safe",
22
+ "promoBuy": "buy",
23
+ "from": "from",
24
+ "neu": "new"
25
+ }
@@ -1,3 +1,3 @@
1
- <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M1.3332 0L0.158203 1.175L3.97487 5L0.158203 8.825L1.3332 10L6.3332 5L1.3332 0Z" fill="#4C4E64" fill-opacity="0.54"/>
3
- </svg>
1
+ <svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.3332 0L0.158203 1.175L3.97487 5L0.158203 8.825L1.3332 10L6.3332 5L1.3332 0Z" fill="#4C4E64" fill-opacity="0.54"/>
3
+ </svg>
@@ -1,8 +1,8 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <mask id="mask0_8848_71350" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
3
- <rect width="24" height="24" fill="#D9D9D9"/>
4
- </mask>
5
- <g mask="url(#mask0_8848_71350)">
6
- <path d="M6 19H9.35V13.05H14.65V19H18V10L12 5.475L6 10V19ZM6 20.5C5.58333 20.5 5.22933 20.354 4.938 20.062C4.646 19.7707 4.5 19.4167 4.5 19V10C4.5 9.76667 4.554 9.54167 4.662 9.325C4.77067 9.10833 4.91667 8.93333 5.1 8.8L11.1 4.275C11.2333 4.175 11.375 4.104 11.525 4.062C11.675 4.02067 11.8333 4 12 4C12.1667 4 12.325 4.02067 12.475 4.062C12.625 4.104 12.7667 4.175 12.9 4.275L18.9 8.8C19.0833 8.93333 19.229 9.10833 19.337 9.325C19.4457 9.54167 19.5 9.76667 19.5 10V19C19.5 19.4167 19.354 19.7707 19.062 20.062C18.7707 20.354 18.4167 20.5 18 20.5H13.15V14.55H10.85V20.5H6Z" fill="#4C4E64" fill-opacity="0.68"/>
7
- </g>
8
- </svg>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_8848_71350" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
3
+ <rect width="24" height="24" fill="#D9D9D9"/>
4
+ </mask>
5
+ <g mask="url(#mask0_8848_71350)">
6
+ <path d="M6 19H9.35V13.05H14.65V19H18V10L12 5.475L6 10V19ZM6 20.5C5.58333 20.5 5.22933 20.354 4.938 20.062C4.646 19.7707 4.5 19.4167 4.5 19V10C4.5 9.76667 4.554 9.54167 4.662 9.325C4.77067 9.10833 4.91667 8.93333 5.1 8.8L11.1 4.275C11.2333 4.175 11.375 4.104 11.525 4.062C11.675 4.02067 11.8333 4 12 4C12.1667 4 12.325 4.02067 12.475 4.062C12.625 4.104 12.7667 4.175 12.9 4.275L18.9 8.8C19.0833 8.93333 19.229 9.10833 19.337 9.325C19.4457 9.54167 19.5 9.76667 19.5 10V19C19.5 19.4167 19.354 19.7707 19.062 20.062C18.7707 20.354 18.4167 20.5 18 20.5H13.15V14.55H10.85V20.5H6Z" fill="#4C4E64" fill-opacity="0.68"/>
7
+ </g>
8
+ </svg>
@@ -1,9 +1,9 @@
1
- <svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.47579 19.92C9.08636 19.8975 8.75243 20.195 8.72994 20.5844C8.58403 23.1107 8.73078 25.664 8.92849 27.5139C9.06522 28.7933 10.1592 29.7051 11.4061 29.7051H11.8787C13.0178 29.7051 13.9691 28.901 14.196 27.8296H20.6177C21.0077 27.8296 21.324 27.5133 21.324 27.1233C21.324 26.7332 21.0077 26.417 20.6177 26.417H13.7542C13.2465 26.417 12.8348 26.8286 12.8348 27.3364C12.8348 27.8644 12.4068 28.2925 11.8787 28.2925H11.4061C10.8411 28.2925 10.3889 27.886 10.3331 27.3638C10.141 25.5666 9.99995 23.0939 10.1402 20.6659C10.1627 20.2764 9.86522 19.9425 9.47579 19.92Z" fill="#616376"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.0981 8.79187C21.0981 8.40179 21.4143 8.08557 21.8044 8.08557L25.0378 8.08557C26.0098 8.08557 26.7616 8.14283 27.3143 8.42121C27.9563 8.74452 28.2122 9.29357 28.3925 9.85066L28.4037 9.88533L28.4113 9.92096L29.7075 16.0075C30.7113 19.6356 30.515 24.5343 30.1963 27.5153C30.0594 28.7955 28.9649 29.7047 27.7189 29.7047H27.2462C26.1072 29.7047 25.1559 28.9007 24.929 27.8292H18.5073C18.1172 27.8292 17.801 27.513 17.801 27.1229C17.801 26.7328 18.1172 26.4166 18.5073 26.4166H25.3707C25.8785 26.4166 26.2901 26.8282 26.2901 27.336C26.2901 27.8641 26.7182 28.2921 27.2462 28.2921H27.7189C28.2847 28.2921 28.736 27.8865 28.7917 27.3651C29.1074 24.4124 29.2758 19.7244 28.3407 16.365L28.3349 16.344L28.3303 16.3227L27.0375 10.252C26.8976 9.83021 26.8005 9.74405 26.6789 9.68282C26.465 9.57507 26.0385 9.49817 25.0378 9.49817H21.8044C21.4143 9.49817 21.0981 9.18195 21.0981 8.79187Z" fill="#616376"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.6406 17.3197C24.0501 17.1636 26.4456 16.7372 28.7791 16.0397L29.1837 17.3931C26.4534 18.2092 23.6422 18.6698 20.8203 18.776C20.8203 18.2227 21.6406 17.7676 21.6406 17.3197Z" fill="#616376"/>
5
- <path d="M27.3437 21.2589C27.3437 22.0234 26.7239 22.6432 25.9594 22.6432C25.1949 22.6432 24.5752 22.0234 24.5752 21.2589C24.5752 20.4944 25.1949 19.8747 25.9594 19.8747C26.7239 19.8747 27.3437 20.4944 27.3437 21.2589Z" fill="#616376"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.3061 21.2592C18.5922 21.2592 22.0667 17.7846 22.0667 13.4985C22.0667 9.21242 18.5922 5.73785 14.3061 5.73785C10.02 5.73785 6.54541 9.21242 6.54541 13.4985C6.54541 17.7846 10.02 21.2592 14.3061 21.2592ZM14.3061 22.6718C19.3723 22.6718 23.4793 18.5648 23.4793 13.4985C23.4793 8.43227 19.3723 4.32526 14.3061 4.32526C9.23982 4.32526 5.13281 8.43227 5.13281 13.4985C5.13281 18.5648 9.23982 22.6718 14.3061 22.6718Z" fill="#616376"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4028 8.96457C13.1983 8.5481 14.0934 8.35959 14.9893 8.41987C15.8851 8.48014 16.7469 8.78686 17.4794 9.30614C17.7976 9.53174 17.8727 9.97259 17.6471 10.2908C17.4215 10.609 16.9807 10.6841 16.6625 10.4585C16.1424 10.0898 15.5305 9.87207 14.8944 9.82928C14.2583 9.78648 13.6228 9.92032 13.058 10.216C12.4932 10.5117 12.0212 10.9578 11.6939 11.5049C11.3667 12.052 11.1971 12.679 11.2038 13.3165C11.2105 13.9539 11.3933 14.5772 11.7319 15.1173C12.0706 15.6574 12.5519 16.0935 13.1228 16.3772C13.6937 16.661 14.3319 16.7814 14.9669 16.7253C15.602 16.6691 16.2091 16.4385 16.7213 16.059C17.0348 15.8267 17.4771 15.8926 17.7093 16.206C17.9416 16.5194 17.8758 16.9617 17.5623 17.1939C16.8409 17.7285 15.9858 18.0533 15.0914 18.1324C14.197 18.2115 13.2981 18.0418 12.494 17.6422C11.69 17.2425 11.0121 16.6284 10.5351 15.8677C10.0581 15.1069 9.80072 14.2292 9.79128 13.3313C9.78185 12.4335 10.0207 11.5505 10.4816 10.7799C10.9425 10.0093 11.6073 9.38104 12.4028 8.96457Z" fill="#616376"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.26367 12.2328C8.26367 11.8428 8.57989 11.5266 8.96997 11.5266H14.1485C14.5386 11.5266 14.8548 11.8428 14.8548 12.2328C14.8548 12.6229 14.5386 12.9391 14.1485 12.9391H8.96997C8.57989 12.9391 8.26367 12.6229 8.26367 12.2328ZM8.26367 14.3602C8.26367 13.9702 8.57989 13.6539 8.96997 13.6539H14.1485C14.5386 13.6539 14.8548 13.9702 14.8548 14.3602C14.8548 14.7503 14.5386 15.0665 14.1485 15.0665H8.96997C8.57989 15.0665 8.26367 14.7503 8.26367 14.3602Z" fill="#616376"/>
9
- </svg>
1
+ <svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.47579 19.92C9.08636 19.8975 8.75243 20.195 8.72994 20.5844C8.58403 23.1107 8.73078 25.664 8.92849 27.5139C9.06522 28.7933 10.1592 29.7051 11.4061 29.7051H11.8787C13.0178 29.7051 13.9691 28.901 14.196 27.8296H20.6177C21.0077 27.8296 21.324 27.5133 21.324 27.1233C21.324 26.7332 21.0077 26.417 20.6177 26.417H13.7542C13.2465 26.417 12.8348 26.8286 12.8348 27.3364C12.8348 27.8644 12.4068 28.2925 11.8787 28.2925H11.4061C10.8411 28.2925 10.3889 27.886 10.3331 27.3638C10.141 25.5666 9.99995 23.0939 10.1402 20.6659C10.1627 20.2764 9.86522 19.9425 9.47579 19.92Z" fill="#616376"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.0981 8.79187C21.0981 8.40179 21.4143 8.08557 21.8044 8.08557L25.0378 8.08557C26.0098 8.08557 26.7616 8.14283 27.3143 8.42121C27.9563 8.74452 28.2122 9.29357 28.3925 9.85066L28.4037 9.88533L28.4113 9.92096L29.7075 16.0075C30.7113 19.6356 30.515 24.5343 30.1963 27.5153C30.0594 28.7955 28.9649 29.7047 27.7189 29.7047H27.2462C26.1072 29.7047 25.1559 28.9007 24.929 27.8292H18.5073C18.1172 27.8292 17.801 27.513 17.801 27.1229C17.801 26.7328 18.1172 26.4166 18.5073 26.4166H25.3707C25.8785 26.4166 26.2901 26.8282 26.2901 27.336C26.2901 27.8641 26.7182 28.2921 27.2462 28.2921H27.7189C28.2847 28.2921 28.736 27.8865 28.7917 27.3651C29.1074 24.4124 29.2758 19.7244 28.3407 16.365L28.3349 16.344L28.3303 16.3227L27.0375 10.252C26.8976 9.83021 26.8005 9.74405 26.6789 9.68282C26.465 9.57507 26.0385 9.49817 25.0378 9.49817H21.8044C21.4143 9.49817 21.0981 9.18195 21.0981 8.79187Z" fill="#616376"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.6406 17.3197C24.0501 17.1636 26.4456 16.7372 28.7791 16.0397L29.1837 17.3931C26.4534 18.2092 23.6422 18.6698 20.8203 18.776C20.8203 18.2227 21.6406 17.7676 21.6406 17.3197Z" fill="#616376"/>
5
+ <path d="M27.3437 21.2589C27.3437 22.0234 26.7239 22.6432 25.9594 22.6432C25.1949 22.6432 24.5752 22.0234 24.5752 21.2589C24.5752 20.4944 25.1949 19.8747 25.9594 19.8747C26.7239 19.8747 27.3437 20.4944 27.3437 21.2589Z" fill="#616376"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.3061 21.2592C18.5922 21.2592 22.0667 17.7846 22.0667 13.4985C22.0667 9.21242 18.5922 5.73785 14.3061 5.73785C10.02 5.73785 6.54541 9.21242 6.54541 13.4985C6.54541 17.7846 10.02 21.2592 14.3061 21.2592ZM14.3061 22.6718C19.3723 22.6718 23.4793 18.5648 23.4793 13.4985C23.4793 8.43227 19.3723 4.32526 14.3061 4.32526C9.23982 4.32526 5.13281 8.43227 5.13281 13.4985C5.13281 18.5648 9.23982 22.6718 14.3061 22.6718Z" fill="#616376"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4028 8.96457C13.1983 8.5481 14.0934 8.35959 14.9893 8.41987C15.8851 8.48014 16.7469 8.78686 17.4794 9.30614C17.7976 9.53174 17.8727 9.97259 17.6471 10.2908C17.4215 10.609 16.9807 10.6841 16.6625 10.4585C16.1424 10.0898 15.5305 9.87207 14.8944 9.82928C14.2583 9.78648 13.6228 9.92032 13.058 10.216C12.4932 10.5117 12.0212 10.9578 11.6939 11.5049C11.3667 12.052 11.1971 12.679 11.2038 13.3165C11.2105 13.9539 11.3933 14.5772 11.7319 15.1173C12.0706 15.6574 12.5519 16.0935 13.1228 16.3772C13.6937 16.661 14.3319 16.7814 14.9669 16.7253C15.602 16.6691 16.2091 16.4385 16.7213 16.059C17.0348 15.8267 17.4771 15.8926 17.7093 16.206C17.9416 16.5194 17.8758 16.9617 17.5623 17.1939C16.8409 17.7285 15.9858 18.0533 15.0914 18.1324C14.197 18.2115 13.2981 18.0418 12.494 17.6422C11.69 17.2425 11.0121 16.6284 10.5351 15.8677C10.0581 15.1069 9.80072 14.2292 9.79128 13.3313C9.78185 12.4335 10.0207 11.5505 10.4816 10.7799C10.9425 10.0093 11.6073 9.38104 12.4028 8.96457Z" fill="#616376"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.26367 12.2328C8.26367 11.8428 8.57989 11.5266 8.96997 11.5266H14.1485C14.5386 11.5266 14.8548 11.8428 14.8548 12.2328C14.8548 12.6229 14.5386 12.9391 14.1485 12.9391H8.96997C8.57989 12.9391 8.26367 12.6229 8.26367 12.2328ZM8.26367 14.3602C8.26367 13.9702 8.57989 13.6539 8.96997 13.6539H14.1485C14.5386 13.6539 14.8548 13.9702 14.8548 14.3602C14.8548 14.7503 14.5386 15.0665 14.1485 15.0665H8.96997C8.57989 15.0665 8.26367 14.7503 8.26367 14.3602Z" fill="#616376"/>
9
+ </svg>