@ikas/storefront 3.0.0-alpha.50 → 4.0.0-alpha.10

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 (2280) hide show
  1. package/package.json +38 -96
  2. package/src/analytics/analytics.ts +536 -0
  3. package/src/analytics/events.ts +116 -0
  4. package/src/analytics/facebookPixel.ts +226 -0
  5. package/src/analytics/googleAnalytics.ts +227 -0
  6. package/src/analytics/googleTagManager.ts +341 -0
  7. package/src/analytics/googleUniversal.ts +136 -0
  8. package/src/analytics/head/index.tsx +135 -0
  9. package/src/analytics/ikas.ts +558 -0
  10. package/src/analytics/index.ts +2 -0
  11. package/src/analytics/tiktokPixel.ts +223 -0
  12. package/src/components/checkout/components/address-form/index.tsx +406 -0
  13. package/src/components/checkout/components/address-form/model.ts +397 -0
  14. package/src/components/checkout/components/button/index.tsx +44 -0
  15. package/src/components/checkout/components/button/style.module.scss +103 -0
  16. package/src/components/checkout/components/cart-summary/cart-item/index.tsx +180 -0
  17. package/src/components/checkout/components/cart-summary/cart-item/style.module.scss +107 -0
  18. package/src/components/checkout/components/cart-summary/index.tsx +481 -0
  19. package/src/components/checkout/components/cart-summary/style.module.scss +251 -0
  20. package/src/components/checkout/components/checkbox/check.tsx +23 -0
  21. package/src/components/checkout/components/checkbox/index.tsx +50 -0
  22. package/src/components/checkout/components/checkbox/style.module.scss +72 -0
  23. package/src/components/checkout/components/credit-card-form/index.tsx +122 -0
  24. package/src/components/checkout/components/credit-card-form/model.ts +56 -0
  25. package/src/components/checkout/components/credit-card-form/style.module.scss +6 -0
  26. package/src/components/checkout/components/credit-card-form/svg/amex.tsx +30 -0
  27. package/src/components/checkout/components/credit-card-form/svg/master-card.tsx +38 -0
  28. package/src/components/checkout/components/credit-card-form/svg/troy.tsx +54 -0
  29. package/src/components/checkout/components/credit-card-form/svg/visa.tsx +46 -0
  30. package/src/components/checkout/components/customer-addresses/index.tsx +333 -0
  31. package/src/components/checkout/components/customer-addresses/model.ts +126 -0
  32. package/src/components/checkout/components/customer-addresses/style.module.scss +38 -0
  33. package/src/components/checkout/components/delivery-methods/icon-button/index.tsx +29 -0
  34. package/src/components/checkout/components/delivery-methods/icon-button/style.module.scss +41 -0
  35. package/src/components/checkout/components/delivery-methods/icons/box.tsx +22 -0
  36. package/src/components/checkout/components/delivery-methods/icons/store.tsx +22 -0
  37. package/src/components/checkout/components/delivery-methods/index.tsx +39 -0
  38. package/src/components/checkout/components/delivery-methods/style.module.scss +4 -0
  39. package/src/components/checkout/components/error/customer-login-required-error/index.tsx +23 -0
  40. package/src/components/checkout/components/error/index.tsx +54 -0
  41. package/src/components/checkout/components/error/no-shipping-error/index.tsx +14 -0
  42. package/src/components/checkout/components/error/payment-error/index.tsx +21 -0
  43. package/src/components/checkout/components/error/stock-error/index.tsx +72 -0
  44. package/src/components/checkout/components/error/stock-error/style.module.scss +11 -0
  45. package/src/components/checkout/components/error/unknown-error/index.tsx +19 -0
  46. package/src/components/checkout/components/expandable-section/index.tsx +37 -0
  47. package/src/components/checkout/components/expandable-section/style.module.scss +29 -0
  48. package/src/components/checkout/components/form-item/caret-down.tsx +20 -0
  49. package/src/components/checkout/components/form-item/index.tsx +207 -0
  50. package/src/components/checkout/components/form-item/model.ts +145 -0
  51. package/src/components/checkout/components/form-item/style.module.scss +216 -0
  52. package/src/components/checkout/components/fullscreen-loading/index.tsx +10 -0
  53. package/src/components/checkout/components/fullscreen-loading/style.module.scss +56 -0
  54. package/src/components/checkout/components/input-with-button/index.tsx +53 -0
  55. package/src/components/checkout/components/input-with-button/style.module.scss +104 -0
  56. package/src/components/checkout/components/master-pass/credit-card-form/index.tsx +160 -0
  57. package/src/components/checkout/components/master-pass/credit-card-form/style.module.scss +15 -0
  58. package/src/components/checkout/components/master-pass/modal/index.tsx +32 -0
  59. package/src/components/checkout/components/master-pass/modal/style.module.scss +42 -0
  60. package/src/components/checkout/components/master-pass/modal/svg/modal-close.tsx +20 -0
  61. package/src/components/checkout/components/master-pass/modal-link-card-to-client/index.tsx +62 -0
  62. package/src/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss +27 -0
  63. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.tsx +19 -0
  64. package/src/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.tsx +41 -0
  65. package/src/components/checkout/components/master-pass/modal-otp/index.tsx +202 -0
  66. package/src/components/checkout/components/master-pass/modal-otp/style.module.scss +47 -0
  67. package/src/components/checkout/components/master-pass/modal-otp/svg/master-pass.tsx +28 -0
  68. package/src/components/checkout/components/master-pass/modal-response/index.tsx +24 -0
  69. package/src/components/checkout/components/master-pass/modal-response/style.module.scss +7 -0
  70. package/src/components/checkout/components/master-pass/modal-success/index.tsx +54 -0
  71. package/src/components/checkout/components/master-pass/modal-success/style.module.scss +25 -0
  72. package/src/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.tsx +41 -0
  73. package/src/components/checkout/components/master-pass/modal-success/svg/success.tsx +21 -0
  74. package/src/components/checkout/components/master-pass/payment-gateway/svg/master-card.tsx +14 -0
  75. package/src/components/checkout/components/master-pass/svg/master-pass-by-master-card.tsx +34 -0
  76. package/src/components/checkout/components/modal/index.tsx +41 -0
  77. package/src/components/checkout/components/modal/style.module.scss +68 -0
  78. package/src/components/checkout/components/modal/useEscape.tsx +20 -0
  79. package/src/components/checkout/components/notification-box/index.tsx +70 -0
  80. package/src/components/checkout/components/notification-box/style.module.scss +69 -0
  81. package/src/components/checkout/components/offer-product/index.tsx +180 -0
  82. package/src/components/checkout/components/offer-product/select/arrows.tsx +22 -0
  83. package/src/components/checkout/components/offer-product/select/index.tsx +40 -0
  84. package/src/components/checkout/components/offer-product/select/style.module.scss +28 -0
  85. package/src/components/checkout/components/offer-product/style.module.scss +117 -0
  86. package/src/components/checkout/components/phone-number-input/compare-strings.ts +5 -0
  87. package/src/components/checkout/components/phone-number-input/get-countries.ts +52 -0
  88. package/src/components/checkout/components/phone-number-input/index.tsx +125 -0
  89. package/src/components/checkout/components/phone-number-input/style.module.scss +83 -0
  90. package/src/components/checkout/components/select-box/index.tsx +60 -0
  91. package/src/components/checkout/components/select-box/style.module.scss +55 -0
  92. package/src/components/checkout/components/step-container/index.tsx +107 -0
  93. package/src/components/checkout/components/step-container/style.module.scss +86 -0
  94. package/src/components/checkout/components/stripe/checkout-form.tsx +55 -0
  95. package/src/components/checkout/components/stripe/index.tsx +91 -0
  96. package/src/components/checkout/components/stripe/style.module.scss +75 -0
  97. package/src/components/checkout/components/svg/arrow-down.tsx +23 -0
  98. package/src/components/checkout/components/svg/arrow-left.tsx +23 -0
  99. package/src/components/checkout/components/svg/arrow-right.tsx +23 -0
  100. package/src/components/checkout/components/svg/cross.tsx +23 -0
  101. package/src/components/checkout/components/svg/discount.tsx +34 -0
  102. package/src/components/checkout/components/svg/external.tsx +101 -0
  103. package/src/components/checkout/components/svg/gift.tsx +40 -0
  104. package/src/components/checkout/components/svg/ikas.tsx +39 -0
  105. package/src/components/checkout/components/svg/lock.tsx +23 -0
  106. package/src/components/checkout/components/svg/shopping-cart.tsx +23 -0
  107. package/src/components/checkout/components/svg/success-circle.tsx +26 -0
  108. package/src/components/checkout/components/svg/tag.tsx +23 -0
  109. package/src/components/checkout/components/svg/warning.tsx +30 -0
  110. package/src/components/checkout/components/toggle/index.tsx +51 -0
  111. package/src/components/checkout/components/toggle/style.module.scss +75 -0
  112. package/src/components/checkout/components/tooltip/index.tsx +27 -0
  113. package/src/components/checkout/components/tooltip/style.module.scss +86 -0
  114. package/src/components/checkout/index.tsx +641 -0
  115. package/src/components/checkout/model.ts +1466 -0
  116. package/src/components/checkout/modelMasterPass.ts +1001 -0
  117. package/src/components/checkout/steps/step-info/index.tsx +85 -0
  118. package/src/components/checkout/steps/step-payment/billing-address/index.tsx +48 -0
  119. package/src/components/checkout/steps/step-payment/index.tsx +104 -0
  120. package/src/components/checkout/steps/step-payment/payment-gateways/index.tsx +218 -0
  121. package/src/components/checkout/steps/step-payment/payment-gateways/installments/index.tsx +54 -0
  122. package/src/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss +50 -0
  123. package/src/components/checkout/steps/step-payment/payment-gateways/style.module.scss +32 -0
  124. package/src/components/checkout/steps/step-payment/style.module.scss +32 -0
  125. package/src/components/checkout/steps/step-shipping/index.tsx +126 -0
  126. package/src/components/checkout/steps/step-shipping/style.module.scss +44 -0
  127. package/src/components/checkout/steps/step-success/index.tsx +366 -0
  128. package/src/components/checkout/steps/step-success/style.module.scss +161 -0
  129. package/src/components/checkout/style.module.scss +366 -0
  130. package/src/components/checkout/styles/common.module.scss +59 -0
  131. package/src/components/checkout/styles/variables.scss +40 -0
  132. package/src/components/image/index.tsx +43 -0
  133. package/src/components/index.ts +5 -0
  134. package/src/components/link/index.tsx +26 -0
  135. package/src/components/page/ThemeComponent.tsx +108 -0
  136. package/src/components/page/head.tsx +358 -0
  137. package/src/components/page/index.tsx +219 -0
  138. package/src/components/page-editor/ThemeComponentEditor.tsx +270 -0
  139. package/src/components/page-editor/error/index.tsx +18 -0
  140. package/src/components/page-editor/index.tsx +194 -0
  141. package/src/components/page-editor/loader/index.tsx +18 -0
  142. package/src/components/page-editor/loader/style.module.scss +59 -0
  143. package/src/components/page-editor/model.ts +847 -0
  144. package/src/index.ts +6 -0
  145. package/src/models/data/base/index.ts +15 -0
  146. package/src/models/data/blog/category/index.ts +36 -0
  147. package/src/models/data/blog/content/index.ts +16 -0
  148. package/src/models/data/blog/index.ts +75 -0
  149. package/src/models/data/blog/meta-data/index.ts +39 -0
  150. package/src/models/data/blog/tag/index.ts +16 -0
  151. package/src/models/data/blog/writer/index.ts +17 -0
  152. package/src/models/data/brand/index.ts +58 -0
  153. package/src/models/data/brand/translation/index.ts +16 -0
  154. package/src/models/data/campaign-offer/index.ts +79 -0
  155. package/src/models/data/campaign-offer/product/index.ts +69 -0
  156. package/src/models/data/cart/available-shipping-method/index.ts +25 -0
  157. package/src/models/data/cart/campaign-offer/index.ts +43 -0
  158. package/src/models/data/cart/index.ts +38 -0
  159. package/src/models/data/category/index.ts +69 -0
  160. package/src/models/data/category/init.ts +33 -0
  161. package/src/models/data/category/path-item/index.ts +42 -0
  162. package/src/models/data/category/translations/index.ts +16 -0
  163. package/src/models/data/checkout/index.ts +55 -0
  164. package/src/models/data/checkout-settings/index.ts +63 -0
  165. package/src/models/data/checkout-settings/option/index.ts +14 -0
  166. package/src/models/data/checkout-settings/price/index.ts +14 -0
  167. package/src/models/data/city/index.ts +34 -0
  168. package/src/models/data/contact-form/index.ts +20 -0
  169. package/src/models/data/country/index.ts +46 -0
  170. package/src/models/data/customer/address/city/index.ts +16 -0
  171. package/src/models/data/customer/address/country/index.ts +20 -0
  172. package/src/models/data/customer/address/district/index.ts +16 -0
  173. package/src/models/data/customer/address/index.tsx +136 -0
  174. package/src/models/data/customer/address/state/index.ts +16 -0
  175. package/src/models/data/customer/attribute/index.ts +61 -0
  176. package/src/models/data/customer/attribute/option/index.ts +20 -0
  177. package/src/models/data/customer/attribute/sales-channel/index.ts +24 -0
  178. package/src/models/data/customer/attribute/translation/index.ts +23 -0
  179. package/src/models/data/customer/attribute/translation/option/index.ts +16 -0
  180. package/src/models/data/customer/attribute/value/index.ts +29 -0
  181. package/src/models/data/customer/index.ts +122 -0
  182. package/src/models/data/customer/review/index.ts +70 -0
  183. package/src/models/data/customer/review/settings/index.ts +14 -0
  184. package/src/models/data/customer/review/summary/index.ts +29 -0
  185. package/src/models/data/customer/review/summary/star/index.ts +16 -0
  186. package/src/models/data/district/index.ts +36 -0
  187. package/src/models/data/favorite-product/index.ts +23 -0
  188. package/src/models/data/filter-category/index.ts +30 -0
  189. package/src/models/data/html-meta-data/index.ts +69 -0
  190. package/src/models/data/html-meta-data/translations/index.ts +16 -0
  191. package/src/models/data/image/index.ts +33 -0
  192. package/src/models/data/index.ts +192 -0
  193. package/src/models/data/last-viewed-product/index.ts +14 -0
  194. package/src/models/data/merchant-settings/index.ts +26 -0
  195. package/src/models/data/order/address/city/index.ts +16 -0
  196. package/src/models/data/order/address/country/index.ts +20 -0
  197. package/src/models/data/order/address/district/index.ts +16 -0
  198. package/src/models/data/order/address/index.ts +96 -0
  199. package/src/models/data/order/address/state/index.ts +16 -0
  200. package/src/models/data/order/adjustment/applied-order-line/index.ts +20 -0
  201. package/src/models/data/order/adjustment/index.ts +39 -0
  202. package/src/models/data/order/customer/index.ts +24 -0
  203. package/src/models/data/order/gift-line/index.ts +14 -0
  204. package/src/models/data/order/index.ts +241 -0
  205. package/src/models/data/order/invoice/index.ts +29 -0
  206. package/src/models/data/order/line-item/discount/index.ts +23 -0
  207. package/src/models/data/order/line-item/index.ts +153 -0
  208. package/src/models/data/order/line-item/option/index.ts +24 -0
  209. package/src/models/data/order/line-item/option/value/index.ts +16 -0
  210. package/src/models/data/order/line-item/variant/brand/index.ts +14 -0
  211. package/src/models/data/order/line-item/variant/category/index.ts +36 -0
  212. package/src/models/data/order/line-item/variant/index.ts +62 -0
  213. package/src/models/data/order/line-item/variant/price/index.ts +20 -0
  214. package/src/models/data/order/line-item/variant/value/index.ts +31 -0
  215. package/src/models/data/order/package/index.ts +41 -0
  216. package/src/models/data/order/package/tracking-info/index.ts +20 -0
  217. package/src/models/data/order/payment-method/index.ts +23 -0
  218. package/src/models/data/order/refund/index.ts +17 -0
  219. package/src/models/data/order/refund/line-item/index.ts +16 -0
  220. package/src/models/data/order/refund/settings/index.ts +16 -0
  221. package/src/models/data/order/shipping-line/index.ts +29 -0
  222. package/src/models/data/order/tax-line/index.ts +14 -0
  223. package/src/models/data/order/transaction/error/index.ts +16 -0
  224. package/src/models/data/order/transaction/index.ts +58 -0
  225. package/src/models/data/order/transaction/payment-method-detail/index.ts +33 -0
  226. package/src/models/data/order/transaction/payment-method-detail/installment-price/index.ts +22 -0
  227. package/src/models/data/payment-gateway/additional-price/index.ts +29 -0
  228. package/src/models/data/payment-gateway/index.ts +90 -0
  229. package/src/models/data/payment-gateway/settings/index.ts +21 -0
  230. package/src/models/data/payment-gateway/translation/index.ts +18 -0
  231. package/src/models/data/product/attribute/index.ts +37 -0
  232. package/src/models/data/product/attribute/option/index.ts +14 -0
  233. package/src/models/data/product/attribute/table-cell/index.ts +16 -0
  234. package/src/models/data/product/attribute/table-template/index.ts +19 -0
  235. package/src/models/data/product/attribute/translation/index.ts +39 -0
  236. package/src/models/data/product/attribute-value/index.ts +69 -0
  237. package/src/models/data/product/back-in-stock-settings/index.ts +14 -0
  238. package/src/models/data/product/campaign/data/index.ts +70 -0
  239. package/src/models/data/product/campaign/filter/index.ts +19 -0
  240. package/src/models/data/product/campaign/index.ts +15 -0
  241. package/src/models/data/product/campaign/product-buyx-then-gety/index.ts +57 -0
  242. package/src/models/data/product/campaign/product-campaign-date-range-field/index.ts +16 -0
  243. package/src/models/data/product/campaign/product-fixed-discount/index.ts +40 -0
  244. package/src/models/data/product/filter/index.ts +285 -0
  245. package/src/models/data/product/image/index.ts +22 -0
  246. package/src/models/data/product/index.ts +298 -0
  247. package/src/models/data/product/option-set/index.ts +94 -0
  248. package/src/models/data/product/option-set/option/index.ts +245 -0
  249. package/src/models/data/product/tag/index.ts +14 -0
  250. package/src/models/data/product/variant/index.ts +104 -0
  251. package/src/models/data/product/variant/price/index.ts +58 -0
  252. package/src/models/data/product/variant-type/index.ts +17 -0
  253. package/src/models/data/product/variant-type/init.ts +15 -0
  254. package/src/models/data/raffle/index.ts +155 -0
  255. package/src/models/data/sales-channel/index.ts +56 -0
  256. package/src/models/data/state/index.ts +18 -0
  257. package/src/models/data/stock-location/address/city/index.ts +16 -0
  258. package/src/models/data/stock-location/address/country/index.ts +18 -0
  259. package/src/models/data/stock-location/address/district/index.ts +18 -0
  260. package/src/models/data/stock-location/address/index.ts +34 -0
  261. package/src/models/data/stock-location/address/state/index.ts +18 -0
  262. package/src/models/data/stock-location/available/index.ts +22 -0
  263. package/src/models/data/stock-location/index.ts +35 -0
  264. package/src/models/data/storefront/domain/index.ts +20 -0
  265. package/src/models/data/storefront/index.ts +65 -0
  266. package/src/models/data/storefront/localization/index.tsx +18 -0
  267. package/src/models/data/storefront/routing/dynamic-currency/index.ts +16 -0
  268. package/src/models/data/storefront/routing/index.tsx +25 -0
  269. package/src/models/data/storefront/theme/index.tsx +25 -0
  270. package/src/models/data/storefront/theme-localization/index.tsx +31 -0
  271. package/src/models/data/theme-json/component/index.ts +41 -0
  272. package/src/models/data/theme-json/component/prop/index.ts +55 -0
  273. package/src/models/data/theme-json/custom-data/index.ts +132 -0
  274. package/src/models/data/theme-json/index.ts +210 -0
  275. package/src/models/data/theme-json/page/component/index.ts +22 -0
  276. package/src/models/data/theme-json/page/index.ts +54 -0
  277. package/src/models/data/theme-json/settings/color/index.ts +35 -0
  278. package/src/models/data/theme-json/settings/favicon/index.ts +12 -0
  279. package/src/models/data/theme-json/settings/font-family/index.ts +14 -0
  280. package/src/models/data/theme-json/settings/index.ts +30 -0
  281. package/src/models/data/variant-type/index.ts +44 -0
  282. package/src/models/data/variant-type/variant-value/index.ts +32 -0
  283. package/src/models/index.ts +2 -0
  284. package/src/models/ui/blog-category-list/index.ts +169 -0
  285. package/src/models/ui/blog-list/index.ts +175 -0
  286. package/src/models/ui/brand-list/index.ts +237 -0
  287. package/src/models/ui/category-list/index.ts +237 -0
  288. package/src/models/ui/component-renderer/index.ts +9 -0
  289. package/src/models/ui/customer-review-list/index.ts +173 -0
  290. package/src/models/ui/customer-review-summary-list/index.ts +175 -0
  291. package/src/models/ui/index.ts +40 -0
  292. package/src/models/ui/navigation-link/index.ts +23 -0
  293. package/src/models/ui/product-attribute-detail/index.ts +29 -0
  294. package/src/models/ui/product-attribute-list/index.ts +52 -0
  295. package/src/models/ui/product-list/index.ts +998 -0
  296. package/src/models/ui/raffle-list/index.ts +178 -0
  297. package/src/models/ui/validator/form/account-info.ts +167 -0
  298. package/src/models/ui/validator/form/address.ts +490 -0
  299. package/src/models/ui/validator/form/contact-form.ts +177 -0
  300. package/src/models/ui/validator/form/customer-review.ts +132 -0
  301. package/src/models/ui/validator/form/forgot-password.ts +96 -0
  302. package/src/models/ui/validator/form/login.ts +128 -0
  303. package/src/models/ui/validator/form/raffle-form.ts +276 -0
  304. package/src/models/ui/validator/form/recover-password.ts +148 -0
  305. package/src/models/ui/validator/form/register.ts +206 -0
  306. package/src/models/ui/validator/index.ts +121 -0
  307. package/src/models/ui/validator/rules/index.ts +310 -0
  308. package/src/page-data-init/index.ts +904 -0
  309. package/src/pages/404.tsx +10 -0
  310. package/src/pages/[slug]/index.tsx +9 -0
  311. package/src/pages/account/addresses.tsx +10 -0
  312. package/src/pages/account/favorite-products.tsx +9 -0
  313. package/src/pages/account/forgot-password.tsx +9 -0
  314. package/src/pages/account/index.tsx +9 -0
  315. package/src/pages/account/login.tsx +9 -0
  316. package/src/pages/account/orders/[id].tsx +9 -0
  317. package/src/pages/account/orders/index.tsx +9 -0
  318. package/src/pages/account/raffles.tsx +9 -0
  319. package/src/pages/account/recover-password.tsx +9 -0
  320. package/src/pages/account/register.tsx +9 -0
  321. package/src/pages/blog/[slug].tsx +9 -0
  322. package/src/pages/blog/index.tsx +9 -0
  323. package/src/pages/cart.tsx +9 -0
  324. package/src/pages/checkout.tsx +163 -0
  325. package/src/pages/editor.tsx +30 -0
  326. package/src/pages/home.tsx +10 -0
  327. package/src/pages/index.ts +22 -0
  328. package/src/pages/pages/[slug].tsx +9 -0
  329. package/src/pages/raffle/[slug].tsx +9 -0
  330. package/src/pages/raffle/index.tsx +9 -0
  331. package/src/pages/search.tsx +9 -0
  332. package/src/store/base.ts +238 -0
  333. package/src/store/blog/index.ts +49 -0
  334. package/src/store/brand/index.ts +16 -0
  335. package/src/store/cart/api.ts +58 -0
  336. package/src/store/cart/index.ts +311 -0
  337. package/src/store/category/index.ts +16 -0
  338. package/src/store/checkout/index.ts +92 -0
  339. package/src/store/customer/api.ts +273 -0
  340. package/src/store/customer/index.ts +658 -0
  341. package/src/store/html-meta-data/index.ts +16 -0
  342. package/src/store/index.ts +1 -0
  343. package/src/store/location/index.ts +56 -0
  344. package/src/store/merchant/index.ts +16 -0
  345. package/src/store/product/index.ts +113 -0
  346. package/src/store/raffle/index.ts +58 -0
  347. package/src/store/storefront/index.ts +18 -0
  348. package/src/typings/global.d.ts +7 -0
  349. package/src/utils/constants.ts +2 -0
  350. package/src/utils/currency.ts +250 -0
  351. package/src/utils/google-fonts.ts +52 -0
  352. package/src/utils/helper.ts +77 -0
  353. package/src/utils/i18n.ts +126 -0
  354. package/src/utils/index.ts +3 -0
  355. package/build/__api/models/AbandonedCartFlow.d.ts +0 -19
  356. package/build/__api/models/AbandonedCartFlowCustomerFilter.d.ts +0 -10
  357. package/build/__api/models/AddItemToCartInput.d.ts +0 -16
  358. package/build/__api/models/AdditionalPrice.d.ts +0 -13
  359. package/build/__api/models/AdditionalPrice.js +0 -1
  360. package/build/__api/models/ApplicableProductFilterValue.d.ts +0 -13
  361. package/build/__api/models/AppliedProduct.d.ts +0 -10
  362. package/build/__api/models/AppliedProductInput.d.ts +0 -10
  363. package/build/__api/models/AvailableShippingMethod.d.ts +0 -14
  364. package/build/__api/models/AvailableShippingMethod.js +0 -1
  365. package/build/__api/models/Blog.d.ts +0 -28
  366. package/build/__api/models/Blog.js +0 -1
  367. package/build/__api/models/BlogCategory.d.ts +0 -13
  368. package/build/__api/models/BlogCategory.js +0 -1
  369. package/build/__api/models/BlogCategoryPaginationResponse.d.ts +0 -14
  370. package/build/__api/models/BlogContent.d.ts +0 -12
  371. package/build/__api/models/BlogContent.js +0 -1
  372. package/build/__api/models/BlogMetadata.d.ts +0 -17
  373. package/build/__api/models/BlogMetadata.js +0 -1
  374. package/build/__api/models/BlogMetadataPaginationResponse.d.ts +0 -14
  375. package/build/__api/models/BlogMetadataTargetTypeEnumFilter.d.ts +0 -13
  376. package/build/__api/models/BlogPaginationResponse.d.ts +0 -14
  377. package/build/__api/models/BlogTag.d.ts +0 -10
  378. package/build/__api/models/BlogTag.js +0 -1
  379. package/build/__api/models/BlogWriter.d.ts +0 -10
  380. package/build/__api/models/BlogWriter.js +0 -1
  381. package/build/__api/models/BooleanFilterInput.d.ts +0 -9
  382. package/build/__api/models/BuyX.d.ts +0 -12
  383. package/build/__api/models/BuyXThenGetY.d.ts +0 -13
  384. package/build/__api/models/Campaign.d.ts +0 -30
  385. package/build/__api/models/CampaignDateRangeField.d.ts +0 -10
  386. package/build/__api/models/CampaignFilter.d.ts +0 -11
  387. package/build/__api/models/CampaignMinMaxRangeField.d.ts +0 -10
  388. package/build/__api/models/CampaignOffer.d.ts +0 -22
  389. package/build/__api/models/CampaignOffer.js +0 -1
  390. package/build/__api/models/CampaignOfferProduct.d.ts +0 -22
  391. package/build/__api/models/CampaignOfferProduct.js +0 -1
  392. package/build/__api/models/CampaignOfferProductTranslation.d.ts +0 -11
  393. package/build/__api/models/CampaignOfferProductTranslation.js +0 -1
  394. package/build/__api/models/CampaignOfferTriggerSettings.d.ts +0 -11
  395. package/build/__api/models/CampaignOfferTriggerSettings.js +0 -1
  396. package/build/__api/models/Cart.d.ts +0 -31
  397. package/build/__api/models/CartCampaignOffer.d.ts +0 -17
  398. package/build/__api/models/CartLineItemInput.d.ts +0 -12
  399. package/build/__api/models/CartLineOptionInput.d.ts +0 -11
  400. package/build/__api/models/CartLineVariantInput.d.ts +0 -10
  401. package/build/__api/models/CartStorefrontRouting.d.ts +0 -15
  402. package/build/__api/models/CartStorefrontRoutingDynamicCurrencySettings.d.ts +0 -10
  403. package/build/__api/models/CartV2.d.ts +0 -68
  404. package/build/__api/models/CartV2CampaignOffer.d.ts +0 -19
  405. package/build/__api/models/CartV2CampaignOffer.js +0 -1
  406. package/build/__api/models/Category.d.ts +0 -27
  407. package/build/__api/models/Category.js +0 -1
  408. package/build/__api/models/CategoryCondition.d.ts +0 -11
  409. package/build/__api/models/CategoryCondition.js +0 -1
  410. package/build/__api/models/CategoryFilterInput.d.ts +0 -10
  411. package/build/__api/models/CategoryPaginationResponse.d.ts +0 -14
  412. package/build/__api/models/CategoryPathFilterInput.d.ts +0 -9
  413. package/build/__api/models/CategoryPathItem.d.ts +0 -17
  414. package/build/__api/models/CategoryPathItem.js +0 -1
  415. package/build/__api/models/CategoryTranslation.d.ts +0 -11
  416. package/build/__api/models/CategoryTranslation.js +0 -1
  417. package/build/__api/models/CheckStocksLineInput.d.ts +0 -11
  418. package/build/__api/models/CheckStocksLineInput.js +0 -1
  419. package/build/__api/models/CheckStocksLineResponse.d.ts +0 -11
  420. package/build/__api/models/CheckStocksResponse.d.ts +0 -10
  421. package/build/__api/models/Checkout.d.ts +0 -44
  422. package/build/__api/models/CheckoutCustomer.d.ts +0 -19
  423. package/build/__api/models/CheckoutCustomerInput.d.ts +0 -13
  424. package/build/__api/models/CheckoutCustomerInput.js +0 -1
  425. package/build/__api/models/CheckoutOption.d.ts +0 -10
  426. package/build/__api/models/CheckoutOption.js +0 -1
  427. package/build/__api/models/CheckoutSettings.d.ts +0 -24
  428. package/build/__api/models/CheckoutSettings.js +0 -1
  429. package/build/__api/models/CheckoutSettingsPrice.d.ts +0 -10
  430. package/build/__api/models/CheckoutSettingsPrice.js +0 -1
  431. package/build/__api/models/City.d.ts +0 -16
  432. package/build/__api/models/City.js +0 -1
  433. package/build/__api/models/Country.d.ts +0 -22
  434. package/build/__api/models/Country.js +0 -1
  435. package/build/__api/models/CreateCustomerEmailSubscriptionInput.d.ts +0 -12
  436. package/build/__api/models/CreateCustomerReviewInput.d.ts +0 -20
  437. package/build/__api/models/CreateSaleTransactionMasterPassPaymentMethodDetail.d.ts +0 -10
  438. package/build/__api/models/CreateSaleTransactionWithCartInput.d.ts +0 -14
  439. package/build/__api/models/CreateSaleTransactionWithCheckoutInput.d.ts +0 -14
  440. package/build/__api/models/CreateStripePaymentIntentResponse.d.ts +0 -12
  441. package/build/__api/models/CreateStripePaymentIntentResponse.js +0 -1
  442. package/build/__api/models/CurrencyRate.d.ts +0 -13
  443. package/build/__api/models/CurrencyRateData.d.ts +0 -10
  444. package/build/__api/models/Customer.d.ts +0 -34
  445. package/build/__api/models/CustomerAddress.d.ts +0 -31
  446. package/build/__api/models/CustomerAddressCity.d.ts +0 -11
  447. package/build/__api/models/CustomerAddressCity.js +0 -1
  448. package/build/__api/models/CustomerAddressCityInput.d.ts +0 -11
  449. package/build/__api/models/CustomerAddressCityInput.js +0 -1
  450. package/build/__api/models/CustomerAddressCountry.d.ts +0 -13
  451. package/build/__api/models/CustomerAddressCountry.js +0 -1
  452. package/build/__api/models/CustomerAddressCountryInput.d.ts +0 -13
  453. package/build/__api/models/CustomerAddressCountryInput.js +0 -1
  454. package/build/__api/models/CustomerAddressDistrict.d.ts +0 -11
  455. package/build/__api/models/CustomerAddressDistrict.js +0 -1
  456. package/build/__api/models/CustomerAddressDistrictInput.d.ts +0 -11
  457. package/build/__api/models/CustomerAddressDistrictInput.js +0 -1
  458. package/build/__api/models/CustomerAddressState.d.ts +0 -11
  459. package/build/__api/models/CustomerAddressState.js +0 -1
  460. package/build/__api/models/CustomerAddressStateInput.d.ts +0 -11
  461. package/build/__api/models/CustomerAddressStateInput.js +0 -1
  462. package/build/__api/models/CustomerAttribute.d.ts +0 -19
  463. package/build/__api/models/CustomerAttribute.js +0 -1
  464. package/build/__api/models/CustomerAttributeOption.d.ts +0 -10
  465. package/build/__api/models/CustomerAttributeOption.js +0 -1
  466. package/build/__api/models/CustomerAttributeOptionTranslation.d.ts +0 -10
  467. package/build/__api/models/CustomerAttributeOptionTranslation.js +0 -1
  468. package/build/__api/models/CustomerAttributeSalesChannel.d.ts +0 -13
  469. package/build/__api/models/CustomerAttributeSalesChannel.js +0 -1
  470. package/build/__api/models/CustomerAttributeTranslation.d.ts +0 -13
  471. package/build/__api/models/CustomerAttributeTranslation.js +0 -1
  472. package/build/__api/models/CustomerAttributeValue.d.ts +0 -11
  473. package/build/__api/models/CustomerAttributeValue.js +0 -1
  474. package/build/__api/models/CustomerAttributeValueInput.d.ts +0 -11
  475. package/build/__api/models/CustomerAttributeValueInput.js +0 -1
  476. package/build/__api/models/CustomerCheckResponse.d.ts +0 -9
  477. package/build/__api/models/CustomerFavoriteProduct.d.ts +0 -11
  478. package/build/__api/models/CustomerFavoriteProduct.js +0 -1
  479. package/build/__api/models/CustomerLoginResponse.d.ts +0 -12
  480. package/build/__api/models/CustomerRefreshTokenResponse.d.ts +0 -10
  481. package/build/__api/models/CustomerReview.d.ts +0 -24
  482. package/build/__api/models/CustomerReview.js +0 -1
  483. package/build/__api/models/CustomerReviewSFPaginationResponse.d.ts +0 -14
  484. package/build/__api/models/CustomerReviewSummary.d.ts +0 -14
  485. package/build/__api/models/CustomerReviewSummary.js +0 -1
  486. package/build/__api/models/CustomerReviewSummaryPaginationResponse.d.ts +0 -14
  487. package/build/__api/models/CustomerReviewSummaryStar.d.ts +0 -10
  488. package/build/__api/models/CustomerReviewSummaryStar.js +0 -1
  489. package/build/__api/models/DateFilterInput.d.ts +0 -16
  490. package/build/__api/models/District.d.ts +0 -16
  491. package/build/__api/models/District.js +0 -1
  492. package/build/__api/models/FixedDiscount.d.ts +0 -14
  493. package/build/__api/models/GetAvailableStockLocation.d.ts +0 -14
  494. package/build/__api/models/GetAvailableStockLocation.js +0 -1
  495. package/build/__api/models/GetAvailableStockLocationAddress.d.ts +0 -16
  496. package/build/__api/models/GetAvailableStockLocationAddress.js +0 -1
  497. package/build/__api/models/GetAvailableStockLocationAddressCity.d.ts +0 -11
  498. package/build/__api/models/GetAvailableStockLocationAddressCity.js +0 -1
  499. package/build/__api/models/GetAvailableStockLocationsResponse.d.ts +0 -10
  500. package/build/__api/models/GetOrderLineFile.d.ts +0 -9
  501. package/build/__api/models/GetProductCampaignsInput.d.ts +0 -11
  502. package/build/__api/models/GetProductCampaignsResponse.d.ts +0 -11
  503. package/build/__api/models/GetProductOptionFileUrl.d.ts +0 -11
  504. package/build/__api/models/GetVariantStockLocation.d.ts +0 -12
  505. package/build/__api/models/GetVariantStockLocationListResponse.d.ts +0 -10
  506. package/build/__api/models/GetY.d.ts +0 -13
  507. package/build/__api/models/HTMLMetaData.d.ts +0 -22
  508. package/build/__api/models/HTMLMetaData.js +0 -1
  509. package/build/__api/models/HTMLMetaDataOverride.d.ts +0 -13
  510. package/build/__api/models/HTMLMetaDataOverride.js +0 -1
  511. package/build/__api/models/HTMLMetaDataTargetTypeEnumFilter.d.ts +0 -13
  512. package/build/__api/models/HTMLMetaDataTranslation.d.ts +0 -11
  513. package/build/__api/models/HTMLMetaDataTranslation.js +0 -1
  514. package/build/__api/models/Invoice.d.ts +0 -16
  515. package/build/__api/models/Invoice.js +0 -1
  516. package/build/__api/models/ListCustomerReviewInput.d.ts +0 -9
  517. package/build/__api/models/LocationTranslations.d.ts +0 -10
  518. package/build/__api/models/LocationTranslations.js +0 -1
  519. package/build/__api/models/MasterpassTokenResponse.d.ts +0 -11
  520. package/build/__api/models/MerchantAddress.d.ts +0 -27
  521. package/build/__api/models/MerchantAddress.js +0 -1
  522. package/build/__api/models/MerchantAddressCity.d.ts +0 -11
  523. package/build/__api/models/MerchantAddressCity.js +0 -1
  524. package/build/__api/models/MerchantAddressCountry.d.ts +0 -11
  525. package/build/__api/models/MerchantAddressCountry.js +0 -1
  526. package/build/__api/models/MerchantAddressDistrict.d.ts +0 -11
  527. package/build/__api/models/MerchantAddressDistrict.js +0 -1
  528. package/build/__api/models/MerchantAddressState.d.ts +0 -11
  529. package/build/__api/models/MerchantAddressState.js +0 -1
  530. package/build/__api/models/MerchantSettings.d.ts +0 -17
  531. package/build/__api/models/MerchantSettings.js +0 -1
  532. package/build/__api/models/MerchantSettingsCurrencyFormat.d.ts +0 -15
  533. package/build/__api/models/MerchantSettingsCurrencyFormat.js +0 -1
  534. package/build/__api/models/OrderAddress.d.ts +0 -28
  535. package/build/__api/models/OrderAddressCity.d.ts +0 -11
  536. package/build/__api/models/OrderAddressCity.js +0 -1
  537. package/build/__api/models/OrderAddressCityInput.d.ts +0 -11
  538. package/build/__api/models/OrderAddressCityInput.js +0 -1
  539. package/build/__api/models/OrderAddressCountry.d.ts +0 -13
  540. package/build/__api/models/OrderAddressCountry.js +0 -1
  541. package/build/__api/models/OrderAddressCountryInput.d.ts +0 -13
  542. package/build/__api/models/OrderAddressCountryInput.js +0 -1
  543. package/build/__api/models/OrderAddressDistrict.d.ts +0 -11
  544. package/build/__api/models/OrderAddressDistrict.js +0 -1
  545. package/build/__api/models/OrderAddressDistrictInput.d.ts +0 -11
  546. package/build/__api/models/OrderAddressDistrictInput.js +0 -1
  547. package/build/__api/models/OrderAddressInput.d.ts +0 -28
  548. package/build/__api/models/OrderAddressInput.js +0 -1
  549. package/build/__api/models/OrderAddressState.d.ts +0 -11
  550. package/build/__api/models/OrderAddressState.js +0 -1
  551. package/build/__api/models/OrderAddressStateInput.d.ts +0 -11
  552. package/build/__api/models/OrderAddressStateInput.js +0 -1
  553. package/build/__api/models/OrderAdjustment.d.ts +0 -19
  554. package/build/__api/models/OrderAdjustment.js +0 -1
  555. package/build/__api/models/OrderAdjustmentAppliedOrderLine.d.ts +0 -12
  556. package/build/__api/models/OrderAdjustmentAppliedOrderLine.js +0 -1
  557. package/build/__api/models/OrderAdjustmentInput.d.ts +0 -16
  558. package/build/__api/models/OrderAdjustmentInput.js +0 -1
  559. package/build/__api/models/OrderCurrencyRate.d.ts +0 -11
  560. package/build/__api/models/OrderCustomer.d.ts +0 -16
  561. package/build/__api/models/OrderGiftPackageLine.d.ts +0 -10
  562. package/build/__api/models/OrderGiftPackageLine.js +0 -1
  563. package/build/__api/models/OrderLineDiscount.d.ts +0 -15
  564. package/build/__api/models/OrderLineDiscount.js +0 -1
  565. package/build/__api/models/OrderLineItem.d.ts +0 -26
  566. package/build/__api/models/OrderLineItem.js +0 -1
  567. package/build/__api/models/OrderLineOption.d.ts +0 -15
  568. package/build/__api/models/OrderLineOption.js +0 -1
  569. package/build/__api/models/OrderLineOptionValue.d.ts +0 -11
  570. package/build/__api/models/OrderLineOptionValue.js +0 -1
  571. package/build/__api/models/OrderLineVariant.d.ts +0 -27
  572. package/build/__api/models/OrderLineVariant.js +0 -1
  573. package/build/__api/models/OrderLineVariantBrand.d.ts +0 -10
  574. package/build/__api/models/OrderLineVariantBrand.js +0 -1
  575. package/build/__api/models/OrderLineVariantCategory.d.ts +0 -12
  576. package/build/__api/models/OrderLineVariantCategory.js +0 -1
  577. package/build/__api/models/OrderLineVariantCategoryPath.d.ts +0 -10
  578. package/build/__api/models/OrderLineVariantCategoryPath.js +0 -1
  579. package/build/__api/models/OrderLineVariantPrice.d.ts +0 -13
  580. package/build/__api/models/OrderLineVariantPrice.js +0 -1
  581. package/build/__api/models/OrderLineVariantVariantValues.d.ts +0 -13
  582. package/build/__api/models/OrderLineVariantVariantValues.js +0 -1
  583. package/build/__api/models/OrderPackage.d.ts +0 -18
  584. package/build/__api/models/OrderPackage.js +0 -1
  585. package/build/__api/models/OrderPaymentMethod.d.ts +0 -14
  586. package/build/__api/models/OrderPaymentMethod.js +0 -1
  587. package/build/__api/models/OrderRefundOrderLineInput.d.ts +0 -10
  588. package/build/__api/models/OrderRefundOrderLineInput.js +0 -1
  589. package/build/__api/models/OrderRefundRequestInput.d.ts +0 -12
  590. package/build/__api/models/OrderRefundSettings.d.ts +0 -14
  591. package/build/__api/models/OrderShippingLine.d.ts +0 -17
  592. package/build/__api/models/OrderShippingLine.js +0 -1
  593. package/build/__api/models/OrderStorefrontRouting.d.ts +0 -15
  594. package/build/__api/models/OrderStorefrontRoutingDynamicCurrencySettings.d.ts +0 -10
  595. package/build/__api/models/OrderTaxLine.d.ts +0 -10
  596. package/build/__api/models/OrderTaxLine.js +0 -1
  597. package/build/__api/models/PaginationInput.d.ts +0 -10
  598. package/build/__api/models/PaymentGateway.d.ts +0 -29
  599. package/build/__api/models/PaymentGateway.js +0 -1
  600. package/build/__api/models/PaymentGatewayPaymentMethod.d.ts +0 -10
  601. package/build/__api/models/PaymentGatewayPaymentMethod.js +0 -1
  602. package/build/__api/models/PaymentGatewaySettings.d.ts +0 -13
  603. package/build/__api/models/PaymentGatewaySettings.js +0 -1
  604. package/build/__api/models/PaymentGatewayTranslation.d.ts +0 -11
  605. package/build/__api/models/PaymentGatewayTranslation.js +0 -1
  606. package/build/__api/models/PaymentMethodDetailInput.d.ts +0 -15
  607. package/build/__api/models/Product.d.ts +0 -33
  608. package/build/__api/models/ProductAttribute.d.ts +0 -19
  609. package/build/__api/models/ProductAttributeOption.d.ts +0 -10
  610. package/build/__api/models/ProductAttributeOptionTranslation.d.ts +0 -10
  611. package/build/__api/models/ProductAttributeTableCellData.d.ts +0 -10
  612. package/build/__api/models/ProductAttributeTableTemplate.d.ts +0 -11
  613. package/build/__api/models/ProductAttributeTranslation.d.ts +0 -13
  614. package/build/__api/models/ProductAttributeValue.d.ts +0 -12
  615. package/build/__api/models/ProductAttributeValue.js +0 -1
  616. package/build/__api/models/ProductBackInStockRemind.d.ts +0 -14
  617. package/build/__api/models/ProductBackInStockRemindInput.d.ts +0 -11
  618. package/build/__api/models/ProductBrand.d.ts +0 -19
  619. package/build/__api/models/ProductBrand.js +0 -1
  620. package/build/__api/models/ProductBrandPaginationResponse.d.ts +0 -14
  621. package/build/__api/models/ProductBrandTranslation.d.ts +0 -11
  622. package/build/__api/models/ProductBrandTranslation.js +0 -1
  623. package/build/__api/models/ProductFacetCount.d.ts +0 -11
  624. package/build/__api/models/ProductFacetCountValue.d.ts +0 -10
  625. package/build/__api/models/ProductFilterData.d.ts +0 -12
  626. package/build/__api/models/ProductFilterDataFilter.d.ts +0 -24
  627. package/build/__api/models/ProductFilterSettings.d.ts +0 -14
  628. package/build/__api/models/ProductImage.d.ts +0 -12
  629. package/build/__api/models/ProductItem.d.ts +0 -11
  630. package/build/__api/models/ProductItemInput.d.ts +0 -11
  631. package/build/__api/models/ProductLastViewed.d.ts +0 -12
  632. package/build/__api/models/ProductLastViewedInput.d.ts +0 -12
  633. package/build/__api/models/ProductOption.d.ts +0 -28
  634. package/build/__api/models/ProductOptionDateSettings.d.ts +0 -12
  635. package/build/__api/models/ProductOptionFileSettings.d.ts +0 -11
  636. package/build/__api/models/ProductOptionSelectSettings.d.ts +0 -14
  637. package/build/__api/models/ProductOptionSelectValue.d.ts +0 -16
  638. package/build/__api/models/ProductOptionSelectValueOtherPrice.d.ts +0 -10
  639. package/build/__api/models/ProductOptionSelectValueTranslations.d.ts +0 -10
  640. package/build/__api/models/ProductOptionSet.d.ts +0 -14
  641. package/build/__api/models/ProductOptionSetTranslations.d.ts +0 -11
  642. package/build/__api/models/ProductOptionTextSettings.d.ts +0 -10
  643. package/build/__api/models/ProductOptionTranslations.d.ts +0 -13
  644. package/build/__api/models/ProductPaginationResponse.d.ts +0 -14
  645. package/build/__api/models/ProductPrice.d.ts +0 -13
  646. package/build/__api/models/ProductPrice.js +0 -1
  647. package/build/__api/models/ProductSearchResponse.d.ts +0 -17
  648. package/build/__api/models/ProductStockLocation.d.ts +0 -13
  649. package/build/__api/models/ProductTagTranslation.d.ts +0 -11
  650. package/build/__api/models/ProductTranslation.d.ts +0 -11
  651. package/build/__api/models/ProductVariantType.d.ts +0 -11
  652. package/build/__api/models/Raffle.d.ts +0 -23
  653. package/build/__api/models/RaffleDateRangeField.d.ts +0 -10
  654. package/build/__api/models/RaffleMetadata.d.ts +0 -17
  655. package/build/__api/models/RaffleMetadataTargetTypeEnumFilter.d.ts +0 -13
  656. package/build/__api/models/RafflePaginationResponse.d.ts +0 -14
  657. package/build/__api/models/RaffleParticipants.d.ts +0 -23
  658. package/build/__api/models/RaffleParticipantsInput.d.ts +0 -17
  659. package/build/__api/models/RaffleParticipantsUpdateInput.d.ts +0 -13
  660. package/build/__api/models/RaffleVariantInformation.d.ts +0 -10
  661. package/build/__api/models/RetrieveInstallmentInfoInput.d.ts +0 -11
  662. package/build/__api/models/RetrieveInstallmentInfoResponse.d.ts +0 -17
  663. package/build/__api/models/SaveCartInput.d.ts +0 -23
  664. package/build/__api/models/SaveCartInput.js +0 -1
  665. package/build/__api/models/SaveCheckoutInput.d.ts +0 -26
  666. package/build/__api/models/SaveItemToCartInput.d.ts +0 -19
  667. package/build/__api/models/SaveMyCustomerAddressInput.d.ts +0 -29
  668. package/build/__api/models/SaveMyCustomerAddressInput.js +0 -1
  669. package/build/__api/models/SaveMyCustomerInput.d.ts +0 -17
  670. package/build/__api/models/SaveMyCustomerInput.js +0 -1
  671. package/build/__api/models/SearchCategory.d.ts +0 -15
  672. package/build/__api/models/SearchCategoryPath.d.ts +0 -13
  673. package/build/__api/models/SearchDynamicCurrencySettings.d.ts +0 -10
  674. package/build/__api/models/SearchHTMLMetaData.d.ts +0 -18
  675. package/build/__api/models/SearchHTMLMetaDataOverride.d.ts +0 -13
  676. package/build/__api/models/SearchInput.d.ts +0 -32
  677. package/build/__api/models/SearchInputFacetListInput.d.ts +0 -12
  678. package/build/__api/models/SearchInputFilterListInput.d.ts +0 -14
  679. package/build/__api/models/SearchInputFilterListInput.js +0 -1
  680. package/build/__api/models/SearchInputOrderByInput.d.ts +0 -11
  681. package/build/__api/models/SearchProduct.d.ts +0 -34
  682. package/build/__api/models/SearchProductAttribute.d.ts +0 -15
  683. package/build/__api/models/SearchProductAttributeOption.d.ts +0 -10
  684. package/build/__api/models/SearchProductAttributeTableCellData.d.ts +0 -10
  685. package/build/__api/models/SearchProductAttributeTableTemplate.d.ts +0 -11
  686. package/build/__api/models/SearchProductAttributeValue.d.ts +0 -14
  687. package/build/__api/models/SearchProductBrand.d.ts +0 -13
  688. package/build/__api/models/SearchProductImage.d.ts +0 -12
  689. package/build/__api/models/SearchProductPrice.d.ts +0 -13
  690. package/build/__api/models/SearchProductStockLocation.d.ts +0 -10
  691. package/build/__api/models/SearchProductTag.d.ts +0 -12
  692. package/build/__api/models/SearchProductVariantType.d.ts +0 -12
  693. package/build/__api/models/SearchVariant.d.ts +0 -25
  694. package/build/__api/models/SearchVariantType.d.ts +0 -15
  695. package/build/__api/models/SearchVariantValue.d.ts +0 -12
  696. package/build/__api/models/SearchVariationValueRelation.d.ts +0 -10
  697. package/build/__api/models/SocialLoginSettings.d.ts +0 -12
  698. package/build/__api/models/State.d.ts +0 -12
  699. package/build/__api/models/State.js +0 -1
  700. package/build/__api/models/StockLocation.d.ts +0 -18
  701. package/build/__api/models/StockLocation.js +0 -1
  702. package/build/__api/models/StockLocationAddress.d.ts +0 -19
  703. package/build/__api/models/StockLocationAddress.js +0 -1
  704. package/build/__api/models/StockLocationAddressCity.d.ts +0 -11
  705. package/build/__api/models/StockLocationAddressCity.js +0 -1
  706. package/build/__api/models/StockLocationAddressCountry.d.ts +0 -11
  707. package/build/__api/models/StockLocationAddressCountry.js +0 -1
  708. package/build/__api/models/StockLocationAddressDistrict.d.ts +0 -11
  709. package/build/__api/models/StockLocationAddressDistrict.js +0 -1
  710. package/build/__api/models/StockLocationAddressState.d.ts +0 -11
  711. package/build/__api/models/StockLocationAddressState.js +0 -1
  712. package/build/__api/models/Storefront.d.ts +0 -33
  713. package/build/__api/models/StorefrontDomain.d.ts +0 -13
  714. package/build/__api/models/StorefrontDynamicCurrencySettings.d.ts +0 -10
  715. package/build/__api/models/StorefrontLocalization.d.ts +0 -12
  716. package/build/__api/models/StorefrontOrder.d.ts +0 -50
  717. package/build/__api/models/StorefrontRouting.d.ts +0 -16
  718. package/build/__api/models/StorefrontTheme.d.ts +0 -15
  719. package/build/__api/models/StorefrontTransaction.d.ts +0 -27
  720. package/build/__api/models/StringFilterInput.d.ts +0 -13
  721. package/build/__api/models/Town.d.ts +0 -12
  722. package/build/__api/models/TrackingInfo.d.ts +0 -13
  723. package/build/__api/models/TrackingInfo.js +0 -1
  724. package/build/__api/models/TransactionError.d.ts +0 -11
  725. package/build/__api/models/TransactionError.js +0 -1
  726. package/build/__api/models/TransactionInstallmentPrice.d.ts +0 -13
  727. package/build/__api/models/TransactionInstallmentPrice.js +0 -1
  728. package/build/__api/models/TransactionPaymentMethodDetail.d.ts +0 -18
  729. package/build/__api/models/TransactionPaymentMethodDetail.js +0 -1
  730. package/build/__api/models/TransactionResponse.d.ts +0 -16
  731. package/build/__api/models/UpdateCartCampaignOfferInput.d.ts +0 -14
  732. package/build/__api/models/Variant.d.ts +0 -25
  733. package/build/__api/models/VariantStock.d.ts +0 -10
  734. package/build/__api/models/VariantType.d.ts +0 -16
  735. package/build/__api/models/VariantTypeTranslation.d.ts +0 -12
  736. package/build/__api/models/VariantValue.d.ts +0 -12
  737. package/build/__api/models/VariantValueRelation.d.ts +0 -10
  738. package/build/__api/models/VariantValueTranslation.d.ts +0 -10
  739. package/build/__api/models/_base.d.ts +0 -18
  740. package/build/__api/models/_base.js +0 -1
  741. package/build/__api/mutations/activateCustomer.d.ts +0 -6
  742. package/build/__api/mutations/addCouponCodeToCheckout.d.ts +0 -218
  743. package/build/__api/mutations/addItemToCart.d.ts +0 -245
  744. package/build/__api/mutations/addItemToCart.js +0 -1
  745. package/build/__api/mutations/createCustomerEmailSubscription.d.ts +0 -69
  746. package/build/__api/mutations/createCustomerEmailSubscription.js +0 -1
  747. package/build/__api/mutations/createCustomerReview.d.ts +0 -27
  748. package/build/__api/mutations/createCustomerReview.js +0 -1
  749. package/build/__api/mutations/createOrderRefundRequest.d.ts +0 -198
  750. package/build/__api/mutations/createOrderRefundRequest.js +0 -1
  751. package/build/__api/mutations/createSaleTransactionWithCart.d.ts +0 -17
  752. package/build/__api/mutations/createSaleTransactionWithCart.js +0 -1
  753. package/build/__api/mutations/createSaleTransactionWithCheckout.d.ts +0 -17
  754. package/build/__api/mutations/createStripePaymentIntent.d.ts +0 -13
  755. package/build/__api/mutations/createStripePaymentIntent.js +0 -1
  756. package/build/__api/mutations/customerForgotPassword.d.ts +0 -7
  757. package/build/__api/mutations/customerForgotPassword.js +0 -1
  758. package/build/__api/mutations/customerLogin.d.ts +0 -72
  759. package/build/__api/mutations/customerLogin.js +0 -1
  760. package/build/__api/mutations/customerRecoverPassword.d.ts +0 -8
  761. package/build/__api/mutations/customerRecoverPassword.js +0 -1
  762. package/build/__api/mutations/customerRefreshToken.d.ts +0 -11
  763. package/build/__api/mutations/customerRefreshToken.js +0 -1
  764. package/build/__api/mutations/deleteRaffleParticipantsList.d.ts +0 -6
  765. package/build/__api/mutations/getOrderLineFile.d.ts +0 -7
  766. package/build/__api/mutations/getOrderLineFile.js +0 -1
  767. package/build/__api/mutations/registerCustomer.d.ts +0 -77
  768. package/build/__api/mutations/registerCustomer.js +0 -1
  769. package/build/__api/mutations/retrieveInstallmentInfo.d.ts +0 -20
  770. package/build/__api/mutations/retrieveInstallmentInfo.js +0 -1
  771. package/build/__api/mutations/saveCart.d.ts +0 -245
  772. package/build/__api/mutations/saveCart.js +0 -1
  773. package/build/__api/mutations/saveCartCouponCode.d.ts +0 -246
  774. package/build/__api/mutations/saveCartCouponCode.js +0 -1
  775. package/build/__api/mutations/saveCheckout.d.ts +0 -217
  776. package/build/__api/mutations/saveFavoriteProduct.d.ts +0 -7
  777. package/build/__api/mutations/saveFavoriteProduct.js +0 -1
  778. package/build/__api/mutations/saveItemToCart.d.ts +0 -97
  779. package/build/__api/mutations/saveLastViewedProducts.d.ts +0 -20
  780. package/build/__api/mutations/saveLastViewedProducts.js +0 -1
  781. package/build/__api/mutations/saveMyCustomer.d.ts +0 -69
  782. package/build/__api/mutations/saveMyCustomer.js +0 -1
  783. package/build/__api/mutations/saveProductBackInStockRemind.d.ts +0 -18
  784. package/build/__api/mutations/saveProductBackInStockRemind.js +0 -1
  785. package/build/__api/mutations/saveRaffleParticipant.d.ts +0 -27
  786. package/build/__api/mutations/saveRaffleParticipant.js +0 -1
  787. package/build/__api/mutations/sendContactFormToMerchant.d.ts +0 -11
  788. package/build/__api/mutations/sendContactFormToMerchant.js +0 -1
  789. package/build/__api/mutations/updateCartCampaignOffer.d.ts +0 -245
  790. package/build/__api/mutations/updateCartCampaignOffer.js +0 -1
  791. package/build/__api/mutations/updateRaffleParticipant.d.ts +0 -28
  792. package/build/__api/queries/checkCustomerEmail.d.ts +0 -11
  793. package/build/__api/queries/checkCustomerEmail.js +0 -1
  794. package/build/__api/queries/checkStocks.d.ts +0 -13
  795. package/build/__api/queries/checkStocks.js +0 -1
  796. package/build/__api/queries/customerSocialLogin.d.ts +0 -71
  797. package/build/__api/queries/customerSocialLogin.js +0 -1
  798. package/build/__api/queries/getAvailableShippingCountries.d.ts +0 -6
  799. package/build/__api/queries/getAvailableShippingCountries.js +0 -1
  800. package/build/__api/queries/getAvailableStockLocations.d.ts +0 -28
  801. package/build/__api/queries/getAvailableStockLocations.js +0 -1
  802. package/build/__api/queries/getCart.d.ts +0 -99
  803. package/build/__api/queries/getCartById.d.ts +0 -246
  804. package/build/__api/queries/getCartById.js +0 -1
  805. package/build/__api/queries/getCheckoutByCartId.d.ts +0 -217
  806. package/build/__api/queries/getCheckoutById.d.ts +0 -217
  807. package/build/__api/queries/getCurrencyRate.d.ts +0 -17
  808. package/build/__api/queries/getCustomerOrders.d.ts +0 -198
  809. package/build/__api/queries/getCustomerOrders.js +0 -1
  810. package/build/__api/queries/getLastViewedProducts.d.ts +0 -20
  811. package/build/__api/queries/getLastViewedProducts.js +0 -1
  812. package/build/__api/queries/getMasterpassRequestToken.d.ts +0 -15
  813. package/build/__api/queries/getMasterpassRequestToken.js +0 -1
  814. package/build/__api/queries/getMyCountry.d.ts +0 -3
  815. package/build/__api/queries/getMyCountry.js +0 -1
  816. package/build/__api/queries/getMyCustomer.d.ts +0 -66
  817. package/build/__api/queries/getMyCustomer.js +0 -1
  818. package/build/__api/queries/getOrder.d.ts +0 -198
  819. package/build/__api/queries/getOrderByEmail.d.ts +0 -199
  820. package/build/__api/queries/getOrderByEmail.js +0 -1
  821. package/build/__api/queries/getProductCampaigns.d.ts +0 -47
  822. package/build/__api/queries/getProductCampaigns.js +0 -1
  823. package/build/__api/queries/getProductFilterData.d.ts +0 -167
  824. package/build/__api/queries/getProductFilterData.js +0 -1
  825. package/build/__api/queries/getProductOptionFileUrl.d.ts +0 -14
  826. package/build/__api/queries/getRaffleParticipants.d.ts +0 -24
  827. package/build/__api/queries/getRafflesByCustomerId.d.ts +0 -35
  828. package/build/__api/queries/getRafflesByCustomerId.js +0 -1
  829. package/build/__api/queries/getRelatedProducts.d.ts +0 -14
  830. package/build/__api/queries/getRelatedProducts.js +0 -1
  831. package/build/__api/queries/getStorefront.d.ts +0 -64
  832. package/build/__api/queries/getStorefront.js +0 -1
  833. package/build/__api/queries/getVariantStockLocations.d.ts +0 -30
  834. package/build/__api/queries/isFavoriteProduct.d.ts +0 -6
  835. package/build/__api/queries/isFavoriteProduct.js +0 -1
  836. package/build/__api/queries/listBlog.d.ts +0 -76
  837. package/build/__api/queries/listBlog.js +0 -1
  838. package/build/__api/queries/listBlogCategory.d.ts +0 -35
  839. package/build/__api/queries/listBlogCategory.js +0 -1
  840. package/build/__api/queries/listBlogMetadata.d.ts +0 -30
  841. package/build/__api/queries/listBlogMetadata.js +0 -1
  842. package/build/__api/queries/listCampaignOffer.d.ts +0 -37
  843. package/build/__api/queries/listCategory.d.ts +0 -89
  844. package/build/__api/queries/listCategory.js +0 -1
  845. package/build/__api/queries/listCheckoutSettings.d.ts +0 -29
  846. package/build/__api/queries/listCheckoutSettings.js +0 -1
  847. package/build/__api/queries/listCity.d.ts +0 -25
  848. package/build/__api/queries/listCity.js +0 -1
  849. package/build/__api/queries/listCountry.d.ts +0 -31
  850. package/build/__api/queries/listCountry.js +0 -1
  851. package/build/__api/queries/listCustomerAttribute.d.ts +0 -27
  852. package/build/__api/queries/listCustomerAttribute.js +0 -1
  853. package/build/__api/queries/listCustomerReviewSummary.d.ts +0 -23
  854. package/build/__api/queries/listCustomerReviewSummary.js +0 -1
  855. package/build/__api/queries/listCustomerReviews.d.ts +0 -35
  856. package/build/__api/queries/listCustomerReviews.js +0 -1
  857. package/build/__api/queries/listDistrict.d.ts +0 -26
  858. package/build/__api/queries/listDistrict.js +0 -1
  859. package/build/__api/queries/listFavoriteProducts.d.ts +0 -12
  860. package/build/__api/queries/listFavoriteProducts.js +0 -1
  861. package/build/__api/queries/listHTMLMetaData.d.ts +0 -34
  862. package/build/__api/queries/listHTMLMetaData.js +0 -1
  863. package/build/__api/queries/listMerchantSettings.d.ts +0 -46
  864. package/build/__api/queries/listMerchantSettings.js +0 -1
  865. package/build/__api/queries/listOrderRefundSettings.d.ts +0 -21
  866. package/build/__api/queries/listOrderRefundSettings.js +0 -1
  867. package/build/__api/queries/listOrderTransactions.d.ts +0 -43
  868. package/build/__api/queries/listOrderTransactions.js +0 -1
  869. package/build/__api/queries/listPaymentGateway.d.ts +0 -40
  870. package/build/__api/queries/listPaymentGateway.js +0 -1
  871. package/build/__api/queries/listProduct.d.ts +0 -94
  872. package/build/__api/queries/listProductAttribute.d.ts +0 -33
  873. package/build/__api/queries/listProductAttribute.js +0 -1
  874. package/build/__api/queries/listProductBackInStockRemind.d.ts +0 -23
  875. package/build/__api/queries/listProductBackInStockRemind.js +0 -1
  876. package/build/__api/queries/listProductBrand.d.ts +0 -51
  877. package/build/__api/queries/listProductBrand.js +0 -1
  878. package/build/__api/queries/listProductOptionSet.d.ts +0 -59
  879. package/build/__api/queries/listProductOptionSet.js +0 -1
  880. package/build/__api/queries/listProductStockLocation.d.ts +0 -18
  881. package/build/__api/queries/listRaffle.d.ts +0 -47
  882. package/build/__api/queries/listRaffle.js +0 -1
  883. package/build/__api/queries/listRaffleMetadata.d.ts +0 -26
  884. package/build/__api/queries/listRaffleMetadata.js +0 -1
  885. package/build/__api/queries/listState.d.ts +0 -20
  886. package/build/__api/queries/listState.js +0 -1
  887. package/build/__api/queries/listStockLocation.d.ts +0 -35
  888. package/build/__api/queries/listStockLocation.js +0 -1
  889. package/build/__api/queries/listTown.d.ts +0 -20
  890. package/build/__api/queries/listVariantType.d.ts +0 -29
  891. package/build/__api/queries/searchProducts.d.ts +0 -132
  892. package/build/__api/queries/searchProducts.js +0 -1
  893. package/build/__api/types/index.d.ts +0 -2705
  894. package/build/__api/types/index.js +0 -1
  895. package/build/_virtual/Axios.js_commonjs-proxy2.js +0 -1
  896. package/build/_virtual/Cancel.js_commonjs-proxy.js +0 -1
  897. package/build/_virtual/CancelToken.js_commonjs-proxy.js +0 -1
  898. package/build/_virtual/InterceptorManager.js_commonjs-proxy.js +0 -1
  899. package/build/_virtual/Parser.js_commonjs-proxy.js +0 -1
  900. package/build/_virtual/ReactPropTypesSecret.js_commonjs-proxy.js +0 -1
  901. package/build/_virtual/Tokenizer.js_commonjs-proxy.js +0 -1
  902. package/build/_virtual/_DataView.js_commonjs-proxy.js +0 -1
  903. package/build/_virtual/_Hash.js_commonjs-proxy.js +0 -1
  904. package/build/_virtual/_ListCache.js_commonjs-proxy.js +0 -1
  905. package/build/_virtual/_Map.js_commonjs-proxy.js +0 -1
  906. package/build/_virtual/_MapCache.js_commonjs-proxy.js +0 -1
  907. package/build/_virtual/_Promise.js_commonjs-proxy.js +0 -1
  908. package/build/_virtual/_Set.js_commonjs-proxy.js +0 -1
  909. package/build/_virtual/_SetCache.js_commonjs-proxy.js +0 -1
  910. package/build/_virtual/_Stack.js_commonjs-proxy.js +0 -1
  911. package/build/_virtual/_Symbol.js_commonjs-proxy.js +0 -1
  912. package/build/_virtual/_Uint8Array.js_commonjs-proxy.js +0 -1
  913. package/build/_virtual/_WeakMap.js_commonjs-proxy.js +0 -1
  914. package/build/_virtual/_apply.js_commonjs-proxy.js +0 -1
  915. package/build/_virtual/_arrayAggregator.js_commonjs-proxy.js +0 -1
  916. package/build/_virtual/_arrayEach.js_commonjs-proxy.js +0 -1
  917. package/build/_virtual/_arrayFilter.js_commonjs-proxy.js +0 -1
  918. package/build/_virtual/_arrayIncludes.js_commonjs-proxy.js +0 -1
  919. package/build/_virtual/_arrayIncludesWith.js_commonjs-proxy.js +0 -1
  920. package/build/_virtual/_arrayLikeKeys.js_commonjs-proxy.js +0 -1
  921. package/build/_virtual/_arrayMap.js_commonjs-proxy.js +0 -1
  922. package/build/_virtual/_arrayPush.js_commonjs-proxy.js +0 -1
  923. package/build/_virtual/_arraySome.js_commonjs-proxy.js +0 -1
  924. package/build/_virtual/_assignValue.js_commonjs-proxy.js +0 -1
  925. package/build/_virtual/_assocIndexOf.js_commonjs-proxy.js +0 -1
  926. package/build/_virtual/_baseAggregator.js_commonjs-proxy.js +0 -1
  927. package/build/_virtual/_baseAssign.js_commonjs-proxy.js +0 -1
  928. package/build/_virtual/_baseAssignIn.js_commonjs-proxy.js +0 -1
  929. package/build/_virtual/_baseAssignValue.js_commonjs-proxy.js +0 -1
  930. package/build/_virtual/_baseClone.js_commonjs-proxy.js +0 -1
  931. package/build/_virtual/_baseCreate.js_commonjs-proxy.js +0 -1
  932. package/build/_virtual/_baseEach.js_commonjs-proxy.js +0 -1
  933. package/build/_virtual/_baseFindIndex.js_commonjs-proxy.js +0 -1
  934. package/build/_virtual/_baseFlatten.js_commonjs-proxy.js +0 -1
  935. package/build/_virtual/_baseFor.js_commonjs-proxy.js +0 -1
  936. package/build/_virtual/_baseForOwn.js_commonjs-proxy.js +0 -1
  937. package/build/_virtual/_baseGet.js_commonjs-proxy.js +0 -1
  938. package/build/_virtual/_baseGetAllKeys.js_commonjs-proxy.js +0 -1
  939. package/build/_virtual/_baseGetTag.js_commonjs-proxy.js +0 -1
  940. package/build/_virtual/_baseHasIn.js_commonjs-proxy.js +0 -1
  941. package/build/_virtual/_baseIndexOf.js_commonjs-proxy.js +0 -1
  942. package/build/_virtual/_baseIsArguments.js_commonjs-proxy.js +0 -1
  943. package/build/_virtual/_baseIsEqual.js_commonjs-proxy.js +0 -1
  944. package/build/_virtual/_baseIsEqualDeep.js_commonjs-proxy.js +0 -1
  945. package/build/_virtual/_baseIsMap.js_commonjs-proxy.js +0 -1
  946. package/build/_virtual/_baseIsMatch.js_commonjs-proxy.js +0 -1
  947. package/build/_virtual/_baseIsNaN.js_commonjs-proxy.js +0 -1
  948. package/build/_virtual/_baseIsNative.js_commonjs-proxy.js +0 -1
  949. package/build/_virtual/_baseIsSet.js_commonjs-proxy.js +0 -1
  950. package/build/_virtual/_baseIsTypedArray.js_commonjs-proxy.js +0 -1
  951. package/build/_virtual/_baseIteratee.js_commonjs-proxy.js +0 -1
  952. package/build/_virtual/_baseKeys.js_commonjs-proxy.js +0 -1
  953. package/build/_virtual/_baseKeysIn.js_commonjs-proxy.js +0 -1
  954. package/build/_virtual/_baseMap.js_commonjs-proxy.js +0 -1
  955. package/build/_virtual/_baseMatches.js_commonjs-proxy.js +0 -1
  956. package/build/_virtual/_baseMatchesProperty.js_commonjs-proxy.js +0 -1
  957. package/build/_virtual/_baseOrderBy.js_commonjs-proxy.js +0 -1
  958. package/build/_virtual/_baseProperty.js_commonjs-proxy.js +0 -1
  959. package/build/_virtual/_basePropertyDeep.js_commonjs-proxy.js +0 -1
  960. package/build/_virtual/_baseRest.js_commonjs-proxy.js +0 -1
  961. package/build/_virtual/_baseSetToString.js_commonjs-proxy.js +0 -1
  962. package/build/_virtual/_baseSortBy.js_commonjs-proxy.js +0 -1
  963. package/build/_virtual/_baseTimes.js_commonjs-proxy.js +0 -1
  964. package/build/_virtual/_baseToString.js_commonjs-proxy.js +0 -1
  965. package/build/_virtual/_baseUnary.js_commonjs-proxy.js +0 -1
  966. package/build/_virtual/_baseUniq.js_commonjs-proxy.js +0 -1
  967. package/build/_virtual/_cacheHas.js_commonjs-proxy.js +0 -1
  968. package/build/_virtual/_castFunction.js_commonjs-proxy.js +0 -1
  969. package/build/_virtual/_castPath.js_commonjs-proxy.js +0 -1
  970. package/build/_virtual/_cloneArrayBuffer.js_commonjs-proxy.js +0 -1
  971. package/build/_virtual/_cloneBuffer.js_commonjs-proxy.js +0 -1
  972. package/build/_virtual/_cloneDataView.js_commonjs-proxy.js +0 -1
  973. package/build/_virtual/_cloneRegExp.js_commonjs-proxy.js +0 -1
  974. package/build/_virtual/_cloneSymbol.js_commonjs-proxy.js +0 -1
  975. package/build/_virtual/_cloneTypedArray.js_commonjs-proxy.js +0 -1
  976. package/build/_virtual/_commonjsHelpers.js +0 -1
  977. package/build/_virtual/_compareAscending.js_commonjs-proxy.js +0 -1
  978. package/build/_virtual/_compareMultiple.js_commonjs-proxy.js +0 -1
  979. package/build/_virtual/_copyArray.js_commonjs-proxy.js +0 -1
  980. package/build/_virtual/_copyObject.js_commonjs-proxy.js +0 -1
  981. package/build/_virtual/_copySymbols.js_commonjs-proxy.js +0 -1
  982. package/build/_virtual/_copySymbolsIn.js_commonjs-proxy.js +0 -1
  983. package/build/_virtual/_coreJsData.js_commonjs-proxy.js +0 -1
  984. package/build/_virtual/_createAggregator.js_commonjs-proxy.js +0 -1
  985. package/build/_virtual/_createBaseEach.js_commonjs-proxy.js +0 -1
  986. package/build/_virtual/_createBaseFor.js_commonjs-proxy.js +0 -1
  987. package/build/_virtual/_createSet.js_commonjs-proxy.js +0 -1
  988. package/build/_virtual/_defineProperty.js_commonjs-proxy.js +0 -1
  989. package/build/_virtual/_equalArrays.js_commonjs-proxy.js +0 -1
  990. package/build/_virtual/_equalByTag.js_commonjs-proxy.js +0 -1
  991. package/build/_virtual/_equalObjects.js_commonjs-proxy.js +0 -1
  992. package/build/_virtual/_freeGlobal.js_commonjs-proxy.js +0 -1
  993. package/build/_virtual/_getAllKeys.js_commonjs-proxy.js +0 -1
  994. package/build/_virtual/_getAllKeysIn.js_commonjs-proxy.js +0 -1
  995. package/build/_virtual/_getMapData.js_commonjs-proxy.js +0 -1
  996. package/build/_virtual/_getMatchData.js_commonjs-proxy.js +0 -1
  997. package/build/_virtual/_getNative.js_commonjs-proxy.js +0 -1
  998. package/build/_virtual/_getPrototype.js_commonjs-proxy.js +0 -1
  999. package/build/_virtual/_getRawTag.js_commonjs-proxy.js +0 -1
  1000. package/build/_virtual/_getSymbols.js_commonjs-proxy.js +0 -1
  1001. package/build/_virtual/_getSymbolsIn.js_commonjs-proxy.js +0 -1
  1002. package/build/_virtual/_getTag.js_commonjs-proxy.js +0 -1
  1003. package/build/_virtual/_getValue.js_commonjs-proxy.js +0 -1
  1004. package/build/_virtual/_hasPath.js_commonjs-proxy.js +0 -1
  1005. package/build/_virtual/_hashClear.js_commonjs-proxy.js +0 -1
  1006. package/build/_virtual/_hashDelete.js_commonjs-proxy.js +0 -1
  1007. package/build/_virtual/_hashGet.js_commonjs-proxy.js +0 -1
  1008. package/build/_virtual/_hashHas.js_commonjs-proxy.js +0 -1
  1009. package/build/_virtual/_hashSet.js_commonjs-proxy.js +0 -1
  1010. package/build/_virtual/_initCloneArray.js_commonjs-proxy.js +0 -1
  1011. package/build/_virtual/_initCloneByTag.js_commonjs-proxy.js +0 -1
  1012. package/build/_virtual/_initCloneObject.js_commonjs-proxy.js +0 -1
  1013. package/build/_virtual/_isFlattenable.js_commonjs-proxy.js +0 -1
  1014. package/build/_virtual/_isIndex.js_commonjs-proxy.js +0 -1
  1015. package/build/_virtual/_isIterateeCall.js_commonjs-proxy.js +0 -1
  1016. package/build/_virtual/_isKey.js_commonjs-proxy.js +0 -1
  1017. package/build/_virtual/_isKeyable.js_commonjs-proxy.js +0 -1
  1018. package/build/_virtual/_isMasked.js_commonjs-proxy.js +0 -1
  1019. package/build/_virtual/_isPrototype.js_commonjs-proxy.js +0 -1
  1020. package/build/_virtual/_isStrictComparable.js_commonjs-proxy.js +0 -1
  1021. package/build/_virtual/_listCacheClear.js_commonjs-proxy.js +0 -1
  1022. package/build/_virtual/_listCacheDelete.js_commonjs-proxy.js +0 -1
  1023. package/build/_virtual/_listCacheGet.js_commonjs-proxy.js +0 -1
  1024. package/build/_virtual/_listCacheHas.js_commonjs-proxy.js +0 -1
  1025. package/build/_virtual/_listCacheSet.js_commonjs-proxy.js +0 -1
  1026. package/build/_virtual/_mapCacheClear.js_commonjs-proxy.js +0 -1
  1027. package/build/_virtual/_mapCacheDelete.js_commonjs-proxy.js +0 -1
  1028. package/build/_virtual/_mapCacheGet.js_commonjs-proxy.js +0 -1
  1029. package/build/_virtual/_mapCacheHas.js_commonjs-proxy.js +0 -1
  1030. package/build/_virtual/_mapCacheSet.js_commonjs-proxy.js +0 -1
  1031. package/build/_virtual/_mapToArray.js_commonjs-proxy.js +0 -1
  1032. package/build/_virtual/_matchesStrictComparable.js_commonjs-proxy.js +0 -1
  1033. package/build/_virtual/_memoizeCapped.js_commonjs-proxy.js +0 -1
  1034. package/build/_virtual/_nativeCreate.js_commonjs-proxy.js +0 -1
  1035. package/build/_virtual/_nativeKeys.js_commonjs-proxy.js +0 -1
  1036. package/build/_virtual/_nativeKeysIn.js_commonjs-proxy.js +0 -1
  1037. package/build/_virtual/_nodeUtil.js_commonjs-proxy.js +0 -1
  1038. package/build/_virtual/_objectToString.js_commonjs-proxy.js +0 -1
  1039. package/build/_virtual/_overArg.js_commonjs-proxy.js +0 -1
  1040. package/build/_virtual/_overRest.js_commonjs-proxy.js +0 -1
  1041. package/build/_virtual/_registry.js_commonjs-proxy.js +0 -1
  1042. package/build/_virtual/_root.js_commonjs-proxy.js +0 -1
  1043. package/build/_virtual/_setCacheAdd.js_commonjs-proxy.js +0 -1
  1044. package/build/_virtual/_setCacheHas.js_commonjs-proxy.js +0 -1
  1045. package/build/_virtual/_setToArray.js_commonjs-proxy.js +0 -1
  1046. package/build/_virtual/_setToString.js_commonjs-proxy.js +0 -1
  1047. package/build/_virtual/_shortOut.js_commonjs-proxy.js +0 -1
  1048. package/build/_virtual/_stackClear.js_commonjs-proxy.js +0 -1
  1049. package/build/_virtual/_stackDelete.js_commonjs-proxy.js +0 -1
  1050. package/build/_virtual/_stackGet.js_commonjs-proxy.js +0 -1
  1051. package/build/_virtual/_stackHas.js_commonjs-proxy.js +0 -1
  1052. package/build/_virtual/_stackSet.js_commonjs-proxy.js +0 -1
  1053. package/build/_virtual/_stream_duplex.js_commonjs-proxy.js +0 -1
  1054. package/build/_virtual/_stream_passthrough.js_commonjs-proxy.js +0 -1
  1055. package/build/_virtual/_stream_readable.js_commonjs-proxy.js +0 -1
  1056. package/build/_virtual/_stream_transform.js_commonjs-proxy.js +0 -1
  1057. package/build/_virtual/_stream_writable.js_commonjs-proxy.js +0 -1
  1058. package/build/_virtual/_strictIndexOf.js_commonjs-proxy.js +0 -1
  1059. package/build/_virtual/_stringToPath.js_commonjs-proxy.js +0 -1
  1060. package/build/_virtual/_toKey.js_commonjs-proxy.js +0 -1
  1061. package/build/_virtual/_toSource.js_commonjs-proxy.js +0 -1
  1062. package/build/_virtual/async_iterator.js_commonjs-proxy.js +0 -1
  1063. package/build/_virtual/attributes-to-props.js_commonjs-proxy.js +0 -1
  1064. package/build/_virtual/axios.js_commonjs-proxy.js +0 -1
  1065. package/build/_virtual/bind.js_commonjs-proxy.js +0 -1
  1066. package/build/_virtual/browser.js_commonjs-proxy.js +0 -1
  1067. package/build/_virtual/buffer_list.js_commonjs-proxy.js +0 -1
  1068. package/build/_virtual/buildFullPath.js_commonjs-proxy.js +0 -1
  1069. package/build/_virtual/buildURL.js_commonjs-proxy.js +0 -1
  1070. package/build/_virtual/checkPropTypes.js_commonjs-proxy.js +0 -1
  1071. package/build/_virtual/combineURLs.js_commonjs-proxy.js +0 -1
  1072. package/build/_virtual/common.js_commonjs-proxy.js +0 -1
  1073. package/build/_virtual/constant.js_commonjs-proxy.js +0 -1
  1074. package/build/_virtual/cookies.js_commonjs-proxy.js +0 -1
  1075. package/build/_virtual/createError.js_commonjs-proxy.js +0 -1
  1076. package/build/_virtual/debug.js_commonjs-proxy.js +0 -1
  1077. package/build/_virtual/decode_codepoint.js_commonjs-proxy.js +0 -1
  1078. package/build/_virtual/defaults.js_commonjs-proxy.js +0 -1
  1079. package/build/_virtual/destroy.js_commonjs-proxy.js +0 -1
  1080. package/build/_virtual/dispatchRequest.js_commonjs-proxy.js +0 -1
  1081. package/build/_virtual/dom-to-react.js_commonjs-proxy.js +0 -1
  1082. package/build/_virtual/end-of-stream.js_commonjs-proxy.js +0 -1
  1083. package/build/_virtual/enhanceError.js_commonjs-proxy.js +0 -1
  1084. package/build/_virtual/eq.js_commonjs-proxy.js +0 -1
  1085. package/build/_virtual/errors.js_commonjs-proxy.js +0 -1
  1086. package/build/_virtual/factoryWithThrowingShims.js_commonjs-proxy.js +0 -1
  1087. package/build/_virtual/factoryWithTypeCheckers.js_commonjs-proxy.js +0 -1
  1088. package/build/_virtual/from.js_commonjs-proxy.js +0 -1
  1089. package/build/_virtual/get.js_commonjs-proxy.js +0 -1
  1090. package/build/_virtual/hasIn.js_commonjs-proxy.js +0 -1
  1091. package/build/_virtual/html-to-dom.js_commonjs-proxy.js +0 -1
  1092. package/build/_virtual/http.js_commonjs-proxy.js +0 -1
  1093. package/build/_virtual/identity.js_commonjs-proxy.js +0 -1
  1094. package/build/_virtual/index.js_commonjs-proxy.js +0 -1
  1095. package/build/_virtual/index.js_commonjs-proxy10.js +0 -1
  1096. package/build/_virtual/index.js_commonjs-proxy11.js +0 -1
  1097. package/build/_virtual/index.js_commonjs-proxy12.js +0 -1
  1098. package/build/_virtual/index.js_commonjs-proxy13.js +0 -1
  1099. package/build/_virtual/index.js_commonjs-proxy14.js +0 -1
  1100. package/build/_virtual/index.js_commonjs-proxy15.js +0 -1
  1101. package/build/_virtual/index.js_commonjs-proxy16.js +0 -1
  1102. package/build/_virtual/index.js_commonjs-proxy17.js +0 -1
  1103. package/build/_virtual/index.js_commonjs-proxy18.js +0 -1
  1104. package/build/_virtual/index.js_commonjs-proxy2.js +0 -1
  1105. package/build/_virtual/index.js_commonjs-proxy3.js +0 -1
  1106. package/build/_virtual/index.js_commonjs-proxy4.js +0 -1
  1107. package/build/_virtual/index.js_commonjs-proxy5.js +0 -1
  1108. package/build/_virtual/index.js_commonjs-proxy6.js +0 -1
  1109. package/build/_virtual/index.js_commonjs-proxy7.js +0 -1
  1110. package/build/_virtual/index.js_commonjs-proxy8.js +0 -1
  1111. package/build/_virtual/index.js_commonjs-proxy9.js +0 -1
  1112. package/build/_virtual/inherits.js_commonjs-proxy.js +0 -1
  1113. package/build/_virtual/inherits_browser.js_commonjs-proxy.js +0 -1
  1114. package/build/_virtual/isAbsoluteURL.js_commonjs-proxy.js +0 -1
  1115. package/build/_virtual/isArguments.js_commonjs-proxy.js +0 -1
  1116. package/build/_virtual/isArray.js_commonjs-proxy.js +0 -1
  1117. package/build/_virtual/isArrayLike.js_commonjs-proxy.js +0 -1
  1118. package/build/_virtual/isAxiosError.js_commonjs-proxy.js +0 -1
  1119. package/build/_virtual/isBuffer.js_commonjs-proxy.js +0 -1
  1120. package/build/_virtual/isCancel.js_commonjs-proxy.js +0 -1
  1121. package/build/_virtual/isFunction.js_commonjs-proxy.js +0 -1
  1122. package/build/_virtual/isLength.js_commonjs-proxy.js +0 -1
  1123. package/build/_virtual/isMap.js_commonjs-proxy.js +0 -1
  1124. package/build/_virtual/isObject.js_commonjs-proxy.js +0 -1
  1125. package/build/_virtual/isObjectLike.js_commonjs-proxy.js +0 -1
  1126. package/build/_virtual/isSet.js_commonjs-proxy.js +0 -1
  1127. package/build/_virtual/isSymbol.js_commonjs-proxy.js +0 -1
  1128. package/build/_virtual/isTypedArray.js_commonjs-proxy.js +0 -1
  1129. package/build/_virtual/isURLSameOrigin.js_commonjs-proxy.js +0 -1
  1130. package/build/_virtual/keys.js_commonjs-proxy.js +0 -1
  1131. package/build/_virtual/keysIn.js_commonjs-proxy.js +0 -1
  1132. package/build/_virtual/memoize.js_commonjs-proxy.js +0 -1
  1133. package/build/_virtual/mergeConfig.js_commonjs-proxy.js +0 -1
  1134. package/build/_virtual/node.js_commonjs-proxy.js +0 -1
  1135. package/build/_virtual/node.js_commonjs-proxy2.js +0 -1
  1136. package/build/_virtual/node.js_commonjs-proxy3.js +0 -1
  1137. package/build/_virtual/noop.js_commonjs-proxy.js +0 -1
  1138. package/build/_virtual/normalizeHeaderName.js_commonjs-proxy.js +0 -1
  1139. package/build/_virtual/now.js_commonjs-proxy.js +0 -1
  1140. package/build/_virtual/parseHeaders.js_commonjs-proxy.js +0 -1
  1141. package/build/_virtual/pipeline.js_commonjs-proxy.js +0 -1
  1142. package/build/_virtual/possibleStandardNamesOptimized.js_commonjs-proxy.js +0 -1
  1143. package/build/_virtual/property.js_commonjs-proxy.js +0 -1
  1144. package/build/_virtual/react-is.development.js_commonjs-proxy.js +0 -1
  1145. package/build/_virtual/react-is.production.min.js_commonjs-proxy.js +0 -1
  1146. package/build/_virtual/readable.js_commonjs-proxy.js +0 -1
  1147. package/build/_virtual/settle.js_commonjs-proxy.js +0 -1
  1148. package/build/_virtual/spread.js_commonjs-proxy.js +0 -1
  1149. package/build/_virtual/state.js_commonjs-proxy.js +0 -1
  1150. package/build/_virtual/stream.js_commonjs-proxy.js +0 -1
  1151. package/build/_virtual/string_decoder.js_commonjs-proxy.js +0 -1
  1152. package/build/_virtual/stubArray.js_commonjs-proxy.js +0 -1
  1153. package/build/_virtual/stubFalse.js_commonjs-proxy.js +0 -1
  1154. package/build/_virtual/toNumber.js_commonjs-proxy.js +0 -1
  1155. package/build/_virtual/toString.js_commonjs-proxy.js +0 -1
  1156. package/build/_virtual/transformData.js_commonjs-proxy.js +0 -1
  1157. package/build/_virtual/utilities.js_commonjs-proxy.js +0 -1
  1158. package/build/_virtual/utilities.js_commonjs-proxy2.js +0 -1
  1159. package/build/_virtual/utilities.js_commonjs-proxy3.js +0 -1
  1160. package/build/_virtual/utils.js_commonjs-proxy.js +0 -1
  1161. package/build/_virtual/validator.js_commonjs-proxy.js +0 -1
  1162. package/build/_virtual/xhr.js_commonjs-proxy.js +0 -1
  1163. package/build/analytics/analytics.d.ts +0 -39
  1164. package/build/analytics/analytics.js +0 -1
  1165. package/build/analytics/events.d.ts +0 -37
  1166. package/build/analytics/events.js +0 -1
  1167. package/build/analytics/facebookPixel.d.ts +0 -16
  1168. package/build/analytics/facebookPixel.js +0 -1
  1169. package/build/analytics/googleAnalytics.d.ts +0 -14
  1170. package/build/analytics/googleAnalytics.js +0 -1
  1171. package/build/analytics/googleTagManager.d.ts +0 -204
  1172. package/build/analytics/googleTagManager.js +0 -1
  1173. package/build/analytics/googleUniversal.d.ts +0 -9
  1174. package/build/analytics/googleUniversal.js +0 -1
  1175. package/build/analytics/head/index.d.ts +0 -7
  1176. package/build/analytics/head/index.js +0 -1
  1177. package/build/analytics/ikas.d.ts +0 -134
  1178. package/build/analytics/ikas.js +0 -1
  1179. package/build/analytics/index.d.ts +0 -2
  1180. package/build/analytics/tiktokPixel.d.ts +0 -14
  1181. package/build/analytics/tiktokPixel.js +0 -1
  1182. package/build/assets/translations/checkout/en.js +0 -1
  1183. package/build/assets/translations/checkout/tr.js +0 -1
  1184. package/build/components/checkout/components/address-form/index.d.ts +0 -3
  1185. package/build/components/checkout/components/address-form/index.js +0 -1
  1186. package/build/components/checkout/components/address-form/model.d.ts +0 -87
  1187. package/build/components/checkout/components/address-form/model.js +0 -1
  1188. package/build/components/checkout/components/button/index.d.ts +0 -13
  1189. package/build/components/checkout/components/button/index.js +0 -1
  1190. package/build/components/checkout/components/button/style.module.scss.js +0 -1
  1191. package/build/components/checkout/components/cart-summary/cart-item/index.d.ts +0 -10
  1192. package/build/components/checkout/components/cart-summary/cart-item/index.js +0 -1
  1193. package/build/components/checkout/components/cart-summary/cart-item/style.module.scss.js +0 -1
  1194. package/build/components/checkout/components/cart-summary/index.d.ts +0 -8
  1195. package/build/components/checkout/components/cart-summary/index.js +0 -1
  1196. package/build/components/checkout/components/cart-summary/style.module.scss.js +0 -1
  1197. package/build/components/checkout/components/checkbox/check.d.ts +0 -6
  1198. package/build/components/checkout/components/checkbox/check.js +0 -1
  1199. package/build/components/checkout/components/checkbox/index.d.ts +0 -10
  1200. package/build/components/checkout/components/checkbox/index.js +0 -1
  1201. package/build/components/checkout/components/checkbox/style.module.scss.js +0 -1
  1202. package/build/components/checkout/components/credit-card-form/index.d.ts +0 -7
  1203. package/build/components/checkout/components/credit-card-form/index.js +0 -1
  1204. package/build/components/checkout/components/credit-card-form/model.d.ts +0 -26
  1205. package/build/components/checkout/components/credit-card-form/model.js +0 -1
  1206. package/build/components/checkout/components/credit-card-form/style.module.scss.js +0 -1
  1207. package/build/components/checkout/components/credit-card-form/svg/amex.d.ts +0 -6
  1208. package/build/components/checkout/components/credit-card-form/svg/amex.js +0 -1
  1209. package/build/components/checkout/components/credit-card-form/svg/master-card.d.ts +0 -6
  1210. package/build/components/checkout/components/credit-card-form/svg/master-card.js +0 -1
  1211. package/build/components/checkout/components/credit-card-form/svg/troy.d.ts +0 -6
  1212. package/build/components/checkout/components/credit-card-form/svg/troy.js +0 -1
  1213. package/build/components/checkout/components/credit-card-form/svg/visa.d.ts +0 -6
  1214. package/build/components/checkout/components/credit-card-form/svg/visa.js +0 -1
  1215. package/build/components/checkout/components/customer-addresses/index.d.ts +0 -19
  1216. package/build/components/checkout/components/customer-addresses/index.js +0 -1
  1217. package/build/components/checkout/components/customer-addresses/model.d.ts +0 -21
  1218. package/build/components/checkout/components/customer-addresses/model.js +0 -1
  1219. package/build/components/checkout/components/customer-addresses/style.module.scss.js +0 -1
  1220. package/build/components/checkout/components/delivery-methods/icon-button/index.d.ts +0 -10
  1221. package/build/components/checkout/components/delivery-methods/icon-button/index.js +0 -1
  1222. package/build/components/checkout/components/delivery-methods/icon-button/style.module.scss.js +0 -1
  1223. package/build/components/checkout/components/delivery-methods/icons/box.d.ts +0 -6
  1224. package/build/components/checkout/components/delivery-methods/icons/box.js +0 -1
  1225. package/build/components/checkout/components/delivery-methods/icons/store.d.ts +0 -6
  1226. package/build/components/checkout/components/delivery-methods/icons/store.js +0 -1
  1227. package/build/components/checkout/components/delivery-methods/index.d.ts +0 -7
  1228. package/build/components/checkout/components/delivery-methods/index.js +0 -1
  1229. package/build/components/checkout/components/delivery-methods/style.module.scss.js +0 -1
  1230. package/build/components/checkout/components/error/customer-login-required-error/index.d.ts +0 -8
  1231. package/build/components/checkout/components/error/customer-login-required-error/index.js +0 -1
  1232. package/build/components/checkout/components/error/index.d.ts +0 -7
  1233. package/build/components/checkout/components/error/index.js +0 -1
  1234. package/build/components/checkout/components/error/no-shipping-error/index.d.ts +0 -4
  1235. package/build/components/checkout/components/error/no-shipping-error/index.js +0 -1
  1236. package/build/components/checkout/components/error/payment-error/index.d.ts +0 -8
  1237. package/build/components/checkout/components/error/payment-error/index.js +0 -1
  1238. package/build/components/checkout/components/error/stock-error/index.d.ts +0 -8
  1239. package/build/components/checkout/components/error/stock-error/index.js +0 -1
  1240. package/build/components/checkout/components/error/stock-error/style.module.scss.js +0 -1
  1241. package/build/components/checkout/components/error/unknown-error/index.d.ts +0 -6
  1242. package/build/components/checkout/components/error/unknown-error/index.js +0 -1
  1243. package/build/components/checkout/components/expandable-section/index.d.ts +0 -6
  1244. package/build/components/checkout/components/expandable-section/index.js +0 -1
  1245. package/build/components/checkout/components/expandable-section/style.module.scss.js +0 -1
  1246. package/build/components/checkout/components/form-item/caret-down.d.ts +0 -6
  1247. package/build/components/checkout/components/form-item/caret-down.js +0 -1
  1248. package/build/components/checkout/components/form-item/index.d.ts +0 -3
  1249. package/build/components/checkout/components/form-item/index.js +0 -1
  1250. package/build/components/checkout/components/form-item/model.d.ts +0 -61
  1251. package/build/components/checkout/components/form-item/model.js +0 -1
  1252. package/build/components/checkout/components/form-item/style.module.scss.js +0 -1
  1253. package/build/components/checkout/components/fullscreen-loading/index.d.ts +0 -2
  1254. package/build/components/checkout/components/fullscreen-loading/index.js +0 -1
  1255. package/build/components/checkout/components/fullscreen-loading/style.module.scss.js +0 -1
  1256. package/build/components/checkout/components/input-with-button/index.d.ts +0 -11
  1257. package/build/components/checkout/components/input-with-button/index.js +0 -1
  1258. package/build/components/checkout/components/input-with-button/style.module.scss.js +0 -1
  1259. package/build/components/checkout/components/master-pass/credit-card-form/index.d.ts +0 -9
  1260. package/build/components/checkout/components/master-pass/credit-card-form/index.js +0 -1
  1261. package/build/components/checkout/components/master-pass/credit-card-form/style.module.scss.js +0 -1
  1262. package/build/components/checkout/components/master-pass/modal/index.d.ts +0 -11
  1263. package/build/components/checkout/components/master-pass/modal/index.js +0 -1
  1264. package/build/components/checkout/components/master-pass/modal/style.module.scss.js +0 -1
  1265. package/build/components/checkout/components/master-pass/modal/svg/modal-close.d.ts +0 -3
  1266. package/build/components/checkout/components/master-pass/modal/svg/modal-close.js +0 -1
  1267. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.d.ts +0 -11
  1268. package/build/components/checkout/components/master-pass/modal-link-card-to-client/index.js +0 -1
  1269. package/build/components/checkout/components/master-pass/modal-link-card-to-client/style.module.scss.js +0 -1
  1270. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.d.ts +0 -3
  1271. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/info-mark.js +0 -1
  1272. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.d.ts +0 -3
  1273. package/build/components/checkout/components/master-pass/modal-link-card-to-client/svg/master-pass-by-master-card-big.js +0 -1
  1274. package/build/components/checkout/components/master-pass/modal-otp/index.d.ts +0 -10
  1275. package/build/components/checkout/components/master-pass/modal-otp/index.js +0 -1
  1276. package/build/components/checkout/components/master-pass/modal-otp/style.module.scss.js +0 -1
  1277. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.d.ts +0 -3
  1278. package/build/components/checkout/components/master-pass/modal-otp/svg/master-pass.js +0 -1
  1279. package/build/components/checkout/components/master-pass/modal-response/index.d.ts +0 -10
  1280. package/build/components/checkout/components/master-pass/modal-response/index.js +0 -1
  1281. package/build/components/checkout/components/master-pass/modal-response/style.module.scss.js +0 -1
  1282. package/build/components/checkout/components/master-pass/modal-success/index.d.ts +0 -11
  1283. package/build/components/checkout/components/master-pass/modal-success/index.js +0 -1
  1284. package/build/components/checkout/components/master-pass/modal-success/style.module.scss.js +0 -1
  1285. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.d.ts +0 -3
  1286. package/build/components/checkout/components/master-pass/modal-success/svg/master-pass-by-master-card-small.js +0 -1
  1287. package/build/components/checkout/components/master-pass/modal-success/svg/success.d.ts +0 -3
  1288. package/build/components/checkout/components/master-pass/modal-success/svg/success.js +0 -1
  1289. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.d.ts +0 -3
  1290. package/build/components/checkout/components/master-pass/payment-gateway/svg/master-card.js +0 -1
  1291. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.d.ts +0 -3
  1292. package/build/components/checkout/components/master-pass/svg/master-pass-by-master-card.js +0 -1
  1293. package/build/components/checkout/components/modal/index.d.ts +0 -8
  1294. package/build/components/checkout/components/modal/index.js +0 -1
  1295. package/build/components/checkout/components/modal/style.module.scss.js +0 -1
  1296. package/build/components/checkout/components/modal/useEscape.d.ts +0 -5
  1297. package/build/components/checkout/components/modal/useEscape.js +0 -1
  1298. package/build/components/checkout/components/notification-box/index.d.ts +0 -9
  1299. package/build/components/checkout/components/notification-box/index.js +0 -1
  1300. package/build/components/checkout/components/notification-box/style.module.scss.js +0 -1
  1301. package/build/components/checkout/components/offer-product/index.d.ts +0 -8
  1302. package/build/components/checkout/components/offer-product/index.js +0 -1
  1303. package/build/components/checkout/components/offer-product/select/arrows.d.ts +0 -6
  1304. package/build/components/checkout/components/offer-product/select/arrows.js +0 -1
  1305. package/build/components/checkout/components/offer-product/select/index.d.ts +0 -11
  1306. package/build/components/checkout/components/offer-product/select/index.js +0 -1
  1307. package/build/components/checkout/components/offer-product/select/style.module.scss.js +0 -1
  1308. package/build/components/checkout/components/offer-product/style.module.scss.js +0 -1
  1309. package/build/components/checkout/components/select-box/index.d.ts +0 -13
  1310. package/build/components/checkout/components/select-box/index.js +0 -1
  1311. package/build/components/checkout/components/select-box/style.module.scss.js +0 -1
  1312. package/build/components/checkout/components/step-container/index.d.ts +0 -15
  1313. package/build/components/checkout/components/step-container/index.js +0 -1
  1314. package/build/components/checkout/components/step-container/style.module.scss.js +0 -1
  1315. package/build/components/checkout/components/stripe/checkout-form.d.ts +0 -8
  1316. package/build/components/checkout/components/stripe/checkout-form.js +0 -1
  1317. package/build/components/checkout/components/stripe/index.d.ts +0 -9
  1318. package/build/components/checkout/components/stripe/index.js +0 -1
  1319. package/build/components/checkout/components/stripe/style.module.scss.js +0 -1
  1320. package/build/components/checkout/components/svg/arrow-down.d.ts +0 -6
  1321. package/build/components/checkout/components/svg/arrow-down.js +0 -1
  1322. package/build/components/checkout/components/svg/arrow-left.d.ts +0 -6
  1323. package/build/components/checkout/components/svg/arrow-right.d.ts +0 -6
  1324. package/build/components/checkout/components/svg/cross.d.ts +0 -6
  1325. package/build/components/checkout/components/svg/cross.js +0 -1
  1326. package/build/components/checkout/components/svg/discount.d.ts +0 -6
  1327. package/build/components/checkout/components/svg/external.d.ts +0 -6
  1328. package/build/components/checkout/components/svg/external.js +0 -1
  1329. package/build/components/checkout/components/svg/gift.d.ts +0 -7
  1330. package/build/components/checkout/components/svg/gift.js +0 -1
  1331. package/build/components/checkout/components/svg/ikas.d.ts +0 -6
  1332. package/build/components/checkout/components/svg/ikas.js +0 -1
  1333. package/build/components/checkout/components/svg/lock.d.ts +0 -6
  1334. package/build/components/checkout/components/svg/lock.js +0 -1
  1335. package/build/components/checkout/components/svg/shopping-cart.d.ts +0 -6
  1336. package/build/components/checkout/components/svg/success-circle.d.ts +0 -6
  1337. package/build/components/checkout/components/svg/success-circle.js +0 -1
  1338. package/build/components/checkout/components/svg/tag.d.ts +0 -6
  1339. package/build/components/checkout/components/svg/warning.d.ts +0 -6
  1340. package/build/components/checkout/components/svg/warning.js +0 -1
  1341. package/build/components/checkout/components/toggle/index.d.ts +0 -10
  1342. package/build/components/checkout/components/toggle/index.js +0 -1
  1343. package/build/components/checkout/components/toggle/style.module.scss.js +0 -1
  1344. package/build/components/checkout/components/tooltip/index.d.ts +0 -8
  1345. package/build/components/checkout/components/tooltip/index.js +0 -1
  1346. package/build/components/checkout/components/tooltip/style.module.scss.js +0 -1
  1347. package/build/components/checkout/index.d.ts +0 -34
  1348. package/build/components/checkout/index.js +0 -1
  1349. package/build/components/checkout/model.d.ts +0 -164
  1350. package/build/components/checkout/model.js +0 -1
  1351. package/build/components/checkout/modelMasterPass.d.ts +0 -202
  1352. package/build/components/checkout/modelMasterPass.js +0 -1
  1353. package/build/components/checkout/steps/step-info/index.d.ts +0 -7
  1354. package/build/components/checkout/steps/step-info/index.js +0 -1
  1355. package/build/components/checkout/steps/step-payment/billing-address/index.d.ts +0 -7
  1356. package/build/components/checkout/steps/step-payment/billing-address/index.js +0 -1
  1357. package/build/components/checkout/steps/step-payment/index.d.ts +0 -7
  1358. package/build/components/checkout/steps/step-payment/index.js +0 -1
  1359. package/build/components/checkout/steps/step-payment/payment-gateways/index.d.ts +0 -7
  1360. package/build/components/checkout/steps/step-payment/payment-gateways/index.js +0 -1
  1361. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.d.ts +0 -7
  1362. package/build/components/checkout/steps/step-payment/payment-gateways/installments/index.js +0 -1
  1363. package/build/components/checkout/steps/step-payment/payment-gateways/installments/style.module.scss.js +0 -1
  1364. package/build/components/checkout/steps/step-payment/payment-gateways/style.module.scss.js +0 -1
  1365. package/build/components/checkout/steps/step-payment/style.module.scss.js +0 -1
  1366. package/build/components/checkout/steps/step-shipping/index.d.ts +0 -7
  1367. package/build/components/checkout/steps/step-shipping/index.js +0 -1
  1368. package/build/components/checkout/steps/step-shipping/style.module.scss.js +0 -1
  1369. package/build/components/checkout/steps/step-success/index.d.ts +0 -7
  1370. package/build/components/checkout/steps/step-success/index.js +0 -1
  1371. package/build/components/checkout/steps/step-success/style.module.scss.js +0 -1
  1372. package/build/components/checkout/style.module.scss.js +0 -1
  1373. package/build/components/checkout/styles/common.module.scss.js +0 -1
  1374. package/build/components/image/index.d.ts +0 -10
  1375. package/build/components/image/index.js +0 -1
  1376. package/build/components/index.d.ts +0 -4
  1377. package/build/components/link/index.d.ts +0 -4
  1378. package/build/components/link/index.js +0 -1
  1379. package/build/components/page/ThemeComponent.d.ts +0 -21
  1380. package/build/components/page/ThemeComponent.js +0 -1
  1381. package/build/components/page/head.d.ts +0 -15
  1382. package/build/components/page/head.js +0 -1
  1383. package/build/components/page/index.d.ts +0 -21
  1384. package/build/components/page/index.js +0 -1
  1385. package/build/components/page-editor/ThemeComponentEditor.d.ts +0 -32
  1386. package/build/components/page-editor/ThemeComponentEditor.js +0 -1
  1387. package/build/components/page-editor/error/index.d.ts +0 -5
  1388. package/build/components/page-editor/error/index.js +0 -1
  1389. package/build/components/page-editor/index.d.ts +0 -4
  1390. package/build/components/page-editor/index.js +0 -1
  1391. package/build/components/page-editor/loader/index.d.ts +0 -6
  1392. package/build/components/page-editor/loader/index.js +0 -1
  1393. package/build/components/page-editor/loader/style.module.scss.js +0 -1
  1394. package/build/components/page-editor/model.d.ts +0 -75
  1395. package/build/components/page-editor/model.js +0 -1
  1396. package/build/ext/@ikas/fe-api-client/build/_virtual/_commonjsHelpers.js +0 -1
  1397. package/build/ext/@ikas/fe-api-client/build/_virtual/axios-error-format.js_commonjs-exports.js +0 -1
  1398. package/build/ext/@ikas/fe-api-client/build/_virtual/core.js_commonjs-exports.js +0 -1
  1399. package/build/ext/@ikas/fe-api-client/build/_virtual/index.js_commonjs-exports.js +0 -1
  1400. package/build/ext/@ikas/fe-api-client/build/config/index.js +0 -1
  1401. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/axios-error-format.js +0 -1
  1402. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/core.js +0 -1
  1403. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.js +0 -1
  1404. package/build/ext/@ikas/fe-api-client/build/ext/@redtea/format-axios-error/index.mjs.js +0 -1
  1405. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Hash.js +0 -1
  1406. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_ListCache.js +0 -1
  1407. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Map.js +0 -1
  1408. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_MapCache.js +0 -1
  1409. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_Symbol.js +0 -1
  1410. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_arrayMap.js +0 -1
  1411. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assignValue.js +0 -1
  1412. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_assocIndexOf.js +0 -1
  1413. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseAssignValue.js +0 -1
  1414. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseGetTag.js +0 -1
  1415. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseIsNative.js +0 -1
  1416. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseSet.js +0 -1
  1417. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_baseToString.js +0 -1
  1418. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_castPath.js +0 -1
  1419. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_coreJsData.js +0 -1
  1420. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_defineProperty.js +0 -1
  1421. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_freeGlobal.js +0 -1
  1422. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getMapData.js +0 -1
  1423. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getNative.js +0 -1
  1424. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getRawTag.js +0 -1
  1425. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_getValue.js +0 -1
  1426. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashClear.js +0 -1
  1427. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashDelete.js +0 -1
  1428. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashGet.js +0 -1
  1429. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashHas.js +0 -1
  1430. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_hashSet.js +0 -1
  1431. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isIndex.js +0 -1
  1432. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKey.js +0 -1
  1433. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isKeyable.js +0 -1
  1434. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_isMasked.js +0 -1
  1435. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheClear.js +0 -1
  1436. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheDelete.js +0 -1
  1437. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheGet.js +0 -1
  1438. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheHas.js +0 -1
  1439. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_listCacheSet.js +0 -1
  1440. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheClear.js +0 -1
  1441. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheDelete.js +0 -1
  1442. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheGet.js +0 -1
  1443. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheHas.js +0 -1
  1444. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_mapCacheSet.js +0 -1
  1445. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_memoizeCapped.js +0 -1
  1446. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_nativeCreate.js +0 -1
  1447. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_objectToString.js +0 -1
  1448. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_root.js +0 -1
  1449. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_stringToPath.js +0 -1
  1450. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toKey.js +0 -1
  1451. package/build/ext/@ikas/fe-api-client/build/ext/lodash/_toSource.js +0 -1
  1452. package/build/ext/@ikas/fe-api-client/build/ext/lodash/eq.js +0 -1
  1453. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isArray.js +0 -1
  1454. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isFunction.js +0 -1
  1455. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObject.js +0 -1
  1456. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isObjectLike.js +0 -1
  1457. package/build/ext/@ikas/fe-api-client/build/ext/lodash/isSymbol.js +0 -1
  1458. package/build/ext/@ikas/fe-api-client/build/ext/lodash/memoize.js +0 -1
  1459. package/build/ext/@ikas/fe-api-client/build/ext/lodash/set.js +0 -1
  1460. package/build/ext/@ikas/fe-api-client/build/ext/lodash/toString.js +0 -1
  1461. package/build/ext/@ikas/fe-api-client/build/ext/tslib/tslib.es6.js +0 -15
  1462. package/build/ext/@ikas/fe-api-client/build/helpers/generate-return-fields.js +0 -1
  1463. package/build/ext/@ikas/fe-api-client/build/utils/api.js +0 -1
  1464. package/build/ext/@ikas/fe-api-client/build/utils/fetch-query.js +0 -1
  1465. package/build/ext/@ikas/react-phone-number-input/locale/en.json.js +0 -1
  1466. package/build/ext/@ikas/react-phone-number-input/min/index.js +0 -1
  1467. package/build/ext/@ikas/react-phone-number-input/modules/CountryIcon.js +0 -1
  1468. package/build/ext/@ikas/react-phone-number-input/modules/CountrySelect.js +0 -1
  1469. package/build/ext/@ikas/react-phone-number-input/modules/Flag.js +0 -1
  1470. package/build/ext/@ikas/react-phone-number-input/modules/InputBasic.js +0 -1
  1471. package/build/ext/@ikas/react-phone-number-input/modules/InputSmart.js +0 -1
  1472. package/build/ext/@ikas/react-phone-number-input/modules/InternationalIcon.js +0 -1
  1473. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountry.js +0 -1
  1474. package/build/ext/@ikas/react-phone-number-input/modules/PhoneInputWithCountryDefault.js +0 -1
  1475. package/build/ext/@ikas/react-phone-number-input/modules/PropTypes.js +0 -1
  1476. package/build/ext/@ikas/react-phone-number-input/modules/helpers/countries.js +0 -1
  1477. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getInternationalPhoneNumberPrefix.js +0 -1
  1478. package/build/ext/@ikas/react-phone-number-input/modules/helpers/getPhoneInputWithCountryStateUpdateFromNewProps.js +0 -1
  1479. package/build/ext/@ikas/react-phone-number-input/modules/helpers/inputValuePrefix.js +0 -1
  1480. package/build/ext/@ikas/react-phone-number-input/modules/helpers/phoneInputHelpers.js +0 -1
  1481. package/build/ext/@stripe/react-stripe-js/dist/react-stripe.esm.js +0 -1
  1482. package/build/ext/@stripe/stripe-js/dist/stripe.esm.js +0 -1
  1483. package/build/ext/axios/index.js +0 -1
  1484. package/build/ext/axios/lib/adapters/http.js +0 -1
  1485. package/build/ext/axios/lib/adapters/xhr.js +0 -1
  1486. package/build/ext/axios/lib/axios.js +0 -1
  1487. package/build/ext/axios/lib/cancel/Cancel.js +0 -1
  1488. package/build/ext/axios/lib/cancel/CancelToken.js +0 -1
  1489. package/build/ext/axios/lib/cancel/isCancel.js +0 -1
  1490. package/build/ext/axios/lib/core/Axios.js +0 -1
  1491. package/build/ext/axios/lib/core/InterceptorManager.js +0 -1
  1492. package/build/ext/axios/lib/core/buildFullPath.js +0 -1
  1493. package/build/ext/axios/lib/core/createError.js +0 -1
  1494. package/build/ext/axios/lib/core/dispatchRequest.js +0 -1
  1495. package/build/ext/axios/lib/core/enhanceError.js +0 -1
  1496. package/build/ext/axios/lib/core/mergeConfig.js +0 -1
  1497. package/build/ext/axios/lib/core/settle.js +0 -1
  1498. package/build/ext/axios/lib/core/transformData.js +0 -1
  1499. package/build/ext/axios/lib/defaults.js +0 -1
  1500. package/build/ext/axios/lib/helpers/bind.js +0 -1
  1501. package/build/ext/axios/lib/helpers/buildURL.js +0 -1
  1502. package/build/ext/axios/lib/helpers/combineURLs.js +0 -1
  1503. package/build/ext/axios/lib/helpers/cookies.js +0 -1
  1504. package/build/ext/axios/lib/helpers/isAbsoluteURL.js +0 -1
  1505. package/build/ext/axios/lib/helpers/isAxiosError.js +0 -1
  1506. package/build/ext/axios/lib/helpers/isURLSameOrigin.js +0 -1
  1507. package/build/ext/axios/lib/helpers/normalizeHeaderName.js +0 -1
  1508. package/build/ext/axios/lib/helpers/parseHeaders.js +0 -1
  1509. package/build/ext/axios/lib/helpers/spread.js +0 -1
  1510. package/build/ext/axios/lib/helpers/validator.js +0 -1
  1511. package/build/ext/axios/lib/utils.js +0 -1
  1512. package/build/ext/axios/package.json.js +0 -1
  1513. package/build/ext/classnames/index.js +0 -6
  1514. package/build/ext/country-flag-icons/modules/unicode.js +0 -1
  1515. package/build/ext/debug/src/browser.js +0 -1
  1516. package/build/ext/debug/src/common.js +0 -1
  1517. package/build/ext/debug/src/index.js +0 -1
  1518. package/build/ext/debug/src/node.js +0 -1
  1519. package/build/ext/decode-uri-component/index.js +0 -1
  1520. package/build/ext/domhandler/ext/domelementtype/lib/index.js +0 -1
  1521. package/build/ext/domhandler/lib/index.js +0 -1
  1522. package/build/ext/domhandler/lib/node.js +0 -1
  1523. package/build/ext/entities/lib/decode_codepoint.js +0 -1
  1524. package/build/ext/entities/lib/maps/decode.json.js +0 -1
  1525. package/build/ext/entities/lib/maps/entities.json.js +0 -1
  1526. package/build/ext/entities/lib/maps/legacy.json.js +0 -1
  1527. package/build/ext/entities/lib/maps/xml.json.js +0 -1
  1528. package/build/ext/follow-redirects/debug.js +0 -1
  1529. package/build/ext/follow-redirects/index.js +0 -1
  1530. package/build/ext/has-flag/index.js +0 -1
  1531. package/build/ext/html-dom-parser/index.js +0 -1
  1532. package/build/ext/html-dom-parser/lib/server/html-to-dom.js +0 -1
  1533. package/build/ext/html-dom-parser/lib/server/utilities.js +0 -1
  1534. package/build/ext/html-react-parser/index.js +0 -1
  1535. package/build/ext/html-react-parser/index.mjs.js +0 -1
  1536. package/build/ext/html-react-parser/lib/attributes-to-props.js +0 -1
  1537. package/build/ext/html-react-parser/lib/dom-to-react.js +0 -1
  1538. package/build/ext/html-react-parser/lib/utilities.js +0 -1
  1539. package/build/ext/htmlparser2/lib/Parser.js +0 -1
  1540. package/build/ext/htmlparser2/lib/Tokenizer.js +0 -1
  1541. package/build/ext/inherits/inherits.js +0 -1
  1542. package/build/ext/inherits/inherits_browser.js +0 -1
  1543. package/build/ext/inline-style-parser/index.js +0 -1
  1544. package/build/ext/input-format/modules/closeBraces.js +0 -1
  1545. package/build/ext/input-format/modules/dom.js +0 -1
  1546. package/build/ext/input-format/modules/edit.js +0 -1
  1547. package/build/ext/input-format/modules/format.js +0 -1
  1548. package/build/ext/input-format/modules/helpers.js +0 -1
  1549. package/build/ext/input-format/modules/inputControl.js +0 -1
  1550. package/build/ext/input-format/modules/parse.js +0 -1
  1551. package/build/ext/input-format/modules/react/Input.js +0 -1
  1552. package/build/ext/input-format/modules/templateFormatter.js +0 -1
  1553. package/build/ext/libphonenumber-js/es6/AsYouType.js +0 -1
  1554. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +0 -1
  1555. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +0 -1
  1556. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.js +0 -1
  1557. package/build/ext/libphonenumber-js/es6/AsYouTypeFormatter.util.js +0 -1
  1558. package/build/ext/libphonenumber-js/es6/AsYouTypeParser.js +0 -1
  1559. package/build/ext/libphonenumber-js/es6/AsYouTypeState.js +0 -1
  1560. package/build/ext/libphonenumber-js/es6/ParseError.js +0 -1
  1561. package/build/ext/libphonenumber-js/es6/PhoneNumber.js +0 -1
  1562. package/build/ext/libphonenumber-js/es6/constants.js +0 -1
  1563. package/build/ext/libphonenumber-js/es6/formatIncompletePhoneNumber.js +0 -1
  1564. package/build/ext/libphonenumber-js/es6/format_.js +0 -1
  1565. package/build/ext/libphonenumber-js/es6/getCountries.js +0 -1
  1566. package/build/ext/libphonenumber-js/es6/helpers/RFC3966.js +0 -1
  1567. package/build/ext/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +0 -1
  1568. package/build/ext/libphonenumber-js/es6/helpers/checkNumberLength.js +0 -1
  1569. package/build/ext/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +0 -1
  1570. package/build/ext/libphonenumber-js/es6/helpers/extension/extractExtension.js +0 -1
  1571. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +0 -1
  1572. package/build/ext/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +0 -1
  1573. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumber.js +0 -1
  1574. package/build/ext/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +0 -1
  1575. package/build/ext/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +0 -1
  1576. package/build/ext/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +0 -1
  1577. package/build/ext/libphonenumber-js/es6/helpers/getIddPrefix.js +0 -1
  1578. package/build/ext/libphonenumber-js/es6/helpers/getNumberType.js +0 -1
  1579. package/build/ext/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +0 -1
  1580. package/build/ext/libphonenumber-js/es6/helpers/matchesEntirely.js +0 -1
  1581. package/build/ext/libphonenumber-js/es6/helpers/mergeArrays.js +0 -1
  1582. package/build/ext/libphonenumber-js/es6/helpers/parseDigits.js +0 -1
  1583. package/build/ext/libphonenumber-js/es6/helpers/stripIddPrefix.js +0 -1
  1584. package/build/ext/libphonenumber-js/es6/isPossibleNumber_.js +0 -1
  1585. package/build/ext/libphonenumber-js/es6/metadata.js +0 -1
  1586. package/build/ext/libphonenumber-js/es6/parseIncompletePhoneNumber.js +0 -1
  1587. package/build/ext/libphonenumber-js/es6/parsePhoneNumber.js +0 -1
  1588. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString.js +0 -1
  1589. package/build/ext/libphonenumber-js/es6/parsePhoneNumberFromString_.js +0 -1
  1590. package/build/ext/libphonenumber-js/es6/parsePhoneNumber_.js +0 -1
  1591. package/build/ext/libphonenumber-js/es6/parse_.js +0 -1
  1592. package/build/ext/libphonenumber-js/es6/tools/semver-compare.js +0 -1
  1593. package/build/ext/libphonenumber-js/es6/validate_.js +0 -1
  1594. package/build/ext/libphonenumber-js/metadata.min.json.js +0 -1
  1595. package/build/ext/lodash/_DataView.js +0 -1
  1596. package/build/ext/lodash/_Hash.js +0 -1
  1597. package/build/ext/lodash/_ListCache.js +0 -1
  1598. package/build/ext/lodash/_Map.js +0 -1
  1599. package/build/ext/lodash/_MapCache.js +0 -1
  1600. package/build/ext/lodash/_Promise.js +0 -1
  1601. package/build/ext/lodash/_Set.js +0 -1
  1602. package/build/ext/lodash/_SetCache.js +0 -1
  1603. package/build/ext/lodash/_Stack.js +0 -1
  1604. package/build/ext/lodash/_Symbol.js +0 -1
  1605. package/build/ext/lodash/_Uint8Array.js +0 -1
  1606. package/build/ext/lodash/_WeakMap.js +0 -1
  1607. package/build/ext/lodash/_apply.js +0 -1
  1608. package/build/ext/lodash/_arrayAggregator.js +0 -1
  1609. package/build/ext/lodash/_arrayEach.js +0 -1
  1610. package/build/ext/lodash/_arrayFilter.js +0 -1
  1611. package/build/ext/lodash/_arrayIncludes.js +0 -1
  1612. package/build/ext/lodash/_arrayIncludesWith.js +0 -1
  1613. package/build/ext/lodash/_arrayLikeKeys.js +0 -1
  1614. package/build/ext/lodash/_arrayMap.js +0 -1
  1615. package/build/ext/lodash/_arrayPush.js +0 -1
  1616. package/build/ext/lodash/_arraySome.js +0 -1
  1617. package/build/ext/lodash/_assignValue.js +0 -1
  1618. package/build/ext/lodash/_assocIndexOf.js +0 -1
  1619. package/build/ext/lodash/_baseAggregator.js +0 -1
  1620. package/build/ext/lodash/_baseAssign.js +0 -1
  1621. package/build/ext/lodash/_baseAssignIn.js +0 -1
  1622. package/build/ext/lodash/_baseAssignValue.js +0 -1
  1623. package/build/ext/lodash/_baseClone.js +0 -1
  1624. package/build/ext/lodash/_baseCreate.js +0 -1
  1625. package/build/ext/lodash/_baseEach.js +0 -1
  1626. package/build/ext/lodash/_baseFindIndex.js +0 -1
  1627. package/build/ext/lodash/_baseFlatten.js +0 -1
  1628. package/build/ext/lodash/_baseFor.js +0 -1
  1629. package/build/ext/lodash/_baseForOwn.js +0 -1
  1630. package/build/ext/lodash/_baseGet.js +0 -1
  1631. package/build/ext/lodash/_baseGetAllKeys.js +0 -1
  1632. package/build/ext/lodash/_baseGetTag.js +0 -1
  1633. package/build/ext/lodash/_baseHasIn.js +0 -1
  1634. package/build/ext/lodash/_baseIndexOf.js +0 -1
  1635. package/build/ext/lodash/_baseIsArguments.js +0 -1
  1636. package/build/ext/lodash/_baseIsEqual.js +0 -1
  1637. package/build/ext/lodash/_baseIsEqualDeep.js +0 -1
  1638. package/build/ext/lodash/_baseIsMap.js +0 -1
  1639. package/build/ext/lodash/_baseIsMatch.js +0 -1
  1640. package/build/ext/lodash/_baseIsNaN.js +0 -1
  1641. package/build/ext/lodash/_baseIsNative.js +0 -1
  1642. package/build/ext/lodash/_baseIsSet.js +0 -1
  1643. package/build/ext/lodash/_baseIsTypedArray.js +0 -1
  1644. package/build/ext/lodash/_baseIteratee.js +0 -1
  1645. package/build/ext/lodash/_baseKeys.js +0 -1
  1646. package/build/ext/lodash/_baseKeysIn.js +0 -1
  1647. package/build/ext/lodash/_baseMap.js +0 -1
  1648. package/build/ext/lodash/_baseMatches.js +0 -1
  1649. package/build/ext/lodash/_baseMatchesProperty.js +0 -1
  1650. package/build/ext/lodash/_baseOrderBy.js +0 -1
  1651. package/build/ext/lodash/_baseProperty.js +0 -1
  1652. package/build/ext/lodash/_basePropertyDeep.js +0 -1
  1653. package/build/ext/lodash/_baseRest.js +0 -1
  1654. package/build/ext/lodash/_baseSetToString.js +0 -1
  1655. package/build/ext/lodash/_baseSortBy.js +0 -1
  1656. package/build/ext/lodash/_baseTimes.js +0 -1
  1657. package/build/ext/lodash/_baseToString.js +0 -1
  1658. package/build/ext/lodash/_baseUnary.js +0 -1
  1659. package/build/ext/lodash/_baseUniq.js +0 -1
  1660. package/build/ext/lodash/_cacheHas.js +0 -1
  1661. package/build/ext/lodash/_castFunction.js +0 -1
  1662. package/build/ext/lodash/_castPath.js +0 -1
  1663. package/build/ext/lodash/_cloneArrayBuffer.js +0 -1
  1664. package/build/ext/lodash/_cloneBuffer.js +0 -1
  1665. package/build/ext/lodash/_cloneDataView.js +0 -1
  1666. package/build/ext/lodash/_cloneRegExp.js +0 -1
  1667. package/build/ext/lodash/_cloneSymbol.js +0 -1
  1668. package/build/ext/lodash/_cloneTypedArray.js +0 -1
  1669. package/build/ext/lodash/_compareAscending.js +0 -1
  1670. package/build/ext/lodash/_compareMultiple.js +0 -1
  1671. package/build/ext/lodash/_copyArray.js +0 -1
  1672. package/build/ext/lodash/_copyObject.js +0 -1
  1673. package/build/ext/lodash/_copySymbols.js +0 -1
  1674. package/build/ext/lodash/_copySymbolsIn.js +0 -1
  1675. package/build/ext/lodash/_coreJsData.js +0 -1
  1676. package/build/ext/lodash/_createAggregator.js +0 -1
  1677. package/build/ext/lodash/_createBaseEach.js +0 -1
  1678. package/build/ext/lodash/_createBaseFor.js +0 -1
  1679. package/build/ext/lodash/_createSet.js +0 -1
  1680. package/build/ext/lodash/_defineProperty.js +0 -1
  1681. package/build/ext/lodash/_equalArrays.js +0 -1
  1682. package/build/ext/lodash/_equalByTag.js +0 -1
  1683. package/build/ext/lodash/_equalObjects.js +0 -1
  1684. package/build/ext/lodash/_freeGlobal.js +0 -1
  1685. package/build/ext/lodash/_getAllKeys.js +0 -1
  1686. package/build/ext/lodash/_getAllKeysIn.js +0 -1
  1687. package/build/ext/lodash/_getMapData.js +0 -1
  1688. package/build/ext/lodash/_getMatchData.js +0 -1
  1689. package/build/ext/lodash/_getNative.js +0 -1
  1690. package/build/ext/lodash/_getPrototype.js +0 -1
  1691. package/build/ext/lodash/_getRawTag.js +0 -1
  1692. package/build/ext/lodash/_getSymbols.js +0 -1
  1693. package/build/ext/lodash/_getSymbolsIn.js +0 -1
  1694. package/build/ext/lodash/_getTag.js +0 -1
  1695. package/build/ext/lodash/_getValue.js +0 -1
  1696. package/build/ext/lodash/_hasPath.js +0 -1
  1697. package/build/ext/lodash/_hashClear.js +0 -1
  1698. package/build/ext/lodash/_hashDelete.js +0 -1
  1699. package/build/ext/lodash/_hashGet.js +0 -1
  1700. package/build/ext/lodash/_hashHas.js +0 -1
  1701. package/build/ext/lodash/_hashSet.js +0 -1
  1702. package/build/ext/lodash/_initCloneArray.js +0 -1
  1703. package/build/ext/lodash/_initCloneByTag.js +0 -1
  1704. package/build/ext/lodash/_initCloneObject.js +0 -1
  1705. package/build/ext/lodash/_isFlattenable.js +0 -1
  1706. package/build/ext/lodash/_isIndex.js +0 -1
  1707. package/build/ext/lodash/_isIterateeCall.js +0 -1
  1708. package/build/ext/lodash/_isKey.js +0 -1
  1709. package/build/ext/lodash/_isKeyable.js +0 -1
  1710. package/build/ext/lodash/_isMasked.js +0 -1
  1711. package/build/ext/lodash/_isPrototype.js +0 -1
  1712. package/build/ext/lodash/_isStrictComparable.js +0 -1
  1713. package/build/ext/lodash/_listCacheClear.js +0 -1
  1714. package/build/ext/lodash/_listCacheDelete.js +0 -1
  1715. package/build/ext/lodash/_listCacheGet.js +0 -1
  1716. package/build/ext/lodash/_listCacheHas.js +0 -1
  1717. package/build/ext/lodash/_listCacheSet.js +0 -1
  1718. package/build/ext/lodash/_mapCacheClear.js +0 -1
  1719. package/build/ext/lodash/_mapCacheDelete.js +0 -1
  1720. package/build/ext/lodash/_mapCacheGet.js +0 -1
  1721. package/build/ext/lodash/_mapCacheHas.js +0 -1
  1722. package/build/ext/lodash/_mapCacheSet.js +0 -1
  1723. package/build/ext/lodash/_mapToArray.js +0 -1
  1724. package/build/ext/lodash/_matchesStrictComparable.js +0 -1
  1725. package/build/ext/lodash/_memoizeCapped.js +0 -1
  1726. package/build/ext/lodash/_nativeCreate.js +0 -1
  1727. package/build/ext/lodash/_nativeKeys.js +0 -1
  1728. package/build/ext/lodash/_nativeKeysIn.js +0 -1
  1729. package/build/ext/lodash/_nodeUtil.js +0 -1
  1730. package/build/ext/lodash/_objectToString.js +0 -1
  1731. package/build/ext/lodash/_overArg.js +0 -1
  1732. package/build/ext/lodash/_overRest.js +0 -1
  1733. package/build/ext/lodash/_root.js +0 -1
  1734. package/build/ext/lodash/_setCacheAdd.js +0 -1
  1735. package/build/ext/lodash/_setCacheHas.js +0 -1
  1736. package/build/ext/lodash/_setToArray.js +0 -1
  1737. package/build/ext/lodash/_setToString.js +0 -1
  1738. package/build/ext/lodash/_shortOut.js +0 -1
  1739. package/build/ext/lodash/_stackClear.js +0 -1
  1740. package/build/ext/lodash/_stackDelete.js +0 -1
  1741. package/build/ext/lodash/_stackGet.js +0 -1
  1742. package/build/ext/lodash/_stackHas.js +0 -1
  1743. package/build/ext/lodash/_stackSet.js +0 -1
  1744. package/build/ext/lodash/_strictIndexOf.js +0 -1
  1745. package/build/ext/lodash/_stringToPath.js +0 -1
  1746. package/build/ext/lodash/_toKey.js +0 -1
  1747. package/build/ext/lodash/_toSource.js +0 -1
  1748. package/build/ext/lodash/cloneDeep.js +0 -1
  1749. package/build/ext/lodash/constant.js +0 -1
  1750. package/build/ext/lodash/debounce.js +0 -1
  1751. package/build/ext/lodash/eq.js +0 -1
  1752. package/build/ext/lodash/flatten.js +0 -1
  1753. package/build/ext/lodash/forEach.js +0 -1
  1754. package/build/ext/lodash/get.js +0 -1
  1755. package/build/ext/lodash/groupBy.js +0 -1
  1756. package/build/ext/lodash/hasIn.js +0 -1
  1757. package/build/ext/lodash/identity.js +0 -1
  1758. package/build/ext/lodash/isArguments.js +0 -1
  1759. package/build/ext/lodash/isArray.js +0 -1
  1760. package/build/ext/lodash/isArrayLike.js +0 -1
  1761. package/build/ext/lodash/isBuffer.js +0 -1
  1762. package/build/ext/lodash/isFunction.js +0 -1
  1763. package/build/ext/lodash/isLength.js +0 -1
  1764. package/build/ext/lodash/isMap.js +0 -1
  1765. package/build/ext/lodash/isObject.js +0 -1
  1766. package/build/ext/lodash/isObjectLike.js +0 -1
  1767. package/build/ext/lodash/isSet.js +0 -1
  1768. package/build/ext/lodash/isSymbol.js +0 -1
  1769. package/build/ext/lodash/isTypedArray.js +0 -1
  1770. package/build/ext/lodash/keys.js +0 -1
  1771. package/build/ext/lodash/keysIn.js +0 -1
  1772. package/build/ext/lodash/memoize.js +0 -1
  1773. package/build/ext/lodash/noop.js +0 -1
  1774. package/build/ext/lodash/now.js +0 -1
  1775. package/build/ext/lodash/property.js +0 -1
  1776. package/build/ext/lodash/sortBy.js +0 -1
  1777. package/build/ext/lodash/stubArray.js +0 -1
  1778. package/build/ext/lodash/stubFalse.js +0 -1
  1779. package/build/ext/lodash/toNumber.js +0 -1
  1780. package/build/ext/lodash/toString.js +0 -1
  1781. package/build/ext/lodash/uniq.js +0 -1
  1782. package/build/ext/lodash/uniqBy.js +0 -1
  1783. package/build/ext/lzutf8/build/production/lzutf8.js +0 -11
  1784. package/build/ext/ms/index.js +0 -1
  1785. package/build/ext/object-assign/index.js +0 -6
  1786. package/build/ext/prop-types/checkPropTypes.js +0 -1
  1787. package/build/ext/prop-types/factoryWithThrowingShims.js +0 -1
  1788. package/build/ext/prop-types/factoryWithTypeCheckers.js +0 -1
  1789. package/build/ext/prop-types/index.js +0 -1
  1790. package/build/ext/prop-types/lib/ReactPropTypesSecret.js +0 -1
  1791. package/build/ext/query-string/index.js +0 -1
  1792. package/build/ext/react-is/cjs/react-is.development.js +0 -9
  1793. package/build/ext/react-is/cjs/react-is.production.min.js +0 -9
  1794. package/build/ext/react-is/index.js +0 -1
  1795. package/build/ext/react-property/lib/index.js +0 -1
  1796. package/build/ext/react-property/lib/possibleStandardNamesOptimized.js +0 -1
  1797. package/build/ext/react-tooltip/dist/index.es.js +0 -1
  1798. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/bytesToUuid.js +0 -1
  1799. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/rng.js +0 -1
  1800. package/build/ext/react-tooltip/ext/uuid/dist/esm-node/v4.js +0 -1
  1801. package/build/ext/readable-stream/errors.js +0 -1
  1802. package/build/ext/readable-stream/lib/_registry.js +0 -1
  1803. package/build/ext/readable-stream/lib/_stream_duplex.js +0 -1
  1804. package/build/ext/readable-stream/lib/_stream_passthrough.js +0 -1
  1805. package/build/ext/readable-stream/lib/_stream_readable.js +0 -1
  1806. package/build/ext/readable-stream/lib/_stream_transform.js +0 -1
  1807. package/build/ext/readable-stream/lib/_stream_writable.js +0 -1
  1808. package/build/ext/readable-stream/lib/internal/streams/async_iterator.js +0 -1
  1809. package/build/ext/readable-stream/lib/internal/streams/buffer_list.js +0 -1
  1810. package/build/ext/readable-stream/lib/internal/streams/destroy.js +0 -1
  1811. package/build/ext/readable-stream/lib/internal/streams/end-of-stream.js +0 -1
  1812. package/build/ext/readable-stream/lib/internal/streams/from.js +0 -1
  1813. package/build/ext/readable-stream/lib/internal/streams/pipeline.js +0 -1
  1814. package/build/ext/readable-stream/lib/internal/streams/state.js +0 -1
  1815. package/build/ext/readable-stream/lib/internal/streams/stream.js +0 -1
  1816. package/build/ext/readable-stream/readable.js +0 -1
  1817. package/build/ext/safe-buffer/index.js +0 -1
  1818. package/build/ext/split-on-first/index.js +0 -1
  1819. package/build/ext/strict-uri-encode/index.js +0 -1
  1820. package/build/ext/string_decoder/lib/string_decoder.js +0 -1
  1821. package/build/ext/style-inject/dist/style-inject.es.js +0 -1
  1822. package/build/ext/style-to-js/cjs/index.js +0 -1
  1823. package/build/ext/style-to-js/cjs/utilities.js +0 -1
  1824. package/build/ext/style-to-object/index.js +0 -1
  1825. package/build/ext/supports-color/index.js +0 -1
  1826. package/build/ext/tslib/tslib.es6.js +0 -15
  1827. package/build/ext/util-deprecate/node.js +0 -1
  1828. package/build/ext/uuid/dist/esm-node/regex.js +0 -1
  1829. package/build/ext/uuid/dist/esm-node/rng.js +0 -1
  1830. package/build/ext/uuid/dist/esm-node/stringify.js +0 -1
  1831. package/build/ext/uuid/dist/esm-node/v4.js +0 -1
  1832. package/build/ext/uuid/dist/esm-node/validate.js +0 -1
  1833. package/build/ikas.cjs +0 -2
  1834. package/build/index.d.ts +0 -10
  1835. package/build/index.js +0 -1
  1836. package/build/models/data/blog/enums.d.ts +0 -2
  1837. package/build/models/data/blog/index.d.ts +0 -33
  1838. package/build/models/data/blog/index.js +0 -1
  1839. package/build/models/data/brand/enums.d.ts +0 -2
  1840. package/build/models/data/brand/index.d.ts +0 -17
  1841. package/build/models/data/brand/index.js +0 -1
  1842. package/build/models/data/cart/campaign-offer/enums.d.ts +0 -3
  1843. package/build/models/data/cart/campaign-offer/index.d.ts +0 -8
  1844. package/build/models/data/cart/campaign-offer/index.js +0 -1
  1845. package/build/models/data/cart/enums.d.ts +0 -2
  1846. package/build/models/data/cart/index.d.ts +0 -20
  1847. package/build/models/data/cart/index.js +0 -1
  1848. package/build/models/data/category/enums.d.ts +0 -2
  1849. package/build/models/data/category/index.d.ts +0 -39
  1850. package/build/models/data/category/index.js +0 -1
  1851. package/build/models/data/checkout/index.d.ts +0 -18
  1852. package/build/models/data/checkout/index.js +0 -1
  1853. package/build/models/data/checkout-settings/enums.d.ts +0 -2
  1854. package/build/models/data/checkout-settings/index.d.ts +0 -13
  1855. package/build/models/data/checkout-settings/index.js +0 -1
  1856. package/build/models/data/city/index.d.ts +0 -3
  1857. package/build/models/data/city/index.js +0 -1
  1858. package/build/models/data/contact-form/index.d.ts +0 -7
  1859. package/build/models/data/contact-form/index.js +0 -1
  1860. package/build/models/data/country/index.d.ts +0 -3
  1861. package/build/models/data/country/index.js +0 -1
  1862. package/build/models/data/customer/address/index.d.ts +0 -55
  1863. package/build/models/data/customer/address/index.js +0 -1
  1864. package/build/models/data/customer/attribute-value/index.d.ts +0 -7
  1865. package/build/models/data/customer/attribute-value/index.js +0 -1
  1866. package/build/models/data/customer/enums.d.ts +0 -4
  1867. package/build/models/data/customer/index.d.ts +0 -39
  1868. package/build/models/data/customer/index.js +0 -1
  1869. package/build/models/data/customer-attribute/customer-attribute-option/index.d.ts +0 -3
  1870. package/build/models/data/customer-attribute/customer-attribute-option/index.js +0 -1
  1871. package/build/models/data/customer-attribute/customer-attribute-sales-channel/enums.d.ts +0 -3
  1872. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.d.ts +0 -8
  1873. package/build/models/data/customer-attribute/customer-attribute-sales-channel/index.js +0 -1
  1874. package/build/models/data/customer-attribute/enums.d.ts +0 -2
  1875. package/build/models/data/customer-attribute/index.d.ts +0 -22
  1876. package/build/models/data/customer-attribute/index.js +0 -1
  1877. package/build/models/data/customer-review/enums.d.ts +0 -2
  1878. package/build/models/data/customer-review/index.d.ts +0 -11
  1879. package/build/models/data/customer-review/index.js +0 -1
  1880. package/build/models/data/customer-review-summary/index.d.ts +0 -8
  1881. package/build/models/data/customer-review-summary/index.js +0 -1
  1882. package/build/models/data/district/index.d.ts +0 -3
  1883. package/build/models/data/district/index.js +0 -1
  1884. package/build/models/data/favorite-product/index.d.ts +0 -3
  1885. package/build/models/data/favorite-product/index.js +0 -1
  1886. package/build/models/data/html-meta-data/enums.d.ts +0 -2
  1887. package/build/models/data/html-meta-data/index.d.ts +0 -12
  1888. package/build/models/data/html-meta-data/index.js +0 -1
  1889. package/build/models/data/image/index.d.ts +0 -19
  1890. package/build/models/data/image/index.js +0 -1
  1891. package/build/models/data/index.d.ts +0 -65
  1892. package/build/models/data/merchant-settings/index.d.ts +0 -6
  1893. package/build/models/data/merchant-settings/index.js +0 -1
  1894. package/build/models/data/order/address/index.d.ts +0 -51
  1895. package/build/models/data/order/address/index.js +0 -1
  1896. package/build/models/data/order/adjustment/enums.d.ts +0 -4
  1897. package/build/models/data/order/adjustment/index.d.ts +0 -9
  1898. package/build/models/data/order/adjustment/index.js +0 -1
  1899. package/build/models/data/order/customer/index.d.ts +0 -10
  1900. package/build/models/data/order/customer/index.js +0 -1
  1901. package/build/models/data/order/enums.d.ts +0 -6
  1902. package/build/models/data/order/gift-line/index.d.ts +0 -3
  1903. package/build/models/data/order/gift-line/index.js +0 -1
  1904. package/build/models/data/order/index.d.ts +0 -54
  1905. package/build/models/data/order/index.js +0 -1
  1906. package/build/models/data/order/invoice/enums.d.ts +0 -2
  1907. package/build/models/data/order/invoice/index.d.ts +0 -7
  1908. package/build/models/data/order/invoice/index.js +0 -1
  1909. package/build/models/data/order/line-item/discount/index.d.ts +0 -6
  1910. package/build/models/data/order/line-item/discount/index.js +0 -1
  1911. package/build/models/data/order/line-item/enums.d.ts +0 -2
  1912. package/build/models/data/order/line-item/index.d.ts +0 -21
  1913. package/build/models/data/order/line-item/index.js +0 -1
  1914. package/build/models/data/order/line-item/option/index.d.ts +0 -9
  1915. package/build/models/data/order/line-item/option/index.js +0 -1
  1916. package/build/models/data/order/line-item/option/value/index.d.ts +0 -3
  1917. package/build/models/data/order/line-item/option/value/index.js +0 -1
  1918. package/build/models/data/order/line-item/variant/index.d.ts +0 -22
  1919. package/build/models/data/order/line-item/variant/index.js +0 -1
  1920. package/build/models/data/order/package/enums.d.ts +0 -2
  1921. package/build/models/data/order/package/index.d.ts +0 -9
  1922. package/build/models/data/order/package/index.js +0 -1
  1923. package/build/models/data/order/package/tracking-info/index.d.ts +0 -3
  1924. package/build/models/data/order/package/tracking-info/index.js +0 -1
  1925. package/build/models/data/order/payment-method/enums.d.ts +0 -2
  1926. package/build/models/data/order/payment-method/index.d.ts +0 -7
  1927. package/build/models/data/order/payment-method/index.js +0 -1
  1928. package/build/models/data/order/refund/index.d.ts +0 -6
  1929. package/build/models/data/order/refund/index.js +0 -1
  1930. package/build/models/data/order/refund/line-item/index.d.ts +0 -3
  1931. package/build/models/data/order/refund/line-item/index.js +0 -1
  1932. package/build/models/data/order/refund/settings/index.d.ts +0 -6
  1933. package/build/models/data/order/refund/settings/index.js +0 -1
  1934. package/build/models/data/order/shipping-line/index.d.ts +0 -3
  1935. package/build/models/data/order/shipping-line/index.js +0 -1
  1936. package/build/models/data/order/tax-line/index.d.ts +0 -3
  1937. package/build/models/data/order/tax-line/index.js +0 -1
  1938. package/build/models/data/order/transaction/enums.d.ts +0 -5
  1939. package/build/models/data/order/transaction/index.d.ts +0 -37
  1940. package/build/models/data/order/transaction/index.js +0 -1
  1941. package/build/models/data/payment-gateway/additional-price/index.d.ts +0 -7
  1942. package/build/models/data/payment-gateway/additional-price/index.js +0 -1
  1943. package/build/models/data/payment-gateway/enums.d.ts +0 -5
  1944. package/build/models/data/payment-gateway/index.d.ts +0 -37
  1945. package/build/models/data/payment-gateway/index.js +0 -1
  1946. package/build/models/data/product/attribute-value/index.d.ts +0 -20
  1947. package/build/models/data/product/attribute-value/index.js +0 -1
  1948. package/build/models/data/product/index.d.ts +0 -36
  1949. package/build/models/data/product/index.js +0 -1
  1950. package/build/models/data/product/variant/index.d.ts +0 -27
  1951. package/build/models/data/product/variant/index.js +0 -1
  1952. package/build/models/data/product/variant/price/index.d.ts +0 -9
  1953. package/build/models/data/product/variant/price/index.js +0 -1
  1954. package/build/models/data/product/variant-type/index.d.ts +0 -6
  1955. package/build/models/data/product/variant-type/index.js +0 -1
  1956. package/build/models/data/product-attribute/index.d.ts +0 -34
  1957. package/build/models/data/product-attribute/index.js +0 -1
  1958. package/build/models/data/product-attribute/option/index.d.ts +0 -5
  1959. package/build/models/data/product-attribute/option/index.js +0 -1
  1960. package/build/models/data/product-attribute/table-cell/index.d.ts +0 -5
  1961. package/build/models/data/product-attribute/table-cell/index.js +0 -1
  1962. package/build/models/data/product-attribute/table-template/index.d.ts +0 -6
  1963. package/build/models/data/product-attribute/table-template/index.js +0 -1
  1964. package/build/models/data/product-back-in-stock-settings/index.d.ts +0 -3
  1965. package/build/models/data/product-campaign/campaign/index.d.ts +0 -41
  1966. package/build/models/data/product-campaign/campaign/index.js +0 -1
  1967. package/build/models/data/product-campaign/filter/index.d.ts +0 -13
  1968. package/build/models/data/product-campaign/filter/index.js +0 -1
  1969. package/build/models/data/product-campaign/index.d.ts +0 -6
  1970. package/build/models/data/product-campaign/index.js +0 -1
  1971. package/build/models/data/product-campaign/product-buyx-then-gety/index.d.ts +0 -19
  1972. package/build/models/data/product-campaign/product-buyx-then-gety/index.js +0 -1
  1973. package/build/models/data/product-campaign/product-campaign-date-range-field/index.d.ts +0 -5
  1974. package/build/models/data/product-campaign/product-campaign-date-range-field/index.js +0 -1
  1975. package/build/models/data/product-campaign/product-fixed-discount/index.d.ts +0 -13
  1976. package/build/models/data/product-campaign/product-fixed-discount/index.js +0 -1
  1977. package/build/models/data/product-filter/index.d.ts +0 -113
  1978. package/build/models/data/product-filter/index.js +0 -1
  1979. package/build/models/data/product-option-set/enums.d.ts +0 -3
  1980. package/build/models/data/product-option-set/index.d.ts +0 -102
  1981. package/build/models/data/product-option-set/index.js +0 -1
  1982. package/build/models/data/product-tag/index.d.ts +0 -5
  1983. package/build/models/data/product-tag/index.js +0 -1
  1984. package/build/models/data/raffle/index.d.ts +0 -68
  1985. package/build/models/data/raffle/index.js +0 -1
  1986. package/build/models/data/sales-channel/index.d.ts +0 -18
  1987. package/build/models/data/sales-channel/index.js +0 -1
  1988. package/build/models/data/slider/index.d.ts +0 -5
  1989. package/build/models/data/slider/index.js +0 -1
  1990. package/build/models/data/state/index.d.ts +0 -3
  1991. package/build/models/data/state/index.js +0 -1
  1992. package/build/models/data/storefront/domain/index.d.ts +0 -8
  1993. package/build/models/data/storefront/domain/index.js +0 -1
  1994. package/build/models/data/storefront/index.d.ts +0 -27
  1995. package/build/models/data/storefront/index.js +0 -1
  1996. package/build/models/data/storefront/localization/index.d.ts +0 -7
  1997. package/build/models/data/storefront/localization/index.js +0 -1
  1998. package/build/models/data/storefront/routing/dynamic-currency/index.d.ts +0 -5
  1999. package/build/models/data/storefront/routing/dynamic-currency/index.js +0 -1
  2000. package/build/models/data/storefront/routing/index.d.ts +0 -11
  2001. package/build/models/data/storefront/routing/index.js +0 -1
  2002. package/build/models/data/storefront/theme/index.d.ts +0 -13
  2003. package/build/models/data/storefront/theme/index.js +0 -1
  2004. package/build/models/data/storefront/theme-localization/index.d.ts +0 -12
  2005. package/build/models/data/storefront/theme-localization/index.js +0 -1
  2006. package/build/models/data/variant-type/index.d.ts +0 -26
  2007. package/build/models/data/variant-type/index.js +0 -1
  2008. package/build/models/data/variant-type/variant-value/index.d.ts +0 -11
  2009. package/build/models/data/variant-type/variant-value/index.js +0 -1
  2010. package/build/models/index.d.ts +0 -3
  2011. package/build/models/theme/component/index.d.ts +0 -19
  2012. package/build/models/theme/component/index.js +0 -1
  2013. package/build/models/theme/component/prop/index.d.ts +0 -63
  2014. package/build/models/theme/component/prop/index.js +0 -1
  2015. package/build/models/theme/custom-data/index.d.ts +0 -43
  2016. package/build/models/theme/custom-data/index.js +0 -1
  2017. package/build/models/theme/index.d.ts +0 -20
  2018. package/build/models/theme/page/component/index.d.ts +0 -6
  2019. package/build/models/theme/page/component/index.js +0 -1
  2020. package/build/models/theme/page/component/prop-value/attribute-list.d.ts +0 -7
  2021. package/build/models/theme/page/component/prop-value/attribute.d.ts +0 -7
  2022. package/build/models/theme/page/component/prop-value/blog-category-list.d.ts +0 -7
  2023. package/build/models/theme/page/component/prop-value/blog-category-list.js +0 -1
  2024. package/build/models/theme/page/component/prop-value/blog-category.d.ts +0 -5
  2025. package/build/models/theme/page/component/prop-value/blog-category.js +0 -1
  2026. package/build/models/theme/page/component/prop-value/blog-list.d.ts +0 -9
  2027. package/build/models/theme/page/component/prop-value/blog-list.js +0 -1
  2028. package/build/models/theme/page/component/prop-value/blog.d.ts +0 -5
  2029. package/build/models/theme/page/component/prop-value/blog.js +0 -1
  2030. package/build/models/theme/page/component/prop-value/brand-list.d.ts +0 -9
  2031. package/build/models/theme/page/component/prop-value/brand-list.js +0 -1
  2032. package/build/models/theme/page/component/prop-value/brand.d.ts +0 -5
  2033. package/build/models/theme/page/component/prop-value/brand.js +0 -1
  2034. package/build/models/theme/page/component/prop-value/category-list.d.ts +0 -9
  2035. package/build/models/theme/page/component/prop-value/category-list.js +0 -1
  2036. package/build/models/theme/page/component/prop-value/category.d.ts +0 -5
  2037. package/build/models/theme/page/component/prop-value/category.js +0 -1
  2038. package/build/models/theme/page/component/prop-value/link.d.ts +0 -19
  2039. package/build/models/theme/page/component/prop-value/link.js +0 -1
  2040. package/build/models/theme/page/component/prop-value/product-detail.d.ts +0 -6
  2041. package/build/models/theme/page/component/prop-value/product-detail.js +0 -1
  2042. package/build/models/theme/page/component/prop-value/product-list.d.ts +0 -18
  2043. package/build/models/theme/page/component/prop-value/product-list.js +0 -1
  2044. package/build/models/theme/page/component/prop-value/raffle-list.d.ts +0 -5
  2045. package/build/models/theme/page/component/prop-value/raffle-list.js +0 -1
  2046. package/build/models/theme/page/component/prop-value/raffle.d.ts +0 -5
  2047. package/build/models/theme/page/component/prop-value/raffle.js +0 -1
  2048. package/build/models/theme/page/index.d.ts +0 -45
  2049. package/build/models/theme/page/index.js +0 -1
  2050. package/build/models/theme/settings/color/index.d.ts +0 -14
  2051. package/build/models/theme/settings/color/index.js +0 -1
  2052. package/build/models/theme/settings/favicon/index.d.ts +0 -4
  2053. package/build/models/theme/settings/favicon/index.js +0 -1
  2054. package/build/models/theme/settings/font-family/index.d.ts +0 -5
  2055. package/build/models/theme/settings/font-family/index.js +0 -1
  2056. package/build/models/theme/settings/index.d.ts +0 -15
  2057. package/build/models/theme/settings/index.js +0 -1
  2058. package/build/models/theme/theme.d.ts +0 -16
  2059. package/build/models/theme/theme.js +0 -1
  2060. package/build/models/ui/blog-category-list/index.d.ts +0 -52
  2061. package/build/models/ui/blog-category-list/index.js +0 -1
  2062. package/build/models/ui/blog-list/index.d.ts +0 -56
  2063. package/build/models/ui/blog-list/index.js +0 -1
  2064. package/build/models/ui/brand-list/index.d.ts +0 -61
  2065. package/build/models/ui/brand-list/index.js +0 -1
  2066. package/build/models/ui/category-list/index.d.ts +0 -61
  2067. package/build/models/ui/category-list/index.js +0 -1
  2068. package/build/models/ui/component-renderer/index.d.ts +0 -7
  2069. package/build/models/ui/component-renderer/index.js +0 -1
  2070. package/build/models/ui/customer-review-list/index.d.ts +0 -43
  2071. package/build/models/ui/customer-review-list/index.js +0 -1
  2072. package/build/models/ui/customer-review-summary-list/index.d.ts +0 -43
  2073. package/build/models/ui/customer-review-summary-list/index.js +0 -1
  2074. package/build/models/ui/index.d.ts +0 -27
  2075. package/build/models/ui/navigation-link/index.d.ts +0 -8
  2076. package/build/models/ui/navigation-link/index.js +0 -1
  2077. package/build/models/ui/product-attribute-detail/index.d.ts +0 -8
  2078. package/build/models/ui/product-attribute-detail/index.js +0 -1
  2079. package/build/models/ui/product-attribute-list/index.d.ts +0 -9
  2080. package/build/models/ui/product-attribute-list/index.js +0 -1
  2081. package/build/models/ui/product-detail/index.d.ts +0 -39
  2082. package/build/models/ui/product-detail/index.js +0 -1
  2083. package/build/models/ui/product-list/index.d.ts +0 -141
  2084. package/build/models/ui/product-list/index.js +0 -1
  2085. package/build/models/ui/raffle-list/index.d.ts +0 -54
  2086. package/build/models/ui/raffle-list/index.js +0 -1
  2087. package/build/models/ui/validator/form/account-info.d.ts +0 -42
  2088. package/build/models/ui/validator/form/account-info.js +0 -1
  2089. package/build/models/ui/validator/form/address.d.ts +0 -78
  2090. package/build/models/ui/validator/form/address.js +0 -1
  2091. package/build/models/ui/validator/form/contact-form.d.ts +0 -45
  2092. package/build/models/ui/validator/form/contact-form.js +0 -1
  2093. package/build/models/ui/validator/form/customer-review.d.ts +0 -37
  2094. package/build/models/ui/validator/form/customer-review.js +0 -1
  2095. package/build/models/ui/validator/form/forgot-password.d.ts +0 -29
  2096. package/build/models/ui/validator/form/forgot-password.js +0 -1
  2097. package/build/models/ui/validator/form/login.d.ts +0 -35
  2098. package/build/models/ui/validator/form/login.js +0 -1
  2099. package/build/models/ui/validator/form/raffle-form.d.ts +0 -60
  2100. package/build/models/ui/validator/form/raffle-form.js +0 -1
  2101. package/build/models/ui/validator/form/recover-password.d.ts +0 -36
  2102. package/build/models/ui/validator/form/recover-password.js +0 -1
  2103. package/build/models/ui/validator/form/register.d.ts +0 -52
  2104. package/build/models/ui/validator/form/register.js +0 -1
  2105. package/build/models/ui/validator/index.d.ts +0 -27
  2106. package/build/models/ui/validator/index.js +0 -1
  2107. package/build/models/ui/validator/rules/index.d.ts +0 -91
  2108. package/build/models/ui/validator/rules/index.js +0 -1
  2109. package/build/pages/404.d.ts +0 -6
  2110. package/build/pages/404.js +0 -1
  2111. package/build/pages/[slug]/index.d.ts +0 -7
  2112. package/build/pages/_slug_/index.js +0 -1
  2113. package/build/pages/account/addresses.d.ts +0 -6
  2114. package/build/pages/account/addresses.js +0 -1
  2115. package/build/pages/account/favorite-products.d.ts +0 -6
  2116. package/build/pages/account/favorite-products.js +0 -1
  2117. package/build/pages/account/forgot-password.d.ts +0 -6
  2118. package/build/pages/account/forgot-password.js +0 -1
  2119. package/build/pages/account/index.d.ts +0 -6
  2120. package/build/pages/account/index.js +0 -1
  2121. package/build/pages/account/login.d.ts +0 -6
  2122. package/build/pages/account/login.js +0 -1
  2123. package/build/pages/account/orders/[id].d.ts +0 -6
  2124. package/build/pages/account/orders/_id_.js +0 -1
  2125. package/build/pages/account/orders/index.d.ts +0 -6
  2126. package/build/pages/account/orders/index.js +0 -1
  2127. package/build/pages/account/raffles.d.ts +0 -6
  2128. package/build/pages/account/raffles.js +0 -1
  2129. package/build/pages/account/recover-password.d.ts +0 -6
  2130. package/build/pages/account/recover-password.js +0 -1
  2131. package/build/pages/account/register.d.ts +0 -6
  2132. package/build/pages/account/register.js +0 -1
  2133. package/build/pages/blog/[slug].d.ts +0 -7
  2134. package/build/pages/blog/_slug_.js +0 -1
  2135. package/build/pages/blog/index.d.ts +0 -6
  2136. package/build/pages/blog/index.js +0 -1
  2137. package/build/pages/cart.d.ts +0 -6
  2138. package/build/pages/cart.js +0 -1
  2139. package/build/pages/checkout.d.ts +0 -18
  2140. package/build/pages/checkout.js +0 -1
  2141. package/build/pages/editor.d.ts +0 -10
  2142. package/build/pages/editor.js +0 -1
  2143. package/build/pages/home.d.ts +0 -6
  2144. package/build/pages/home.js +0 -1
  2145. package/build/pages/index.d.ts +0 -22
  2146. package/build/pages/pages/[slug].d.ts +0 -7
  2147. package/build/pages/pages/_slug_.js +0 -1
  2148. package/build/pages/raffle/[slug].d.ts +0 -7
  2149. package/build/pages/raffle/_slug_.js +0 -1
  2150. package/build/pages/raffle/index.d.ts +0 -6
  2151. package/build/pages/raffle/index.js +0 -1
  2152. package/build/pages/search.d.ts +0 -6
  2153. package/build/pages/search.js +0 -1
  2154. package/build/providers/helpers/raffles.d.ts +0 -2
  2155. package/build/providers/helpers/raffles.js +0 -1
  2156. package/build/providers/page-data-get.d.ts +0 -70
  2157. package/build/providers/page-data-get.js +0 -1
  2158. package/build/providers/page-data-init.d.ts +0 -66
  2159. package/build/providers/page-data-init.js +0 -1
  2160. package/build/providers/page-data-next.d.ts +0 -292
  2161. package/build/providers/page-data-next.js +0 -1
  2162. package/build/providers/placeholders.d.ts +0 -7
  2163. package/build/providers/placeholders.js +0 -1
  2164. package/build/providers/prop-value/attribute-list.d.ts +0 -12
  2165. package/build/providers/prop-value/attribute-list.js +0 -1
  2166. package/build/providers/prop-value/attribute.d.ts +0 -12
  2167. package/build/providers/prop-value/attribute.js +0 -1
  2168. package/build/providers/prop-value/blog-category-list.d.ts +0 -7
  2169. package/build/providers/prop-value/blog-category-list.js +0 -1
  2170. package/build/providers/prop-value/blog-category.d.ts +0 -11
  2171. package/build/providers/prop-value/blog-category.js +0 -1
  2172. package/build/providers/prop-value/blog-list.d.ts +0 -9
  2173. package/build/providers/prop-value/blog-list.js +0 -1
  2174. package/build/providers/prop-value/blog.d.ts +0 -11
  2175. package/build/providers/prop-value/blog.js +0 -1
  2176. package/build/providers/prop-value/boolean.d.ts +0 -6
  2177. package/build/providers/prop-value/boolean.js +0 -1
  2178. package/build/providers/prop-value/brand-list.d.ts +0 -7
  2179. package/build/providers/prop-value/brand-list.js +0 -1
  2180. package/build/providers/prop-value/brand.d.ts +0 -11
  2181. package/build/providers/prop-value/brand.js +0 -1
  2182. package/build/providers/prop-value/category-list.d.ts +0 -7
  2183. package/build/providers/prop-value/category-list.js +0 -1
  2184. package/build/providers/prop-value/category.d.ts +0 -11
  2185. package/build/providers/prop-value/category.js +0 -1
  2186. package/build/providers/prop-value/color.d.ts +0 -6
  2187. package/build/providers/prop-value/color.js +0 -1
  2188. package/build/providers/prop-value/custom.d.ts +0 -45
  2189. package/build/providers/prop-value/custom.js +0 -1
  2190. package/build/providers/prop-value/image-list.d.ts +0 -7
  2191. package/build/providers/prop-value/image-list.js +0 -1
  2192. package/build/providers/prop-value/image.d.ts +0 -7
  2193. package/build/providers/prop-value/image.js +0 -1
  2194. package/build/providers/prop-value/index.d.ts +0 -3
  2195. package/build/providers/prop-value/link.d.ts +0 -16
  2196. package/build/providers/prop-value/link.js +0 -1
  2197. package/build/providers/prop-value/product-detail.d.ts +0 -11
  2198. package/build/providers/prop-value/product-detail.js +0 -1
  2199. package/build/providers/prop-value/product-list.d.ts +0 -15
  2200. package/build/providers/prop-value/product-list.js +0 -1
  2201. package/build/providers/prop-value/raffle-list.d.ts +0 -5
  2202. package/build/providers/prop-value/raffle-list.js +0 -1
  2203. package/build/providers/prop-value/raffle.d.ts +0 -11
  2204. package/build/providers/prop-value/raffle.js +0 -1
  2205. package/build/providers/prop-value/rich-text.d.ts +0 -6
  2206. package/build/providers/prop-value/rich-text.js +0 -1
  2207. package/build/providers/prop-value/slider.d.ts +0 -11
  2208. package/build/providers/prop-value/slider.js +0 -1
  2209. package/build/providers/prop-value/text.d.ts +0 -6
  2210. package/build/providers/prop-value/text.js +0 -1
  2211. package/build/scripts/generators/api/index.d.ts +0 -5
  2212. package/build/scripts/generators/api/index.js +0 -1
  2213. package/build/scripts/generators/api/info.d.ts +0 -12
  2214. package/build/scripts/generators/api/info.js +0 -1
  2215. package/build/scripts/generators/components/index.d.ts +0 -6
  2216. package/build/scripts/generators/components/index.js +0 -1
  2217. package/build/scripts/generators/config/content.d.ts +0 -42
  2218. package/build/scripts/generators/config/content.js +0 -1
  2219. package/build/scripts/generators/config/index.d.ts +0 -8
  2220. package/build/scripts/generators/config/index.js +0 -1
  2221. package/build/scripts/generators/index.d.ts +0 -7
  2222. package/build/scripts/generators/pages/index.d.ts +0 -7
  2223. package/build/scripts/generators/pages/index.js +0 -1
  2224. package/build/scripts/generators/pages/info.d.ts +0 -14
  2225. package/build/scripts/generators/pages/info.js +0 -1
  2226. package/build/scripts/generators/store/content.d.ts +0 -1
  2227. package/build/scripts/generators/store/content.js +0 -1
  2228. package/build/scripts/generators/store/index.d.ts +0 -3
  2229. package/build/scripts/generators/store/index.js +0 -1
  2230. package/build/scripts/generators/theme/index.d.ts +0 -6
  2231. package/build/scripts/generators/theme/index.js +0 -1
  2232. package/build/scripts/generators/types/index.d.ts +0 -22
  2233. package/build/scripts/generators/types/index.js +0 -1
  2234. package/build/scripts/ikas.d.ts +0 -2
  2235. package/build/store/base.d.ts +0 -29
  2236. package/build/store/base.js +0 -1
  2237. package/build/store/blog/index.d.ts +0 -28
  2238. package/build/store/blog/index.js +0 -1
  2239. package/build/store/brand/index.d.ts +0 -12
  2240. package/build/store/brand/index.js +0 -1
  2241. package/build/store/cart/api.d.ts +0 -14
  2242. package/build/store/cart/api.js +0 -1
  2243. package/build/store/cart/index.d.ts +0 -28
  2244. package/build/store/cart/index.js +0 -1
  2245. package/build/store/category/index.d.ts +0 -12
  2246. package/build/store/category/index.js +0 -1
  2247. package/build/store/checkout/index.d.ts +0 -26
  2248. package/build/store/checkout/index.js +0 -1
  2249. package/build/store/customer/api.d.ts +0 -82
  2250. package/build/store/customer/api.js +0 -1
  2251. package/build/store/customer/index.d.ts +0 -79
  2252. package/build/store/customer/index.js +0 -1
  2253. package/build/store/html-meta-data/index.d.ts +0 -6
  2254. package/build/store/html-meta-data/index.js +0 -1
  2255. package/build/store/index.d.ts +0 -1
  2256. package/build/store/location/index.d.ts +0 -13
  2257. package/build/store/location/index.js +0 -1
  2258. package/build/store/merchant/index.d.ts +0 -6
  2259. package/build/store/merchant/index.js +0 -1
  2260. package/build/store/product/index.d.ts +0 -45
  2261. package/build/store/product/index.js +0 -1
  2262. package/build/store/raffle/index.d.ts +0 -18
  2263. package/build/store/raffle/index.js +0 -1
  2264. package/build/store/storefront/index.d.ts +0 -6
  2265. package/build/store/storefront/index.js +0 -1
  2266. package/build/storefront/index.d.ts +0 -67
  2267. package/build/storefront/index.js +0 -1
  2268. package/build/utils/constants.d.ts +0 -2
  2269. package/build/utils/constants.js +0 -1
  2270. package/build/utils/currency.d.ts +0 -7
  2271. package/build/utils/currency.js +0 -1
  2272. package/build/utils/fs.d.ts +0 -28
  2273. package/build/utils/fs.js +0 -1
  2274. package/build/utils/google-fonts.d.ts +0 -2
  2275. package/build/utils/google-fonts.js +0 -1
  2276. package/build/utils/helper.d.ts +0 -11
  2277. package/build/utils/helper.js +0 -1
  2278. package/build/utils/i18n.d.ts +0 -20
  2279. package/build/utils/i18n.js +0 -1
  2280. package/build/utils/index.d.ts +0 -3
@@ -1,87 +0,0 @@
1
- import { IkasOrderAddress } from "../../../../models/data/order/address";
2
- import { IkasCountry, IkasState, IkasCity, IkasDistrict, IkasCustomerAddress, IkasOrderAddressCountry, IkasOrderAddressCity, IkasOrderAddressDistrict } from "../../../../models";
3
- declare type Callback = ((value: string) => void) | null | undefined;
4
- export interface AddressFormViewModelParams {
5
- address: IkasOrderAddress | IkasCustomerAddress;
6
- isCorporate?: boolean;
7
- isErrorsVisible: boolean;
8
- isCustomerAddress?: boolean;
9
- allowedCountryIds?: string[] | null;
10
- allowCorporateInfo?: boolean;
11
- allowTitleChange?: boolean;
12
- firstNameChangeCallback?: Callback;
13
- lastNameChangeCallback?: Callback;
14
- deliveryMethod?: "address" | "in-store";
15
- }
16
- export default class AddressFormViewModel {
17
- address: IkasOrderAddress | IkasCustomerAddress;
18
- isCorporate: boolean;
19
- isErrorsVisible: boolean;
20
- isCustomerAddress?: boolean;
21
- allowedCountryIds?: string[] | null;
22
- allowCorporateInfo?: boolean;
23
- allowTitleChange?: boolean;
24
- firstNameChangeCallback?: Callback;
25
- lastNameChangeCallback?: Callback;
26
- countries: IkasCountry[];
27
- states: IkasState[];
28
- cities: IkasCity[];
29
- districts: IkasDistrict[];
30
- myCountryCode?: string | null;
31
- constructor(data: AddressFormViewModelParams);
32
- get firstName(): string;
33
- get lastName(): string;
34
- get phone(): string | null;
35
- get identityNumber(): string | null;
36
- get country(): IkasOrderAddressCountry | import("../../../../models").IkasCustomerAddressCountry | null;
37
- get state(): import("../../../../models").IkasOrderAddressState | import("../../../../models").IkasCustomerAddressState | null;
38
- get city(): IkasOrderAddressCity | import("../../../../models").IkasCustomerAddressCity | null;
39
- get district(): IkasOrderAddressDistrict | import("../../../../models").IkasCustomerAddressDistrict | null;
40
- get countryOptions(): {
41
- label: string;
42
- value: string;
43
- }[];
44
- get stateOptions(): {
45
- label: string;
46
- value: string;
47
- }[];
48
- get cityOptions(): {
49
- label: string;
50
- value: string;
51
- }[];
52
- get districtOptions(): {
53
- label: string;
54
- value: string;
55
- }[];
56
- get hasState(): boolean;
57
- get isFreeTextCity(): boolean;
58
- get isDistrictHidden(): boolean;
59
- fillDropdownOptions: () => Promise<void>;
60
- listCountries: () => Promise<void>;
61
- listStates: () => Promise<void>;
62
- listCities: () => Promise<void>;
63
- listDistricts: () => Promise<void>;
64
- modelToOption: (model: IkasCountry | IkasState | IkasCity | IkasDistrict) => {
65
- label: string;
66
- value: string;
67
- };
68
- onFirstNameChange: (value: string) => void;
69
- onLastNameChange: (value: string) => void;
70
- onPhoneChange: (value: string) => void;
71
- onIdentityNumberChange: (value: string) => void;
72
- onAddressTitleChange: (value: string) => void;
73
- onAddressLine1Change: (value: string) => void;
74
- onAddressLine2Change: (value: string) => void;
75
- onAddressPostalCodeChange: (value: string) => void;
76
- onCountryChange: (countryId: string) => void;
77
- onStateChange: (stateId: string) => void;
78
- onCityChange: (cityId: string) => void;
79
- onCityInputChange: (value: string) => void;
80
- onDistrictChange: (districtId: string) => void;
81
- onDistrictInputChange: (value: string) => void;
82
- onCorporateChange: (value: boolean) => void;
83
- onCompanyChange: (value: string) => void;
84
- onTaxNumberChange: (value: string) => void;
85
- onTaxOfficeChange: (value: string) => void;
86
- }
87
- export {};
@@ -1 +0,0 @@
1
- import{__awaiter as t,__generator as e}from'../../../../ext/tslib/tslib.es6.js';import{makeAutoObservable as i}from"mobx";import"../../../../models/data/blog/index.js";import"../../../../models/data/brand/index.js";import"../../../../models/data/cart/campaign-offer/index.js";import"../../../../models/data/cart/index.js";import"../../../../models/data/category/index.js";import"../../../../models/data/city/index.js";import"../../../../models/data/country/index.js";import"../../../../models/data/customer/address/index.js";import"../../../../models/data/customer/attribute-value/index.js";import"../../../../models/data/customer/index.js";import"../../../../models/data/customer-attribute/customer-attribute-option/index.js";import"../../../../models/data/customer-attribute/customer-attribute-sales-channel/index.js";import"../../../../models/data/customer-attribute/index.js";import"../../../../models/data/customer-review/index.js";import"../../../../models/data/customer-review-summary/index.js";import"../../../../models/data/district/index.js";import"../../../../models/data/favorite-product/index.js";import"../../../../models/data/html-meta-data/index.js";import"../../../../models/data/image/index.js";import"../../../../models/data/merchant-settings/index.js";import{IkasOrderAddressCountry as s,IkasOrderAddressCity as r,IkasOrderAddressDistrict as o}from"../../../../models/data/order/address/index.js";import"../../../../models/data/order/adjustment/index.js";import"../../../../models/data/order/gift-line/index.js";import"../../../../models/data/order/invoice/index.js";import"../../../../models/data/order/line-item/discount/index.js";import"../../../../models/data/order/line-item/option/value/index.js";import"../../../../models/data/order/line-item/option/index.js";import"../../../../models/data/order/line-item/variant/index.js";import"../../../../models/data/order/line-item/index.js";import"../../../../models/data/order/package/tracking-info/index.js";import"../../../../models/data/order/package/index.js";import"../../../../models/data/order/payment-method/index.js";import"../../../../models/data/order/refund/line-item/index.js";import"../../../../models/data/order/shipping-line/index.js";import"../../../../models/data/order/tax-line/index.js";import"../../../../models/data/order/transaction/index.js";import"../../../../models/data/order/index.js";import"../../../../models/data/product/attribute-value/index.js";import"../../../../models/data/product/variant/price/index.js";import"../../../../models/data/product/variant/index.js";import"../../../../models/data/variant-type/index.js";import"../../../../models/data/product/index.js";import"../../../../models/data/product-attribute/index.js";import"../../../../models/data/product-filter/index.js";import"../../../../models/data/product-campaign/campaign/index.js";import"../../../../models/data/product-campaign/filter/index.js";import"../../../../models/data/product-option-set/index.js";import"../../../../models/data/raffle/index.js";import"../../../../models/data/state/index.js";import"../../../../models/data/variant-type/variant-value/index.js";import"../../../../models/theme/theme.js";import"../../../../models/theme/page/index.js";import"../../../../models/theme/component/prop/index.js";import"../../../../models/theme/page/component/prop-value/link.js";import"../../../../models/ui/brand-list/index.js";import"../../../../models/ui/blog-list/index.js";import"../../../../models/ui/blog-category-list/index.js";import"../../../../models/ui/category-list/index.js";import"../../../../models/ui/product-detail/index.js";import"../../../../models/ui/product-list/index.js";import"../../../../models/ui/product-attribute-detail/index.js";import"../../../../models/ui/product-attribute-list/index.js";import"../../../../models/ui/customer-review-list/index.js";import"../../../../models/ui/customer-review-summary-list/index.js";import"../../../../models/ui/validator/index.js";import"../../../../models/ui/validator/rules/index.js";import"../../../../models/ui/validator/form/login.js";import"../../../../models/ui/validator/form/address.js";import"../../../../models/ui/validator/form/register.js";import"../../../../models/ui/validator/form/contact-form.js";import"../../../../models/ui/validator/form/forgot-password.js";import"../../../../models/ui/validator/form/recover-password.js";import"../../../../models/ui/validator/form/account-info.js";import"../../../../models/ui/validator/form/raffle-form.js";import"../../../../models/ui/validator/form/customer-review.js";import"../../../../models/ui/raffle-list/index.js";import"../../../../models/theme/settings/index.js";import"../../../../models/theme/custom-data/index.js";import{stringSorter as n}from"../../../../utils/helper.js";import{IkasStorefrontConfig as d}from"../../../../storefront/index.js";import"../../../../utils/i18n.js";import{FREE_TEXT_CITY_COUNTRY_LIST as a,DISTRICT_HIDDEN_COUNTRY_LIST as l}from"../../../../utils/constants.js";import u from"../../../../store/location/index.js";var m=function(){function m(n){var a=this;this.isCorporate=!1,this.isErrorsVisible=!1,this.allowedCountryIds=null,this.allowCorporateInfo=!1,this.allowTitleChange=!1,this.firstNameChangeCallback=null,this.lastNameChangeCallback=null,this.countries=[],this.states=[],this.cities=[],this.districts=[],this.myCountryCode=null,this.fillDropdownOptions=function(){return t(a,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,this.listCountries()];case 1:return t.sent(),[4,this.listStates()];case 2:return t.sent(),[4,this.listCities()];case 3:return t.sent(),[4,this.listDistricts()];case 4:return t.sent(),[2]}}))}))},this.listCountries=function(){return t(a,void 0,void 0,(function(){var t,i,s,r,o,n,a,l,m=this;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,4,,5]),this.myCountryCode?[3,2]:[4,u.getMyCountry()];case 1:t=e.sent(),this.myCountryCode=t.data,e.label=2;case 2:return[4,u.listCountry({id:(null===(a=this.allowedCountryIds)||void 0===a?void 0:a.length)?{in:this.allowedCountryIds}:void 0})];case 3:return i=e.sent(),s=i.data||[],r=d.getCurrentRouting(),(null===(l=null==r?void 0:r.countryCodes)||void 0===l?void 0:l.length)?s=s.filter((function(t){var e;return t.iso2&&(null===(e=r.countryCodes)||void 0===e?void 0:e.includes(t.iso2))})):(o=d.routings.filter((function(t){return t.id!==d.storefrontRoutingId})),s=s.filter((function(t){return t.iso2&&!o.some((function(e){var i;return null===(i=e.countryCodes)||void 0===i?void 0:i.includes(t.iso2)}))}))),this.countries=s,1!==this.countries.length||this.country?this.myCountryCode&&!this.country&&(n=this.countries.find((function(t){return t.iso2===m.myCountryCode})))&&this.onCountryChange(n.id):this.onCountryChange(this.countries[0].id),[3,5];case 4:return e.sent(),[3,5];case 5:return[2]}}))}))},this.listStates=function(){return t(a,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:if(!(null===(i=this.country)||void 0===i?void 0:i.id))return[2];e.label=1;case 1:return e.trys.push([1,3,,4]),[4,u.listState({countryId:{eq:this.country.id}})];case 2:return t=e.sent(),this.states=t.data||[],this.hasState||this.onStateChange(this.states[0].id),[3,4];case 3:return e.sent(),[3,4];case 4:return[2]}}))}))},this.listCities=function(){return t(a,void 0,void 0,(function(){var t,i,s;return e(this,(function(e){switch(e.label){case 0:if(!(null===(i=this.state)||void 0===i?void 0:i.id)||!(null===(s=this.country)||void 0===s?void 0:s.id))return[2];e.label=1;case 1:return e.trys.push([1,3,,4]),[4,u.listCity({stateId:{eq:this.state.id},countryId:{eq:this.country.id}})];case 2:return t=e.sent(),this.cities=t.data||[],[3,4];case 3:return e.sent(),[3,4];case 4:return[2]}}))}))},this.listDistricts=function(){return t(a,void 0,void 0,(function(){var t,i,s,r;return e(this,(function(e){switch(e.label){case 0:if(!(null===(i=this.city)||void 0===i?void 0:i.id)||this.isDistrictHidden)return[2];e.label=1;case 1:return e.trys.push([1,3,,4]),[4,u.listDistrict({cityId:{eq:this.city.id},stateId:(null===(s=this.state)||void 0===s?void 0:s.id)?{eq:null===(r=this.state)||void 0===r?void 0:r.id}:void 0})];case 2:return t=e.sent(),this.districts=t.data||[],this.districts.length?this.address.isDistrictRequired=!0:this.address.isDistrictRequired=!1,[3,4];case 3:return e.sent(),[3,4];case 4:return[2]}}))}))},this.modelToOption=function(t){return{label:t.name,value:t.id+""}},this.onFirstNameChange=function(t){a.firstNameChangeCallback&&a.firstNameChangeCallback(t),a.address.firstName=t},this.onLastNameChange=function(t){a.lastNameChangeCallback&&a.lastNameChangeCallback(t),a.address.lastName=t},this.onPhoneChange=function(t){a.address.phone=t},this.onIdentityNumberChange=function(t){t?t.length<=11&&(a.address.identityNumber=t):a.address.identityNumber=""},this.onAddressTitleChange=function(t){a.address.title=t},this.onAddressLine1Change=function(t){a.address.addressLine1=t},this.onAddressLine2Change=function(t){a.address.addressLine2=t},this.onAddressPostalCodeChange=function(t){a.address.postalCode=t},this.onCountryChange=function(t){var e;if((null===(e=a.country)||void 0===e?void 0:e.id)!==t){var i=a.countries.find((function(e){return e.id===t}));a.address.country=new s({id:null==i?void 0:i.id,name:null==i?void 0:i.name,code:null==i?void 0:i.iso3,iso2:null==i?void 0:i.iso2,iso3:null==i?void 0:i.iso3}),a.address.state=null,a.address.city=null,a.address.district=null,a.states=[],a.cities=[],a.districts=[],a.listStates()}},this.onStateChange=function(t){var e;if((null===(e=a.state)||void 0===e?void 0:e.id)!==t){var i=a.states.find((function(e){return e.id===t}));a.address.state={id:i.id,name:null==i?void 0:i.name,code:null==i?void 0:i.stateCode},a.address.city=null,a.address.district=null,a.cities=[],a.districts=[],a.listCities()}},this.onCityChange=function(t){var e;if((null===(e=a.city)||void 0===e?void 0:e.id)!==t){var i=a.cities.find((function(e){return e.id===t}));a.address.city=new r({id:i.id,name:i.name}),a.address.district=null,a.districts=[],a.listDistricts()}},this.onCityInputChange=function(t){a.districts=[],a.address.city=new r({id:void 0,name:t})},this.onDistrictChange=function(t){var e;if((null===(e=a.district)||void 0===e?void 0:e.id)!==t){var i=a.districts.find((function(e){return e.id===t}));a.address.district=new o({id:i.id,name:i.name})}},this.onDistrictInputChange=function(t){a.address.district=new o({id:void 0,name:t})},this.onCorporateChange=function(t){a.isCorporate=t,t||(a.address.company=null,a.address.taxNumber=null,a.address.taxOffice=null)},this.onCompanyChange=function(t){a.address.company=t},this.onTaxNumberChange=function(t){a.address.taxNumber=t},this.onTaxOfficeChange=function(t){a.address.taxOffice=t},this.address=n.address,this.isCorporate=n.isCorporate||!1,this.isErrorsVisible=n.isErrorsVisible||!1,this.isCustomerAddress=n.isCustomerAddress||!1,this.allowedCountryIds=n.allowedCountryIds,this.allowCorporateInfo=n.allowCorporateInfo||!1,this.allowTitleChange=n.allowTitleChange||!1,this.firstNameChangeCallback=n.firstNameChangeCallback||null,this.lastNameChangeCallback=n.lastNameChangeCallback||null,i(this,{firstNameChangeCallback:!1,lastNameChangeCallback:!1}),this.fillDropdownOptions()}return Object.defineProperty(m.prototype,"firstName",{get:function(){return this.address.firstName},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"lastName",{get:function(){return this.address.lastName},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"phone",{get:function(){return this.address.phone},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"identityNumber",{get:function(){return this.address.identityNumber},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"country",{get:function(){return this.address.country},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"state",{get:function(){return this.address.state},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"city",{get:function(){return this.address.city},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"district",{get:function(){return this.address.district},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"countryOptions",{get:function(){var t=this.countries.map(this.modelToOption);return t.sort((function(t,e){return n(t.label,e.label)})),t},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"stateOptions",{get:function(){var t=this.states.map(this.modelToOption);return t.sort((function(t,e){return n(t.label,e.label)})),t},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"cityOptions",{get:function(){return this.cities.map(this.modelToOption)},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"districtOptions",{get:function(){var t=this.districts.map(this.modelToOption);return t.sort((function(t,e){return n(t.label,e.label)})),t},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"hasState",{get:function(){return this.states.length>1},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"isFreeTextCity",{get:function(){var t=this;return a.some((function(e){var i,s;return(null===(s=null===(i=t.address.country)||void 0===i?void 0:i.iso2)||void 0===s?void 0:s.toLowerCase())===e.toLowerCase()}))},enumerable:!1,configurable:!0}),Object.defineProperty(m.prototype,"isDistrictHidden",{get:function(){var t=this;return l.some((function(e){var i,s;return(null===(s=null===(i=t.address.country)||void 0===i?void 0:i.iso2)||void 0===s?void 0:s.toLowerCase())===e.toLowerCase()}))},enumerable:!1,configurable:!0}),m}();export{m as default};
@@ -1,13 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- type?: React.ButtonHTMLAttributes<HTMLButtonElement>["type"];
4
- text: string | React.ReactNode;
5
- isLoading?: boolean;
6
- isDisabled?: boolean;
7
- isLine?: boolean;
8
- size?: "large" | "medium";
9
- style?: React.CSSProperties;
10
- onClick?: () => void;
11
- };
12
- export declare const Button: React.FC<Props>;
13
- export {};
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as t}from"mobx-react-lite";import i from"./style.module.scss.js";var o=t((function(t){var o=t.type,r=void 0===o?"button":o,s=t.text,a=t.style,m=t.onClick,l=t.size,n=t.isLoading,c=t.isDisabled,d=t.isLine;return e.createElement("button",{style:a,type:r,className:[i.Button,i.Dark,"medium"===l?i.Medium:i.Large,d?i.Line:"",c?i.Disabled:""].join(" "),onClick:n?void 0:m},n?e.createElement("div",{className:i.loader}):s)}));export{o as Button};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var t={Button:"style-module_Button__1UPMN",Large:"style-module_Large__2wPlw",Medium:"style-module_Medium__3t0pu",Dark:"style-module_Dark__1Z_hs",Disabled:"style-module_Disabled__3HYF_",FullWidthMobile:"style-module_FullWidthMobile__3MTFv",Line:"style-module_Line__1kche",loader:"style-module_loader__3v6kq",load8:"style-module_load8__2z7nj"};e(".style-module_Button__1UPMN {\n cursor: pointer;\n user-select: none;\n border: 1px transparent solid;\n border-radius: 8px;\n font-weight: 600 !important;\n text-align: center;\n position: relative;\n transition: all 0.2s;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.style-module_Button__1UPMN:focus {\n outline: 0;\n}\n.style-module_Button__1UPMN.style-module_Large__2wPlw {\n height: 56px;\n padding: 0 24px;\n}\n.style-module_Button__1UPMN.style-module_Medium__3t0pu {\n height: 48px;\n padding: 0 16px;\n}\n.style-module_Button__1UPMN.style-module_Dark__1Z_hs {\n background-color: var(--checkout-button-bg-color);\n color: var(--checkout-button-text-color);\n}\n.style-module_Button__1UPMN.style-module_Disabled__3HYF_ {\n background-color: var(--checkout-button-disabled-bg-color);\n color: var(--checkout-button-disabled-text-color);\n pointer-events: none;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_Button__1UPMN.style-module_FullWidthMobile__3MTFv {\n width: 100%;\n }\n}\n.style-module_Button__1UPMN.style-module_Line__1kche {\n background-color: transparent;\n border-color: var(--checkout-border-color);\n color: var(--checkout-button-bg-color);\n}\n.style-module_Button__1UPMN.style-module_Line__1kche .style-module_loader__3v6kq {\n border-left: 0.5em solid var(--checkout-button-bg-color);\n}\n.style-module_Button__1UPMN .style-module_loader__3v6kq,\n.style-module_Button__1UPMN .style-module_loader__3v6kq:after {\n border-radius: 50%;\n width: 5em;\n height: 5em;\n}\n.style-module_Button__1UPMN .style-module_loader__3v6kq {\n font-size: 6px;\n position: relative;\n text-indent: -9999em;\n border-top: 0.5em solid rgba(255, 255, 255, 0.2);\n border-right: 0.5em solid rgba(255, 255, 255, 0.2);\n border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);\n border-left: 0.5em solid var(--checkout-button-text-color);\n -webkit-transform: translateZ(0);\n -ms-transform: translateZ(0);\n transform: translateZ(0);\n -webkit-animation: style-module_load8__2z7nj 1.1s infinite linear;\n animation: style-module_load8__2z7nj 1.1s infinite linear;\n}\n@-webkit-keyframes style-module_load8__2z7nj {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes style-module_load8__2z7nj {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}");export{t as default};
@@ -1,10 +0,0 @@
1
- import * as React from "react";
2
- import { IkasOrderLineItem } from "../../../../../models";
3
- import CheckoutViewModel from "../../../../../components/checkout/model";
4
- declare type Props = {
5
- vm: CheckoutViewModel;
6
- currencyCode: string;
7
- cartItem: IkasOrderLineItem;
8
- };
9
- export declare const CartItem: React.FC<Props>;
10
- export {};
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as t}from"mobx-react-lite";import"../../../../../models/data/blog/index.js";import"../../../../../models/data/brand/index.js";import"../../../../../models/data/cart/campaign-offer/index.js";import"../../../../../models/data/cart/index.js";import"../../../../../models/data/category/index.js";import"../../../../../models/data/city/index.js";import"mobx";import"../../../../../models/data/country/index.js";import"../../../../../models/data/customer/address/index.js";import"../../../../../models/data/customer/attribute-value/index.js";import"../../../../../models/data/customer/index.js";import"../../../../../models/data/customer-attribute/customer-attribute-option/index.js";import"../../../../../models/data/customer-attribute/customer-attribute-sales-channel/index.js";import"../../../../../models/data/customer-attribute/index.js";import"../../../../../models/data/customer-review/index.js";import"../../../../../models/data/customer-review-summary/index.js";import"../../../../../models/data/district/index.js";import"../../../../../models/data/favorite-product/index.js";import"../../../../../models/data/html-meta-data/index.js";import"../../../../../models/data/image/index.js";import"../../../../../models/data/merchant-settings/index.js";import"../../../../../models/data/order/address/index.js";import"../../../../../models/data/order/adjustment/index.js";import"../../../../../models/data/order/gift-line/index.js";import"../../../../../models/data/order/invoice/index.js";import"../../../../../models/data/order/line-item/discount/index.js";import"../../../../../models/data/order/line-item/option/value/index.js";import"../../../../../models/data/order/line-item/option/index.js";import"../../../../../models/data/order/line-item/variant/index.js";import"../../../../../models/data/order/line-item/index.js";import"../../../../../models/data/order/package/tracking-info/index.js";import"../../../../../models/data/order/package/index.js";import"../../../../../models/data/order/payment-method/index.js";import"../../../../../models/data/order/refund/line-item/index.js";import"../../../../../models/data/order/shipping-line/index.js";import"../../../../../models/data/order/tax-line/index.js";import"../../../../../models/data/order/transaction/index.js";import"../../../../../models/data/order/index.js";import"../../../../../models/data/product/attribute-value/index.js";import"../../../../../models/data/product/variant/price/index.js";import"../../../../../models/data/product/variant/index.js";import"../../../../../models/data/variant-type/index.js";import"../../../../../models/data/product/index.js";import"../../../../../models/data/product-attribute/index.js";import"../../../../../models/data/product-filter/index.js";import"../../../../../models/data/product-campaign/campaign/index.js";import"../../../../../models/data/product-campaign/filter/index.js";import"../../../../../models/data/product-option-set/index.js";import"../../../../../models/data/raffle/index.js";import"../../../../../models/data/state/index.js";import"../../../../../models/data/variant-type/variant-value/index.js";import"../../../../../models/theme/theme.js";import"../../../../../models/theme/page/index.js";import"../../../../../models/theme/component/prop/index.js";import"../../../../../models/theme/page/component/prop-value/link.js";import"../../../../../models/ui/brand-list/index.js";import"../../../../../models/ui/blog-list/index.js";import"../../../../../models/ui/blog-category-list/index.js";import"../../../../../models/ui/category-list/index.js";import"../../../../../models/ui/product-detail/index.js";import"../../../../../models/ui/product-list/index.js";import"../../../../../models/ui/product-attribute-detail/index.js";import"../../../../../models/ui/product-attribute-list/index.js";import"../../../../../models/ui/customer-review-list/index.js";import"../../../../../models/ui/customer-review-summary-list/index.js";import"../../../../../models/ui/validator/index.js";import"../../../../../models/ui/validator/rules/index.js";import"../../../../../models/ui/validator/form/login.js";import"../../../../../models/ui/validator/form/address.js";import"../../../../../models/ui/validator/form/register.js";import"../../../../../models/ui/validator/form/contact-form.js";import"../../../../../models/ui/validator/form/forgot-password.js";import"../../../../../models/ui/validator/form/recover-password.js";import"../../../../../models/ui/validator/form/account-info.js";import"../../../../../models/ui/validator/form/raffle-form.js";import"../../../../../models/ui/validator/form/customer-review.js";import"../../../../../models/ui/raffle-list/index.js";import"../../../../../models/theme/settings/index.js";import"../../../../../models/theme/custom-data/index.js";import{formatDate as i}from"../../../../../utils/helper.js";import{formatMoney as a}from"../../../../../utils/currency.js";import{useTranslation as o}from"../../../../../utils/i18n.js";import{Modal as r}from"../../modal/index.js";import m from"./style.module.scss.js";import{ProductOptionTypeEnum as d}from"../../../../../__api/types/index.js";var s=t((function(t){var s,n,l,c=t.vm,p=t.currencyCode,u=t.cartItem,v=o().t,j=e.useState(!1),x=j[0],f=j[1],g=null===(s=c.checkout.orderAdjustments)||void 0===s?void 0:s.map((function(e){var t;return(null===(t=e.appliedOrderLines)||void 0===t?void 0:t.filter((function(e){return e.orderLineId===u.id})).reduce((function(e,t){return e+(t.amount||0)}),0))||0})),E=null==g?void 0:g.reduce((function(e,t){return e+t}),0),N=e.useMemo((function(){var t;return e.createElement("div",null,null===(t=u.options)||void 0===t?void 0:t.map((function(t){switch(t.type){case d.TEXT:case d.TEXT_AREA:case d.CHOICE:return e.createElement("div",{className:m.OptionRow},e.createElement("div",{className:m.OptionName},t.name),e.createElement("div",{className:m.OptionValue},t.values.map((function(e){return e.name||e.value})).join(", ")));case d.DATE_PICKER:return e.createElement("div",{className:m.OptionRow},e.createElement("div",{className:m.OptionName},t.name),e.createElement("div",{className:m.OptionValue},t.values.map((function(e){return t=e.value,(a=i(new Date(t)).split(" ")).splice(-1),a.join(" ");var t,a})).join(", ")));case d.FILE:return e.createElement("div",{className:m.OptionRow},e.createElement("div",{className:m.OptionName},t.name),e.createElement("div",{className:m.OptionValue},t.values.map((function(e){return t=e.value,decodeURIComponent(t.split("/")[t.split("/").length-1]);var t})).join(", ")));case d.CHECKBOX:return e.createElement("div",{className:m.OptionRow},e.createElement("div",{className:m.OptionName},t.name),e.createElement("div",{className:m.OptionValue},t.values.length&&"true"===t.values[0].value?v("checkout-page:yes"):v("checkout-page:no")));case d.COLOR_PICKER:return e.createElement("div",{className:m.OptionRow},e.createElement("div",{className:m.OptionName},t.name),e.createElement("div",{className:m.OptionsHorContainer},t.values.map((function(t,i){return e.createElement("div",{key:i,className:m.OptionColorValue,style:{backgroundColor:t.value}})}))))}})))}),[]);return e.createElement("div",{className:m.CheckoutItem},e.createElement("div",{className:m.ImageContainer},e.createElement("img",{className:m.Image,src:null===(n=u.variant.mainImage)||void 0===n?void 0:n.thumbnailSrc})),e.createElement("div",{className:m.Right},e.createElement("div",{className:m.Name},u.variant.name),e.createElement("div",{className:m.LightText},"".concat(v("checkout-page:quantity"),": ")+u.quantity),e.createElement("div",{className:m.LightText},u.variant.variantValues.map((function(e){return e.variantValueName})).join(" / ")),!!(null===(l=u.options)||void 0===l?void 0:l.length)&&e.createElement("div",{className:m.OptionsText,onClick:function(){return f(!0)}},v("checkout-page:customizedProduct")),!!x&&e.createElement(r,{title:u.variant.name,modalContent:N,onClose:function(){return f(!1)}}),e.createElement("div",{className:m.Price},!!u.overridenPriceWithQuantity&&e.createElement("span",{className:m.GrayPrice},a(E?u.finalPriceWithQuantity:u.overridenPriceWithQuantity,p)),a(E?u.finalPriceWithQuantity-E:u.finalPriceWithQuantity,p))))}));export{s as CartItem};
@@ -1 +0,0 @@
1
- import e from'../../../../../ext/style-inject/dist/style-inject.es.js';var t={CheckoutItem:"style-module_CheckoutItem__2JjSt",ImageContainer:"style-module_ImageContainer__2K2RG",Image:"style-module_Image__w2Q_P",Right:"style-module_Right__2HN2l",Name:"style-module_Name__nPgw1",LightText:"style-module_LightText__2P69D",OptionsText:"style-module_OptionsText__3z7sK",Price:"style-module_Price__1Vw31",GrayPrice:"style-module_GrayPrice__2wDyJ",OptionRow:"style-module_OptionRow___JX07",OptionName:"style-module_OptionName__3X0-1",OptionValue:"style-module_OptionValue__2AnCA",OptionsHorContainer:"style-module_OptionsHorContainer__3D8xk",OptionColorValue:"style-module_OptionColorValue__36zoV"};e(".style-module_CheckoutItem__2JjSt {\n display: flex;\n width: 100%;\n margin-bottom: 24px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_ImageContainer__2K2RG {\n flex: 0 0 auto;\n width: 114px;\n height: 114px;\n position: relative;\n margin-right: 16px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_ImageContainer__2K2RG .style-module_Image__w2Q_P {\n width: 100%;\n height: 100%;\n object-fit: cover;\n border-radius: 8px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l {\n position: relative;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_Name__nPgw1 {\n font-size: 16px;\n font-weight: 600;\n color: var(--checkout-primary-text-color);\n line-height: 24px;\n max-height: 48px;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_LightText__2P69D {\n font-size: 14px;\n color: var(--checkout-secondary-text-color);\n line-height: 20px;\n margin-top: 2px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_OptionsText__3z7sK {\n font-size: 14px;\n color: var(--checkout-primary-text-color);\n line-height: 20px;\n margin-top: 2px;\n user-select: none;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Right__2HN2l .style-module_OptionsText__3z7sK:hover {\n cursor: pointer;\n text-decoration: underline;\n}\n.style-module_CheckoutItem__2JjSt .style-module_Price__1Vw31 {\n font-size: 14px;\n display: flex;\n align-items: center;\n color: var(--checkout-primary-text-color);\n}\n.style-module_CheckoutItem__2JjSt .style-module_Price__1Vw31 .style-module_GrayPrice__2wDyJ {\n font-size: 14px;\n color: var(--checkout-secondary-text-color);\n text-decoration: line-through;\n margin-right: 8px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 {\n display: flex;\n flex-direction: column;\n margin-bottom: 24px;\n max-width: 400px;\n}\n.style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionName__3X0-1 {\n font-size: 14px;\n color: var(--checkout-primary-text-color);\n margin-right: 8px;\n font-weight: 500;\n}\n.style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionValue__2AnCA {\n font-size: 14px;\n color: var(--checkout-secondary-text-color);\n}\n.style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionsHorContainer__3D8xk {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n}\n.style-module_CheckoutItem__2JjSt .style-module_OptionRow___JX07 .style-module_OptionColorValue__36zoV {\n width: 24px;\n height: 24px;\n border-radius: 4px;\n margin-right: 4px;\n}");export{t as default};
@@ -1,8 +0,0 @@
1
- import * as React from "react";
2
- import CheckoutViewModel from "../../model";
3
- declare type Props = {
4
- vm: CheckoutViewModel;
5
- allowExpand?: boolean;
6
- };
7
- export declare const CartSummary: React.FC<Props>;
8
- export {};
@@ -1 +0,0 @@
1
- import{__awaiter as e,__generator as t}from'../../../../ext/tslib/tslib.es6.js';import*as o from"react";import{observer as n}from"mobx-react-lite";import a from'../../../../ext/lodash/sortBy.js';import c from"../input-with-button/index.js";import l from"../notification-box/index.js";import{CheckoutStep as r}from"../../model.js";import{IkasStorefrontConfig as i}from"../../../../storefront/index.js";import'../../../../ext/lodash/isArguments.js';import'../../../../ext/lodash/isBuffer.js';import'../../../../ext/lodash/isTypedArray.js';import'../../../../ext/lodash/_baseGetTag.js';import{formatMoney as s}from"../../../../utils/currency.js";import{useTranslation as u}from"../../../../utils/i18n.js";import{CartItem as m}from"./cart-item/index.js";import{FormItem as d}from"../form-item/index.js";import{FormItemType as p}from"../form-item/model.js";import E from"../tooltip/index.js";import v from"../svg/arrow-down.js";import h from"../svg/cross.js";import C from"../svg/gift.js";import f from"./style.module.scss.js";import k from"../svg/ikas.js";var g=n((function(e){var t,n,a=e.vm,c=e.allowExpand,d=a.checkout,p=u().t,E=o.useState(!c),h=E[0],C=E[1],g=o.useState(!1),x=g[0],j=g[1],A=o.useState(0),w=A[0],P=A[1],I=o.useState(null),L=I[0],R=I[1],D=o.useState(!1),B=D[0],_=D[1],U=o.useState(!1),F=U[0],V=U[1];o.useEffect((function(){c&&(h?L&&P(L.getBoundingClientRect().height):P(0))}),[h,L,c,B,F,x]);var G=[f.CartSummary,c?f.HideOnDesktop:""].join(" "),M=c?{height:w+"px"}:void 0,O=[f.ArrowDown,h?f.Rotated:""].join(" ");return d?o.createElement(o.Fragment,null,!!c&&o.createElement(o.Fragment,null,o.createElement("div",{id:"checkout-mobile-summary-header"}),o.createElement("div",{className:f.ExpandHeader,onClick:function(){if(!h){var e=document.getElementById("Checkout"),t=document.getElementById("checkout-mobile-summary-header");e&&t&&e.scrollTo({top:t.offsetTop,behavior:"smooth"})}C(!h)}},o.createElement("div",{className:f.Left},p("checkout-page:summary")),o.createElement("div",{className:f.Price},o.createElement("span",{className:f.PriceText},"".concat(s(a.finalPrice||0,d.currencyCode)," (").concat(d.items.length," ").concat(p("checkout-page:cartItemProduct"),")")),o.createElement("span",{className:O},o.createElement(v,null))))),o.createElement("div",{className:G},o.createElement("div",{className:f.DetailsContainer,style:M},o.createElement("div",{className:f.Details,ref:R},d.items.map((function(e,t){return o.createElement("div",{key:t},o.createElement(m,{vm:a,cartItem:e,currencyCode:d.currencyCode}))})),o.createElement("div",{className:f.Divider}),o.createElement("div",{className:f.SubTotalInfo},x&&o.createElement("div",{className:f.NotificationContainer},o.createElement(l,{type:"warning",title:p("checkout-page:giftCodeErrorTitle"),content:p("checkout-page:giftCodeErrorDescription"),onClose:function(){return j(!1)}})),o.createElement(N,{label:p("checkout-page:subtotal"),value:s(d.totalPrice,d.currencyCode),tooltipText:p("checkout-page:subtotalTooltip")}),!!(null===(t=d.shippingLines)||void 0===t?void 0:t.length)&&o.createElement(N,{label:p("checkout-page:cartShippingTitle"),value:d.shippingTotal?s(d.shippingTotal,d.currencyCode):p("checkout-page:free")}),!!d.totalTax&&!!(null===(n=a.customizationProps)||void 0===n?void 0:n.showTax)&&o.createElement(N,{label:p("checkout-page:cartTaxTitle"),value:s(d.totalTax,d.currencyCode)}),!!a.installmentExtraPrice&&o.createElement(N,{label:p("checkout-page:cartInterest"),value:s(a.installmentExtraPrice,d.currencyCode)}),o.createElement(y,{vm:a}),o.createElement(T,{vm:a}),(a.step===r.SUCCESS&&(!!a.checkout.note||!!a.checkout.appliedCouponCode)||a.step!==r.SUCCESS)&&o.createElement("div",{className:f.Divider,style:{marginTop:"24px",marginBottom:"24px"}}),o.createElement(S,{vm:a,isAddingCoupon:F,setAddingCoupon:V,setCouponError:j}),o.createElement(b,{vm:a,isAddingNote:B,setAddingNote:_})),o.createElement("div",{className:f.TotalContainer},o.createElement("div",{className:f.TitleContainer},o.createElement("div",{className:f.Title},p("checkout-page:total"))),o.createElement("div",{className:f.TotalPrice},s(a.finalPrice||0,d.currencyCode))),o.createElement("div",{className:f.PoweredBy},o.createElement("span",null,"powered by"),o.createElement("a",{href:"https://ikas.com"+("tr"===i.getCurrentLocale()?"/tr":""),target:"_blank"},o.createElement(k,null))))))):null})),N=n((function(e){var t=e.label,n=e.value,a=e.tooltipText;return o.createElement("div",{className:f.InfoRow},o.createElement("div",{className:f.Label},o.createElement("span",null,t),!!a&&o.createElement(E,{text:a,style:{marginLeft:"8px"}})),o.createElement("div",{className:f.Value},n))})),y=n((function(e){var t=e.vm,n=u().t;return t.checkout?o.createElement(o.Fragment,null,a(t.checkout.nonCouponAdjustments||[],"order").map((function(e,a){return o.createElement("div",{className:f.InfoRow,key:a},o.createElement("div",{className:f.Label},"INTEREST"===e.name?n("checkout-page:cartInterest"):e.name),o.createElement("div",{className:f.Value},o.createElement("span",null,"DECREMENT"===e.type?"- ":"")," ",o.createElement("span",null,s(e.amount,t.checkout.currencyCode))))}))):null})),T=n((function(e){var t,n,a=e.vm,c=u().t;return a.checkout?o.createElement(o.Fragment,null,a.step!==r.SUCCESS&&((null===(t=a.checkout.selectedPaymentGateway)||void 0===t?void 0:t.getCalculatedAdditionalPrices(a.checkout.totalFinalPrice||0,a.checkout.shippingLines||null))||[]).filter((function(e){return 0!==e.amount})).map((function(e,t){return o.createElement("div",{className:f.InfoRow,key:t},o.createElement("div",{className:f.Label},e.name),o.createElement("div",{className:f.Value},o.createElement("span",null,"DECREMENT"===e.type?"- ":"")," ",o.createElement("span",null,s(e.amount,a.checkout.currencyCode))))})),null===(n=a.checkout.giftPackageLines)||void 0===n?void 0:n.map((function(e,t){return o.createElement("div",{className:f.InfoRow,key:t},o.createElement("div",{className:f.Label},o.createElement("div",{className:f.GiftLabel},o.createElement(C,{style:{position:"relative",top:"-1px"}}),o.createElement("span",null,c("checkout-page:giftPackage")))),o.createElement("div",{className:f.Value},o.createElement("span",null,s(e.price,a.checkout.currencyCode))))}))):null})),S=n((function(n){var a=n.vm,l=n.isAddingCoupon,i=n.setAddingCoupon,m=n.setCouponError,d=u().t,p=o.useState(""),E=p[0],v=p[1],C=o.useState(!1),k=C[0],g=C[1];if(a.step===r.SUCCESS&&!a.checkout.appliedCouponCode)return null;var N=a.checkout.couponAdjustment;return o.createElement("div",{className:f.InfoRow},!a.checkout.appliedCouponCode&&!l&&o.createElement("div",{className:f.ActionTextBtn,onClick:function(){return i(!0)}},d("checkout-page:addCouponCode")),l&&o.createElement(c,{value:E,placeholder:d("checkout-page:couponCode"),buttonLabel:d("checkout-page:actions.apply"),onClick:function(){return e(void 0,void 0,void 0,(function(){return t(this,(function(e){switch(e.label){case 0:return a.checkout.couponCode=E,g(!0),[4,a.onCouponCodeApply()];case 1:return e.sent(),g(!1),v(""),a.checkout.appliedCouponCode?(i(!1),m(!1)):(m(!0),a.checkout.couponCode=null),[2]}}))}))},isLoading:k,onChange:v}),!!a.checkout.appliedCouponCode&&!l&&o.createElement("div",{className:[f.ActionTextBtn,f.NoUnderline,f.Light].join(" ")},d("checkout-page:couponCode"),o.createElement("span",{className:f.AppliedCoupon},o.createElement("span",{className:f.CouponCode},a.checkout.appliedCouponCode),a.step!==r.SUCCESS&&o.createElement("span",{className:f.ClearCoupon,onClick:function(){return e(void 0,void 0,void 0,(function(){return t(this,(function(e){switch(e.label){case 0:return a.checkout.couponCode=null,g(!0),[4,a.onCouponCodeApply()];case 1:return e.sent(),g(!1),[2]}}))}))}},o.createElement(h,null)))),!!a.checkout.appliedCouponCode&&!l&&o.createElement("div",{className:f.Value},o.createElement("span",null,"DECREMENT"===(null==N?void 0:N.type)?"- ":"")," ",o.createElement("span",null,s((null==N?void 0:N.amount)||0,a.checkout.currencyCode))))})),b=n((function(e){var t=e.vm,n=e.isAddingNote,a=e.setAddingNote,c=u().t,l=o.useState(t.checkout.note?c("checkout-page:editOrderNote"):c("checkout-page:addOrderNote"))[0],i=o.useCallback((function(){a(!0)}),[]),s=o.useCallback((function(e){t.checkout.note=e}),[t,t.checkout]);if(!t.checkoutSettings.showCheckoutNote)return null;var m=t.step===r.SUCCESS;return m&&!t.checkout.note?null:o.createElement("div",{className:f.InfoRow},!n&&!m&&o.createElement("div",{className:f.ActionTextBtn,onClick:i},l),(n||m)&&o.createElement("div",{className:[f.CheckoutNoteContainer,m?f.Success:""].join(" ")},o.createElement("div",{className:f.Title},c("checkout-page:orderNote")),m?o.createElement("div",{className:f.CheckoutNoteDisplay},t.checkout.note):o.createElement(d,{style:{width:"100%"},type:p.TEXT_AREA,disableResize:!0,label:"",value:t.checkout.note||"",onChange:s})))}));export{g as CartSummary};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var t={ExpandHeader:"style-module_ExpandHeader__2ICjA",Left:"style-module_Left__A54sv",Price:"style-module_Price__sosrJ",PriceText:"style-module_PriceText__1ePGb",ArrowDown:"style-module_ArrowDown__2ET-d",Rotated:"style-module_Rotated__3sgbm",CartSummary:"style-module_CartSummary__30RcF",HideOnDesktop:"style-module_HideOnDesktop__Xw1Ri",DetailsContainer:"style-module_DetailsContainer__FBBIP",Details:"style-module_Details__3-X_i",Divider:"style-module_Divider__2d0Zk",ActionTextBtn:"style-module_ActionTextBtn__FXJQX",NoUnderline:"style-module_NoUnderline__34-1r",Light:"style-module_Light__WFzH8",SubTotalInfo:"style-module_SubTotalInfo__1QMnr",InfoRow:"style-module_InfoRow__3eZdJ",Label:"style-module_Label__3E7LF",Value:"style-module_Value__3mBvk",TotalContainer:"style-module_TotalContainer__36DNt",TitleContainer:"style-module_TitleContainer__3ptQE",Title:"style-module_Title__16M5E",TotalPrice:"style-module_TotalPrice__2s7DC",AppliedCoupon:"style-module_AppliedCoupon__37qv8",CouponCode:"style-module_CouponCode__3rgOu",ClearCoupon:"style-module_ClearCoupon__1Rx4A",NotificationContainer:"style-module_NotificationContainer__Zblek",CheckoutNoteContainer:"style-module_CheckoutNoteContainer__zQQjd",CheckoutNoteDisplay:"style-module_CheckoutNoteDisplay__kTFTx",Success:"style-module_Success__2vqWA",GiftLabel:"style-module_GiftLabel__2f-wC",PoweredBy:"style-module_PoweredBy__1hgWQ"};e(".style-module_ExpandHeader__2ICjA {\n position: sticky;\n top: 0;\n z-index: 10;\n display: flex;\n justify-content: space-between;\n align-items: center;\n height: 48px;\n padding: 0 24px;\n width: 100%;\n border-top: 1px solid var(--checkout-border-color);\n border-bottom: 1px solid var(--checkout-border-color);\n transition: border-bottom 0.3s;\n user-select: none;\n background-color: var(--checkout-primary-bg-color);\n}\n@media only screen and (min-width: 1000px) {\n .style-module_ExpandHeader__2ICjA {\n display: none;\n }\n}\n.style-module_ExpandHeader__2ICjA .style-module_Left__A54sv {\n display: flex;\n align-items: center;\n font-size: 16px;\n font-weight: 600;\n}\n.style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ {\n font-weight: 600;\n display: flex;\n align-items: center;\n}\n.style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_PriceText__1ePGb {\n font-weight: 600;\n margin-right: 8px;\n}\n.style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_ArrowDown__2ET-d {\n transition: all 0.3s;\n display: flex;\n align-items: center;\n}\n.style-module_ExpandHeader__2ICjA .style-module_Price__sosrJ .style-module_ArrowDown__2ET-d.style-module_Rotated__3sgbm {\n transform: rotate(-180deg);\n}\n\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF {\n width: 100%;\n background-color: var(--checkout-card-bg-color);\n }\n}\n@media only screen and (min-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_HideOnDesktop__Xw1Ri {\n display: none;\n }\n}\n.style-module_CartSummary__30RcF .style-module_DetailsContainer__FBBIP {\n overflow: hidden;\n width: 100%;\n transition: height 0.3s ease-in-out;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_DetailsContainer__FBBIP {\n padding: 0 24px;\n box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2);\n }\n}\n.style-module_CartSummary__30RcF .style-module_Details__3-X_i {\n overflow: hidden;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_Details__3-X_i {\n padding-top: 24px;\n }\n}\n.style-module_CartSummary__30RcF .style-module_Divider__2d0Zk {\n width: 100%;\n height: 1px;\n margin: auto;\n background-color: var(--checkout-border-color);\n}\n.style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX {\n color: var(--checkout-primary-text-color);\n user-select: none;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX:hover {\n text-decoration: underline;\n}\n.style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX.style-module_NoUnderline__34-1r:hover {\n text-decoration: none;\n}\n.style-module_CartSummary__30RcF .style-module_ActionTextBtn__FXJQX.style-module_Light__WFzH8 {\n color: var(--checkout-secondary-text-color);\n}\n.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr {\n padding: 24px 0;\n border-bottom: 1px solid var(--checkout-border-color);\n}\n.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 10px;\n}\n.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ .style-module_Label__3E7LF {\n color: var(--checkout-secondary-text-color);\n display: flex;\n align-items: center;\n flex: 1 1 auto;\n}\n.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ .style-module_Value__3mBvk {\n flex: 0 0 auto;\n padding-left: 8px;\n}\n.style-module_CartSummary__30RcF .style-module_SubTotalInfo__1QMnr .style-module_InfoRow__3eZdJ:last-of-type {\n margin-bottom: 0;\n}\n.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-top: 12px;\n}\n.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TitleContainer__3ptQE .style-module_Title__16M5E {\n font-size: 20px;\n font-weight: 600;\n}\n.style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt .style-module_TotalPrice__2s7DC {\n font-size: 20px;\n font-weight: 600;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_TotalContainer__36DNt {\n height: 64px;\n margin-top: 0px;\n }\n}\n.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 {\n display: flex;\n align-items: center;\n padding: 4px 4px 4px 8px;\n background-color: white;\n border-radius: 6px;\n margin-left: 12px;\n font-size: 14px;\n line-height: 20px;\n}\n.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_CouponCode__3rgOu {\n font-size: 14px;\n}\n.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A {\n cursor: pointer;\n display: flex;\n align-items: center;\n color: var(--checkout-secondary-text-color);\n}\n.style-module_CartSummary__30RcF .style-module_AppliedCoupon__37qv8 .style-module_ClearCoupon__1Rx4A svg {\n transform: scale(0.8);\n}\n.style-module_CartSummary__30RcF .style-module_NotificationContainer__Zblek {\n margin-bottom: 14px;\n}\n.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {\n margin-top: 24px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_Title__16M5E {\n font-size: 16px;\n color: var(--checkout-primary-text-color);\n margin-bottom: 8px;\n}\n.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd .style-module_CheckoutNoteDisplay__kTFTx {\n color: var(--checkout-secondary-text-color);\n}\n.style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd.style-module_Success__2vqWA {\n margin-top: 0;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_CheckoutNoteContainer__zQQjd {\n margin-top: 0px;\n }\n}\n.style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC {\n display: flex;\n align-items: center;\n}\n.style-module_CartSummary__30RcF .style-module_GiftLabel__2f-wC span {\n margin-left: 8px;\n}\n.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {\n width: 100%;\n height: 50px;\n justify-content: center;\n align-items: center;\n color: var(--checkout-primary-text-color);\n display: none;\n}\n@media only screen and (max-width: 1000px) {\n .style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ {\n display: flex;\n }\n}\n.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ span {\n font-size: 14px;\n line-height: 20px;\n color: var(--checkout-secondary-text-color);\n margin-right: 8px;\n}\n.style-module_CartSummary__30RcF .style-module_PoweredBy__1hgWQ a {\n display: flex;\n align-items: center;\n}");export{t as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGCheck: React.FC<Props>;
6
- export default SVGCheck;
@@ -1 +0,0 @@
1
- import*as e from"react";var t=function(t){var a=t.className;return e.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"10.3",height:"8",viewBox:"8.9 0.3 10.3 8","enable-background":"new 8.9 0.3 10.3 8",className:a},e.createElement("path",{fill:"currentColor",d:"M12.6 8.1l-3.7-3.8 1-1.1 2.7 2.7 5.5-5.4 1 1z"}))};export{t as default};
@@ -1,10 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- value: boolean;
4
- label?: string | React.ReactNode;
5
- hasError?: boolean;
6
- removePadding?: boolean;
7
- onChange: (value: boolean) => void;
8
- };
9
- export declare const Checkbox: React.FC<Props>;
10
- export {};
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as r}from"mobx-react-lite";import a from"./check.js";import o from"./style.module.scss.js";var c=r((function(r){var c=r.value,t=r.label,i=r.hasError,l=r.removePadding,n=r.onChange,m=[o.CheckboxBorder],s=[o.CheckboxLabel],h=[o.CheckboxTick];return c&&(m.push(o.Checked),h.push(o.Visible)),i&&s.push(o.CheckboxLabelError),e.createElement("div",{className:[o.CheckboxWrapper,l?o.WithoutPadding:""].join(" "),onClick:function(){n(!c)}},e.createElement("div",{className:o.CheckboxContainer},e.createElement("div",{className:m.join(" ")}),e.createElement("div",{className:h.join(" ")},e.createElement(a,null))),!!t&&e.createElement("div",{className:s.join(" ")},t))}));export{c as Checkbox};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var o={CheckboxWrapper:"style-module_CheckboxWrapper__2tSbx",WithoutPadding:"style-module_WithoutPadding__3Azhr",CheckboxContainer:"style-module_CheckboxContainer__1zRvT",CheckboxBorder:"style-module_CheckboxBorder__281X3",Checked:"style-module_Checked__3-ZM4",CheckboxTick:"style-module_CheckboxTick__2LpQ-",Visible:"style-module_Visible__2Ng5Q",CheckboxLabel:"style-module_CheckboxLabel__30uMC",CheckboxLabelError:"style-module_CheckboxLabelError__FmdxF"};e(".style-module_CheckboxWrapper__2tSbx {\n width: 100%;\n display: flex;\n padding: 8px 0;\n cursor: pointer;\n user-select: none;\n align-items: center;\n}\n.style-module_CheckboxWrapper__2tSbx.style-module_WithoutPadding__3Azhr {\n padding: 0;\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxContainer__1zRvT {\n flex: 0 0 auto;\n position: relative;\n width: 20px;\n height: 20px;\n margin-right: 12px;\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxBorder__281X3 {\n flex: 0 0 auto;\n width: 20px;\n height: 20px;\n border-radius: 4px;\n border: 1px solid var(--checkout-border-color);\n position: absolute;\n top: 0;\n left: 0;\n transition: border-width 0.2s ease-in-out;\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxBorder__281X3.style-module_Checked__3-ZM4 {\n border: 10px solid var(--checkout-button-bg-color);\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxTick__2LpQ- {\n width: 20px;\n height: 20px;\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n top: 0;\n left: 0;\n color: var(--checkout-button-text-color);\n z-index: 2;\n transition: all 0.2s ease-in-out;\n transition-delay: 0.1s;\n opacity: 0;\n transform: scale(0.2);\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxTick__2LpQ-.style-module_Visible__2Ng5Q {\n opacity: 1;\n transform: scale(1.2);\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxLabel__30uMC {\n flex: 1 1 auto;\n font-weight: normal;\n color: var(--checkout-secondary-text-color);\n}\n.style-module_CheckboxWrapper__2tSbx .style-module_CheckboxLabelError__FmdxF {\n color: var(--checkout-error-color);\n}");export{o as default};
@@ -1,7 +0,0 @@
1
- import * as React from "react";
2
- import CheckoutViewModel from "../../model";
3
- declare type Props = {
4
- vm: CheckoutViewModel;
5
- };
6
- export declare const CreditCardForm: React.FC<Props>;
7
- export {};
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as r}from"mobx-react-lite";import"../../../../storefront/index.js";import'../../../../ext/lodash/isArguments.js';import'../../../../ext/lodash/isBuffer.js';import'../../../../ext/lodash/isTypedArray.js';import'../../../../ext/lodash/_baseGetTag.js';import{useTranslation as t}from"../../../../utils/i18n.js";import{TransactionCardAssociationEnum as o}from"../../../../__api/types/index.js";import{FormItem as a}from"../form-item/index.js";import{FormItemInputType as c,FormItemType as s}from"../form-item/model.js";import l from"./svg/amex.js";import m from"./svg/master-card.js";import n from"./svg/troy.js";import i from"./svg/visa.js";import d from"../../styles/common.module.scss.js";import u from"../../style.module.scss.js";import p from"./style.module.scss.js";var E=r((function(r){var E,v=r.vm,h=t().t,g=v.cardData;if(!g)return null;return e.createElement("div",null,e.createElement("div",{className:u.RowPB},e.createElement(a,{name:"cardnumber",autocomplete:"cc-number",inputType:c.NUMERIC,type:s.TEXT,label:h("checkout-page:cardNumber"),value:g.cardNumber,onChange:v.onCardNumberChange,errorText:h("checkout-page:cardNumberError"),rightContent:(null===(E=v.installmentInfo)||void 0===E?void 0:E.cardAssociation)?e.createElement("div",{className:p.CardLogo},function(r){switch(r){case o.AMERICAN_EXPRESS:return e.createElement(l,null);case o.MASTER_CARD:return e.createElement(m,null);case o.TROY:return e.createElement(n,null);case o.VISA:return e.createElement(i,null);default:return e.createElement("div",null)}}(v.installmentInfo.cardAssociation)):void 0,hasError:v.isErrorsVisible&&!g.validationResult.cardNumber})),e.createElement("div",{className:u.RowPB},e.createElement(a,{name:"ccname",autocomplete:"cc-name",type:s.TEXT,label:h("checkout-page:cardHolderName"),value:g.cardHolderName,onChange:v.onCardHolderNameChange,errorText:h("checkout-page:cardHolderError"),hasError:v.isErrorsVisible&&!g.validationResult.cardHolderName})),e.createElement("div",{className:[d.Grid,d.Grid2].join(" ")},e.createElement(a,{name:"cc-exp",autocomplete:"cc-exp",inputType:c.NUMERIC,type:s.TEXT,label:h("checkout-page:cardExpiry"),value:g.expirationDate,onChange:v.onExpirationDateChange,errorText:h("checkout-page:cardExpiryError"),hasError:v.isErrorsVisible&&!g.validationResult.expirationDate}),e.createElement(a,{name:"cvc",autocomplete:"cc-csc",inputType:c.NUMERIC,type:s.TEXT,label:h("checkout-page:cardCVC"),value:g.cvv,onChange:v.onCvcChange,errorText:h("checkout-page:cardCVCError"),tooltipText:h("checkout-page:cardCVCTooltip"),hasError:v.isErrorsVisible&&!g.validationResult.cvv})))}));export{E as CreditCardForm};
@@ -1,26 +0,0 @@
1
- export default class CreditCardData {
2
- cardNumber?: string;
3
- cardHolderName?: string;
4
- expirationDate?: string;
5
- cvv?: string;
6
- installmentCount: number;
7
- threeDSecure: boolean;
8
- constructor(data?: Partial<CreditCardData>);
9
- get validationResult(): CreditCardDataValidation;
10
- get isValid(): boolean;
11
- toInput: () => {
12
- cardNumber: string;
13
- cardHolderName: string;
14
- cvv: string;
15
- expiredMonth: number;
16
- expiredYear: number;
17
- installmentCount: number;
18
- threeDSecure: boolean;
19
- };
20
- }
21
- export declare type CreditCardDataValidation = {
22
- cardNumber: boolean;
23
- cardHolderName: boolean;
24
- expirationDate: boolean;
25
- cvv: boolean;
26
- };
@@ -1 +0,0 @@
1
- import{makeAutoObservable as e}from"mobx";var t=function(){function t(t){var r=this;void 0===t&&(t={}),this.installmentCount=1,this.toInput=function(){var e=r.expirationDate.split(" / "),t=parseInt(e[0]),i=parseInt(e[1]);return{cardNumber:r.cardNumber.split(" ").join(""),cardHolderName:r.cardHolderName,cvv:r.cvv,expiredMonth:t,expiredYear:i,installmentCount:r.installmentCount,threeDSecure:r.threeDSecure}},this.cardNumber=t.cardNumber||"",this.cardHolderName=t.cardHolderName||"",this.expirationDate=t.expirationDate||"",this.cvv=t.cvv||"",this.installmentCount=t.installmentCount||1,this.threeDSecure=t.threeDSecure||!1,e(this)}return Object.defineProperty(t.prototype,"validationResult",{get:function(){return{cardNumber:!!this.cardNumber&&19===this.cardNumber.length,cardHolderName:!!this.cardHolderName,expirationDate:!!this.expirationDate&&7===this.expirationDate.length,cvv:!!this.cvv}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isValid",{get:function(){return Object.values(this.validationResult).every((function(e){return e}))},enumerable:!1,configurable:!0}),t}();export{t as default};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var t={CardLogo:"style-module_CardLogo__1jFyp"};e(".style-module_CardLogo__1jFyp {\n display: flex;\n align-items: center;\n height: 100%;\n padding-right: 16px;\n}");export{t as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGAmex: React.FC<Props>;
6
- export default SVGAmex;
@@ -1 +0,0 @@
1
- import*as L from"react";var e=function(e){var H=e.className;return L.createElement("svg",{width:"32",height:"24",viewBox:"0 0 32 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:H},L.createElement("path",{d:"M2 0.5H30C30.8284 0.5 31.5 1.17157 31.5 2V22C31.5 22.8284 30.8284 23.5 30 23.5H2C1.17157 23.5 0.5 22.8284 0.5 22V2C0.5 1.17157 1.17157 0.5 2 0.5Z",fill:"#1F72CD",stroke:"#E5E4E9"}),L.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.93431 9L3 15.5453H6.51278L6.94826 14.5017H7.94368L8.37916 15.5453H12.2457V14.7488L12.5903 15.5453H14.5904L14.9349 14.7319V15.5453H22.9764L23.9542 14.5288L24.8697 15.5453L29 15.5537L26.0564 12.2909L29 9H24.9338L23.982 9.9977L23.0952 9H14.3472L13.596 10.6894L12.8272 9H9.32172V9.7694L8.93177 9H5.93431ZM6.6141 9.92922H8.32639L10.2727 14.3676V9.92922H12.1485L13.6518 13.1115L15.0373 9.92922H16.9036V14.6259H15.768L15.7587 10.9456L14.103 14.6259H13.0872L11.4222 10.9456V14.6259H9.08594L8.64302 13.5729H6.25011L5.80811 14.625H4.55635L6.6141 9.92922ZM22.5606 9.92922H17.9429V14.6231H22.4891L23.9545 13.0675L25.3668 14.6231H26.8432L24.6973 12.2898L26.8432 9.92922H25.4309L23.973 11.467L22.5606 9.92922ZM7.44697 10.7239L6.6586 12.5996H8.23442L7.44697 10.7239ZM19.0826 11.7588V10.9015V10.9006H21.964L23.2212 12.2718L21.9083 13.6505H19.0826V12.7145H21.6018V11.7588H19.0826Z",fill:"white"}))};export{e as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGMasterCard: React.FC<Props>;
6
- export default SVGMasterCard;
@@ -1 +0,0 @@
1
- import*as e from"react";var t=function(t){var l=t.className;return e.createElement("svg",{width:"32",height:"24",viewBox:"0 0 32 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:l},e.createElement("path",{d:"M2 0.5H30C30.8284 0.5 31.5 1.17157 31.5 2V22C31.5 22.8284 30.8284 23.5 30 23.5H2C1.17157 23.5 0.5 22.8284 0.5 22V2C0.5 1.17157 1.17157 0.5 2 0.5Z",fill:"white",stroke:"#E5E4E9"}),e.createElement("path",{d:"M12.5652 17.1304C15.6388 17.1304 18.1304 14.6388 18.1304 11.5652C18.1304 8.49163 15.6388 6 12.5652 6C9.49163 6 7 8.49163 7 11.5652C7 14.6388 9.49163 17.1304 12.5652 17.1304Z",fill:"#E61C24"}),e.createElement("path",{d:"M19.4759 17.1304C22.5494 17.1304 25.0411 14.6388 25.0411 11.5652C25.0411 8.49163 22.5494 6 19.4759 6C16.4023 6 13.9106 8.49163 13.9106 11.5652C13.9106 14.6388 16.4023 17.1304 19.4759 17.1304Z",fill:"#F99F1B"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.0205 7.20801C14.6879 8.2615 13.9106 9.86684 13.9106 11.5656C13.9106 13.2643 14.6879 14.8696 16.0205 15.9231C17.3531 14.8696 18.1304 13.2643 18.1304 11.5656C18.1304 9.86684 17.3531 8.2615 16.0205 7.20801Z",fill:"#F26622"}))};export{t as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGTroy: React.FC<Props>;
6
- export default SVGTroy;
@@ -1 +0,0 @@
1
- import*as e from"react";var l=function(l){var t=l.className;return e.createElement("svg",{width:"32",height:"24",viewBox:"0 0 32 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t},e.createElement("path",{d:"M2 0.5H30C30.8284 0.5 31.5 1.17157 31.5 2V22C31.5 22.8284 30.8284 23.5 30 23.5H2C1.17157 23.5 0.5 22.8284 0.5 22V2C0.5 1.17157 1.17157 0.5 2 0.5Z",fill:"white",stroke:"#E5E4E9"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M24.331 9.4811C24.0522 9.4811 23.7446 9.63656 23.6219 9.91598L22.3183 12.9041L21.8488 9.91598C21.7937 9.63656 21.6037 9.4811 21.3033 9.4811L19.652 9.4811L21.0644 14.4436C21.0904 14.5389 21.0953 14.6443 21.0764 14.7553C21.0023 15.1694 20.6068 15.5054 20.1924 15.5054L19.2677 15.5054C19.0328 15.5054 18.8782 15.6509 18.8026 15.9801L18.5972 17.21L20.2258 17.21C21.0754 17.21 22.0733 16.7831 22.7389 15.6027L26 9.4811L24.331 9.4811Z",fill:"#2F3842"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.2998 8.00041C8.78746 8.00041 9.02309 8.19493 8.93741 8.68384L8.79675 9.48037L9.91728 9.48037L9.67046 10.8795L8.54946 10.8795L8.24405 12.612C8.13851 13.2156 8.73595 13.2959 9.07869 13.2959C9.14705 13.2959 9.20376 13.2945 9.24439 13.2921L8.97033 14.8524C8.88574 14.8614 8.79848 14.873 8.61404 14.873C7.76333 14.873 6.15404 14.6453 6.47048 12.85L6.817 10.8795L6 10.8795L6.24587 9.48037L7.05484 9.48037L7.31521 8.00041L8.2998 8.00041Z",fill:"#2F3842"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.7158 9.54448L17.428 11.1758C17.7829 11.3571 18.0261 11.7254 18.0261 12.1506C18.0261 12.7114 17.6057 13.171 17.0645 13.237L16.7769 14.868C16.8276 14.8713 16.8792 14.873 16.9307 14.873C18.4351 14.873 19.6536 13.6538 19.6536 12.1506C19.6536 10.9217 18.8376 9.88187 17.7158 9.54448Z",fill:"#00A6B6"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.4343 13.1255C16.0797 12.9452 15.8359 12.5752 15.8359 12.1504C15.8359 11.5931 16.2572 11.1302 16.7983 11.0651L17.0856 9.43397C17.0346 9.43082 16.9826 9.42846 16.9314 9.42846C15.4281 9.42846 14.209 10.6485 14.209 12.1504C14.209 13.3799 15.0254 14.4204 16.1471 14.7578L16.4343 13.1255Z",fill:"#00A6B6"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5661 9.48044L11.529 9.48044C12.0168 9.48044 12.2515 9.67543 12.1655 10.1645L12.0601 10.7561C12.4189 10.0279 13.197 9.4272 13.9951 9.4272C14.0999 9.4272 14.2007 9.44799 14.2007 9.44799L13.8894 11.2123C13.8894 11.2123 13.7497 11.1798 13.5317 11.1798C13.1064 11.1798 12.3871 11.3146 11.9867 12.1138C11.8913 12.3109 11.8179 12.5505 11.767 12.8392L11.4186 14.8213L9.625 14.8213L10.5661 9.48044Z",fill:"#2F3842"}))};export{l as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGVisa: React.FC<Props>;
6
- export default SVGVisa;
@@ -1 +0,0 @@
1
- import*as e from"react";var l=function(l){var t=l.className;return e.createElement("svg",{width:"32",height:"24",viewBox:"0 0 32 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t},e.createElement("path",{d:"M2 0.5H30C30.8284 0.5 31.5 1.17157 31.5 2V22C31.5 22.8284 30.8284 23.5 30 23.5H2C1.17157 23.5 0.5 22.8284 0.5 22V2C0.5 1.17157 1.17157 0.5 2 0.5Z",fill:"white",stroke:"#E5E4E9"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.6875 15.1655H14.5025L15.6385 8.50391H13.8228L12.6875 15.1655Z",fill:"#1A1876"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.2995 11.1787C18.6651 10.8705 18.2762 10.6646 18.2804 10.3529C18.2804 10.076 18.6095 9.77969 19.3204 9.77969C19.902 9.77065 20.3709 9.88891 20.8425 10.1115L21.0888 8.66735C20.7291 8.53239 20.1656 8.3877 19.4616 8.3877C17.6675 8.3877 16.4035 9.29135 16.3931 10.586C16.3827 11.5432 17.2954 12.0774 17.9841 12.396C18.6909 12.7223 18.9288 12.931 18.9253 13.2225C18.9211 13.6691 18.3611 13.8729 17.8387 13.8729C17.0331 13.8729 16.6269 13.7484 15.8957 13.4173L15.6411 14.9087C16.0655 15.0945 16.8495 15.2559 17.6641 15.2642C19.5729 15.2642 20.8119 14.371 20.8258 12.988C20.8307 12.2305 20.3472 11.6538 19.2995 11.1787Z",fill:"#1A1876"}),e.createElement("path",{d:"M25.7438 8.50977H24.3407C23.9059 8.50977 23.581 8.62872 23.3897 9.06211L20.6934 15.1672H22.6001C22.6001 15.1672 22.9118 14.3463 22.9827 14.1661C23.1914 14.1661 25.0433 14.1689 25.3083 14.1689C25.3626 14.4019 25.5295 15.1672 25.5295 15.1672H27.2144L25.7438 8.50977ZM23.5052 12.804C23.5803 12.612 24.3212 10.7094 24.4694 10.3059C24.7149 11.4545 24.4756 10.34 25.0127 12.804H23.5052Z",fill:"#1A1876"}),e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1646 8.50906L9.38648 13.0517L9.19726 12.1285L8.56074 9.06697C8.45083 8.6454 8.13222 8.51949 7.73778 8.50488H4.80909L4.78613 8.64332C5.49848 8.81584 6.135 9.06488 6.69361 9.37375L8.30822 15.1595L10.2296 15.1574L13.088 8.50836H11.1646V8.50906Z",fill:"#1A1876"}))};export{l as default};
@@ -1,19 +0,0 @@
1
- import * as React from "react";
2
- import CustomerAddressesViewModel from "./model";
3
- declare type Props = {
4
- vm: CustomerAddressesViewModel;
5
- };
6
- declare const _default: React.FunctionComponent<Props>;
7
- export default _default;
8
- declare type CustomerAddressFormProps = {
9
- vm: CustomerAddressesViewModel;
10
- };
11
- export declare const CustomerAddressForm: React.FC<CustomerAddressFormProps>;
12
- declare type RecipientFormProps = {
13
- vm: CustomerAddressesViewModel;
14
- };
15
- export declare const RecipientForm: React.FC<RecipientFormProps>;
16
- declare type SaveAddressProps = {
17
- vm: CustomerAddressesViewModel;
18
- };
19
- export declare const SaveAddressCheckboxAndTitle: React.FC<SaveAddressProps>;
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as s}from"mobx-react-lite";import t from"../../style.module.scss.js";import r from"../select-box/index.js";import{AddressForm as d}from"../address-form/index.js";import{Checkbox as a}from"../checkbox/index.js";import{FormItem as i}from"../form-item/index.js";import{FormItemType as o}from"../form-item/model.js";import n from"./style.module.scss.js";import l from"../../styles/common.module.scss.js";import{Button as c}from"../button/index.js";import{IkasStorefrontConfig as m}from"../../../../storefront/index.js";import'../../../../ext/lodash/isArguments.js';import'../../../../ext/lodash/isBuffer.js';import'../../../../ext/lodash/isTypedArray.js';import'../../../../ext/lodash/_baseGetTag.js';import{useTranslation as u}from"../../../../utils/i18n.js";import v from"../delivery-methods/index.js";import{CheckoutStep as p}from"../../model.js";var h=s((function(s){var d,a=s.vm,i=u().t,o=e.useMemo((function(){return e.createElement("div",null,e.createElement(g,{vm:a}),e.createElement(k,{vm:a}))}),[a]),h=e.useMemo((function(){return e.createElement("div",null,e.createElement(E,{vm:a}))}),[a]),C=e.useState("-1"),f=C[0],A=C[1];e.useEffect((function(){a.vm.checkout.stockLocationId&&A(a.vm.checkout.stockLocationId)}),[]);var b=function(e){if(!e.address)return"";var s=[];return e.address.address&&s.push(e.address.address),e.address.postalCode&&s.push(e.address.postalCode),e.address.district&&e.address.district.name&&s.push(e.address.district.name),e.address.city&&e.address.city.name&&s.push(e.address.city.name),e.address.state&&e.address.state.name&&"Default"!==e.address.state.name&&s.push(e.address.state.name),e.address.country&&e.address.country.name&&s.push(e.address.country.name),s.join(", ")};return e.createElement(e.Fragment,null,!!m.pickUpStockLocationIds&&a.vm.availableStockLocations.length>0&&a.vm.step!==p.PAYMENT&&e.createElement(e.Fragment,null,e.createElement("div",{className:l.FormSectionTitle},e.createElement("div",{className:l.Title},i("checkout-page:deliveryMethod"))),e.createElement(v,{deliveryMethod:a.vm.deliveryMethod,onClick:function(e){"address"===e&&A("-1"),a.vm.onDeliveryMethodChange(e)}})),e.createElement("div",{className:l.FormSectionTitle},"address"===a.vm.deliveryMethod?e.createElement("div",{className:l.Title},a.editingCustomerAddress?i("checkout-page:editAddress"):"billing"===a.addressType?i("checkout-page:billingAddress"):i("checkout-page:shippingAddress")):a.vm.step===p.PAYMENT?e.createElement("div",{className:l.Title},i("checkout-page:billingAddress")):e.createElement("div",{className:l.Title},i("checkout-page:pickUpLocation"),e.createElement("span",{className:n.ErrorMessage},a.vm.isErrorsVisible&&!a.vm.checkout.stockLocationId&&i("checkout-page:errorPickupLocationRequired"))),!!a.editingCustomerAddress&&e.createElement("div",{className:n.CancelEdit,onClick:a.onCancelEditAddressClick},i("checkout-page:actions.cancel"))),!!a.vm.store.customerStore.customer&&!a.editingCustomerAddress&&"address"===a.vm.deliveryMethod&&e.createElement("div",{className:t.RowPB},null===(d=a.vm.store.customerStore.customer.addresses)||void 0===d?void 0:d.map((function(s){return e.createElement(r,{key:s.id,label:s.title||"",isSelected:s.id===a.selectedAddressId,rightContent:e.createElement("div",{onClick:function(){return a.onEditAddressClick(s)}},i("checkout-page:actions.edit")),bottomContent:e.createElement("div",{className:n.AddressText},s.addressText),bottomContentVisible:!0,hasError:!s.isValid,errorText:i("checkout-page:missingAddressFields"),onClick:function(){return s.id!==a.selectedAddressId&&a.onAddressSelect(s)}})})),e.createElement(r,{label:i("checkout-page:newAddress"),isSelected:"-1"===a.selectedAddressId,bottomContent:o,onClick:function(){return"-1"!==a.selectedAddressId&&a.onAddressSelect()}})),a.vm.store.customerStore.customer||a.vm.step!==p.INFO||"address"!==a.vm.deliveryMethod?a.vm.step===p.PAYMENT&&o:o,"in-store"===a.vm.deliveryMethod&&e.createElement("div",{className:t.RowPB},a.vm.stockLocations.map((function(s){return function(e){return e.address&&e.address.address&&e.address.city&&e.address.country&&a.vm.availableStockLocations.find((function(s){return s.id===e.id}))}(s)&&e.createElement(r,{key:s.id,label:s.name||"",isSelected:f===s.id,bottomContent:e.createElement("div",null,e.createElement("div",{className:n.AddressText},b(s)),s.deliveryTime&&e.createElement("div",{className:n.DeliveryTime},i("checkout-page:stockLocation.deliveryTime.".concat(s.deliveryTime)))),bottomContentVisible:!0,onClick:function(){a.vm.onStockLocationChange(s),A(s.id)}})}))),"in-store"===a.vm.deliveryMethod&&a.vm.step!==p.PAYMENT&&e.createElement(e.Fragment,null,e.createElement("div",{className:l.FormSectionTitle},e.createElement("div",{className:l.Title},i("checkout-page:recipientsInfo"))),h),!!a.editingCustomerAddress&&e.createElement(g,{vm:a}),!!a.editingCustomerAddress&&e.createElement("div",{className:n.EditAddressActions},e.createElement(c,{style:{width:"100%"},text:i("checkout-page:deleteAddress"),isLine:!0,isLoading:a.isDeleteAddressLoading,isDisabled:a.isEditAddressLoading,onClick:a.onDeleteAddressClick}),e.createElement(c,{style:{width:"100%",marginTop:a.vm.store.customerStore.customer?"0px":"32px"},text:i("checkout-page:actions.save"),isLoading:a.isEditAddressLoading,isDisabled:a.isDeleteAddressLoading,onClick:a.onSaveAddressClick})))})),g=s((function(s){var t=s.vm;return e.createElement(d,{address:t.editingCustomerAddress||t.address,isErrorsVisible:t.isEditAddressErrorsVisible||t.vm.isErrorsVisible,allowedCountryIds:t.vm.shippingCountryIds||void 0,allowCorporateInfo:"billing"===t.addressType,firstNameChangeCallback:t.firstNameChangeCallback,lastNameChangeCallback:t.lastNameChangeCallback,allowTitleChange:!!t.editingCustomerAddress,deliveryMethod:"address"})})),E=s((function(s){var t=s.vm;return e.createElement(d,{address:t.editingCustomerAddress||t.address,isErrorsVisible:t.isEditAddressErrorsVisible||t.vm.isErrorsVisible,firstNameChangeCallback:t.firstNameChangeCallback,lastNameChangeCallback:t.lastNameChangeCallback,deliveryMethod:"in-store"})})),k=s((function(s){var t=s.vm,r=u().t;return t.vm.store.customerStore.customer&&"-1"===t.selectedAddressId?e.createElement("div",{style:{marginTop:"12px"}},e.createElement(a,{value:t.vm.shouldSaveAddress,label:r("checkout-page:saveAddressCta"),onChange:t.vm.setShouldSaveAddress}),t.vm.shouldSaveAddress&&e.createElement("div",{style:{marginTop:"8px"}},e.createElement(i,{type:o.TEXT,label:r("checkout-page:addressTitle"),value:t.vm.addressTitle,onChange:t.vm.setAddressTitle}))):null}));export{g as CustomerAddressForm,E as RecipientForm,k as SaveAddressCheckboxAndTitle,h as default};
@@ -1,21 +0,0 @@
1
- import { IkasCustomerAddress } from "../../../../models";
2
- import CheckoutViewModel from "../../model";
3
- export declare type AddressType = "shipping" | "billing";
4
- export default class CustomerAddressesViewModel {
5
- vm: CheckoutViewModel;
6
- addressType: AddressType;
7
- editingCustomerAddress: IkasCustomerAddress | null;
8
- isDeleteAddressLoading: boolean;
9
- isEditAddressLoading: boolean;
10
- isEditAddressErrorsVisible: boolean;
11
- constructor(vm: CheckoutViewModel, addressType: AddressType);
12
- get address(): import("../../../../models").IkasOrderAddress | null;
13
- get selectedAddressId(): string | undefined;
14
- onAddressSelect: (address?: IkasCustomerAddress | undefined) => void;
15
- onEditAddressClick: (address?: IkasCustomerAddress | undefined) => void;
16
- onCancelEditAddressClick: () => void;
17
- onDeleteAddressClick: () => Promise<void>;
18
- onSaveAddressClick: () => Promise<void>;
19
- firstNameChangeCallback: (value: string) => void;
20
- lastNameChangeCallback: (value: string) => void;
21
- }
@@ -1 +0,0 @@
1
- import{__awaiter as e,__generator as t}from'../../../../ext/tslib/tslib.es6.js';import"../../../../models/data/blog/index.js";import"../../../../models/data/brand/index.js";import"../../../../models/data/cart/campaign-offer/index.js";import"../../../../models/data/cart/index.js";import"../../../../models/data/category/index.js";import"../../../../models/data/city/index.js";import{makeAutoObservable as i}from"mobx";import"../../../../models/data/country/index.js";import{IkasCustomerAddress as s}from"../../../../models/data/customer/address/index.js";import"../../../../models/data/customer/attribute-value/index.js";import"../../../../models/data/customer/index.js";import"../../../../models/data/customer-attribute/customer-attribute-option/index.js";import"../../../../models/data/customer-attribute/customer-attribute-sales-channel/index.js";import"../../../../models/data/customer-attribute/index.js";import"../../../../models/data/customer-review/index.js";import"../../../../models/data/customer-review-summary/index.js";import"../../../../models/data/district/index.js";import"../../../../models/data/favorite-product/index.js";import"../../../../models/data/html-meta-data/index.js";import"../../../../models/data/image/index.js";import"../../../../models/data/merchant-settings/index.js";import"../../../../models/data/order/address/index.js";import"../../../../models/data/order/adjustment/index.js";import"../../../../models/data/order/gift-line/index.js";import"../../../../models/data/order/invoice/index.js";import"../../../../models/data/order/line-item/discount/index.js";import"../../../../models/data/order/line-item/option/value/index.js";import"../../../../models/data/order/line-item/option/index.js";import"../../../../models/data/order/line-item/variant/index.js";import"../../../../models/data/order/line-item/index.js";import"../../../../models/data/order/package/tracking-info/index.js";import"../../../../models/data/order/package/index.js";import"../../../../models/data/order/payment-method/index.js";import"../../../../models/data/order/refund/line-item/index.js";import"../../../../models/data/order/shipping-line/index.js";import"../../../../models/data/order/tax-line/index.js";import"../../../../models/data/order/transaction/index.js";import"../../../../models/data/order/index.js";import"../../../../models/data/product/attribute-value/index.js";import"../../../../models/data/product/variant/price/index.js";import"../../../../models/data/product/variant/index.js";import"../../../../models/data/variant-type/index.js";import"../../../../models/data/product/index.js";import"../../../../models/data/product-attribute/index.js";import"../../../../models/data/product-filter/index.js";import"../../../../models/data/product-campaign/campaign/index.js";import"../../../../models/data/product-campaign/filter/index.js";import"../../../../models/data/product-option-set/index.js";import"../../../../models/data/raffle/index.js";import"../../../../models/data/state/index.js";import"../../../../models/data/variant-type/variant-value/index.js";import"../../../../models/theme/theme.js";import"../../../../models/theme/page/index.js";import"../../../../models/theme/component/prop/index.js";import"../../../../models/theme/page/component/prop-value/link.js";import"../../../../models/ui/brand-list/index.js";import"../../../../models/ui/blog-list/index.js";import"../../../../models/ui/blog-category-list/index.js";import"../../../../models/ui/category-list/index.js";import"../../../../models/ui/product-detail/index.js";import"../../../../models/ui/product-list/index.js";import"../../../../models/ui/product-attribute-detail/index.js";import"../../../../models/ui/product-attribute-list/index.js";import"../../../../models/ui/customer-review-list/index.js";import"../../../../models/ui/customer-review-summary-list/index.js";import"../../../../models/ui/validator/index.js";import"../../../../models/ui/validator/rules/index.js";import"../../../../models/ui/validator/form/login.js";import"../../../../models/ui/validator/form/address.js";import"../../../../models/ui/validator/form/register.js";import"../../../../models/ui/validator/form/contact-form.js";import"../../../../models/ui/validator/form/forgot-password.js";import"../../../../models/ui/validator/form/recover-password.js";import"../../../../models/ui/validator/form/account-info.js";import"../../../../models/ui/validator/form/raffle-form.js";import"../../../../models/ui/validator/form/customer-review.js";import"../../../../models/ui/raffle-list/index.js";import"../../../../models/theme/settings/index.js";import"../../../../models/theme/custom-data/index.js";import d from'../../../../ext/lodash/cloneDeep.js';var o=function(){function o(o,r){var a=this;this.editingCustomerAddress=null,this.isDeleteAddressLoading=!1,this.isEditAddressLoading=!1,this.isEditAddressErrorsVisible=!1,this.onAddressSelect=function(e){("shipping"===a.addressType?a.vm.onSelectedShippingAddressIdChange:a.vm.onSelectedBillingAddressIdChange)((null==e?void 0:e.id)||"-1")},this.onEditAddressClick=function(e){var t=new s(d(e));t.checkoutSettings=a.vm.checkoutSettings,a.editingCustomerAddress=t},this.onCancelEditAddressClick=function(){a.isDeleteAddressLoading||a.isEditAddressLoading||(a.editingCustomerAddress=null)},this.onDeleteAddressClick=function(){return e(a,void 0,void 0,(function(){var e,i,s,o,r,a=this;return t(this,(function(t){switch(t.label){case 0:if(-1===(e=null===(o=null===(s=this.vm.store.customerStore.customer)||void 0===s?void 0:s.addresses)||void 0===o?void 0:o.findIndex((function(e){var t;return e.id===(null===(t=a.editingCustomerAddress)||void 0===t?void 0:t.id)})))||void 0===e)return[3,5];i=d(this.vm.store.customerStore.customer),null===(r=i.addresses)||void 0===r||r.splice(e,1),t.label=1;case 1:return t.trys.push([1,3,4,5]),this.isDeleteAddressLoading=!0,[4,this.vm.store.customerStore.saveCustomer(i)];case 2:return t.sent()&&(this.editingCustomerAddress=null),[3,5];case 3:return t.sent(),[3,5];case 4:return this.isDeleteAddressLoading=!1,[7];case 5:return[2]}}))}))},this.onSaveAddressClick=function(){return e(a,void 0,void 0,(function(){var e,i,s,o,r,a=this;return t(this,(function(t){switch(t.label){case 0:if(this.isDeleteAddressLoading||this.isEditAddressLoading)return[2];if(!(null===(s=this.editingCustomerAddress)||void 0===s?void 0:s.isValid))return this.isEditAddressErrorsVisible=!0,[2];if(-1===(e=null===(r=null===(o=this.vm.store.customerStore.customer)||void 0===o?void 0:o.addresses)||void 0===r?void 0:r.findIndex((function(e){var t;return e.id===(null===(t=a.editingCustomerAddress)||void 0===t?void 0:t.id)})))||void 0===e)return[3,5];(i=d(this.vm.store.customerStore.customer)).addresses[e]=this.editingCustomerAddress,t.label=1;case 1:return t.trys.push([1,3,4,5]),this.isEditAddressLoading=!0,[4,this.vm.store.customerStore.saveCustomer(i)];case 2:return t.sent()&&(this.onAddressSelect(this.editingCustomerAddress),this.editingCustomerAddress=null,this.isEditAddressErrorsVisible=!1),[3,5];case 3:return t.sent(),[3,5];case 4:return this.isEditAddressLoading=!1,[7];case 5:return[2]}}))}))},this.firstNameChangeCallback=function(e){a.vm.checkout.hasCustomer||"shipping"!==a.addressType||(a.vm.checkout.customer.firstName=e)},this.lastNameChangeCallback=function(e){a.vm.checkout.hasCustomer||"shipping"!==a.addressType||(a.vm.checkout.customer.lastName=e)},this.vm=o,this.addressType=r,i(this)}return Object.defineProperty(o.prototype,"address",{get:function(){return"shipping"===this.addressType?this.vm.checkout.shippingAddress:this.vm.checkout.billingAddress},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"selectedAddressId",{get:function(){return"shipping"===this.addressType?this.vm.selectedShippingAddressId:this.vm.selectedBillingAddressId},enumerable:!1,configurable:!0}),o}();export{o as default};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var n={AddressText:"style-module_AddressText__2J31s",CancelEdit:"style-module_CancelEdit__2MXfO",EditAddressActions:"style-module_EditAddressActions__1TY0T",DeliveryTime:"style-module_DeliveryTime__3sXJH",ErrorMessage:"style-module_ErrorMessage__DAKmo",fadeInFromRight:"style-module_fadeInFromRight__1TDk5"};e(".style-module_AddressText__2J31s {\n padding-left: 32px;\n color: var(--checkout-secondary-text-color);\n}\n\n.style-module_CancelEdit__2MXfO {\n font-size: 16px;\n padding-bottom: 16px;\n cursor: pointer;\n user-select: none;\n}\n\n.style-module_EditAddressActions__1TY0T {\n display: grid;\n grid-template-columns: 1fr 1fr;\n grid-gap: 16px;\n margin-top: 16px;\n}\n\n.style-module_DeliveryTime__3sXJH {\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n color: var(--checkout-primary-text-color);\n margin-top: 8px;\n padding-left: 32px;\n}\n\n.style-module_ErrorMessage__DAKmo {\n display: flex;\n color: var(--checkout-error-color);\n font-size: 12px;\n animation-name: style-module_fadeInFromRight__1TDk5;\n margin-top: -5px;\n animation-duration: 0.3s;\n}");export{n as default};
@@ -1,10 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- icon: React.ReactNode;
4
- text: string;
5
- isSelected: boolean;
6
- onClick: (type: "address" | "in-store") => void;
7
- type: "address" | "in-store";
8
- };
9
- export declare const IconButton: React.FC<Props>;
10
- export {};
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as t}from"mobx-react-lite";import n from"./style.module.scss.js";var o=t((function(t){var o=t.text,r=t.icon,c=t.isSelected,a=t.type,l=t.onClick,s=[n.Button];return c&&s.push(n.Selected),e.createElement("button",{type:"button",className:s.join(" "),onClick:function(){return l(a)}},e.createElement("span",{className:n.IconMargin},r)," ",e.createElement("span",null,o))}));export{o as IconButton};
@@ -1 +0,0 @@
1
- import e from'../../../../../ext/style-inject/dist/style-inject.es.js';var n={Button:"style-module_Button__SxcJQ",Large:"style-module_Large__yNL_h",Medium:"style-module_Medium__12Y1q",Selected:"style-module_Selected__18O4j",IconMargin:"style-module_IconMargin__14JMG"};e(".style-module_Button__SxcJQ {\n cursor: pointer;\n user-select: none;\n border: 1px solid var(--checkout-border-color);\n border-radius: 8px;\n font-weight: 400 !important;\n text-align: center;\n position: relative;\n transition: all 0.2s;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: #fff;\n color: var(--checkout-primary-text-color);\n height: 56px;\n}\n.style-module_Button__SxcJQ:focus {\n outline: 0;\n}\n.style-module_Button__SxcJQ.style-module_Large__yNL_h {\n height: 56px;\n padding: 0 24px;\n}\n.style-module_Button__SxcJQ.style-module_Medium__12Y1q {\n height: 48px;\n padding: 0 16px;\n}\n.style-module_Button__SxcJQ.style-module_Selected__18O4j {\n background-color: var(--checkout-secondary-bg-color);\n border: 1px solid var(--checkout-primary-text-color);\n}\n\n.style-module_IconMargin__14JMG {\n margin-right: 8px;\n}");export{n as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGBox: React.FC<Props>;
6
- export default SVGBox;
@@ -1 +0,0 @@
1
- import*as L from"react";var e=function(e){return e.className,L.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},L.createElement("path",{d:"M15.3913 3.69726L8.32603 0.117356L8.32309 0.115888C8.0085 -0.0407374 7.63469 -0.0372374 7.32303 0.125263L4.29275 1.73351C4.26813 1.74395 4.24447 1.75661 4.22181 1.77117L0.5905 3.69842C0.22625 3.88914 0 4.26283 0 4.67411V11.3266C0 11.7379 0.22625 12.1116 0.5905 12.3023L7.32003 15.8739L7.32306 15.8755C7.482 15.9584 7.65716 15.9999 7.83234 15.9999C8.00062 15.9999 8.16897 15.9616 8.32309 15.8849L15.3913 12.3035C15.7668 12.1157 16 11.7384 16 11.3185V4.68226C16 4.26229 15.7668 3.88501 15.3913 3.69726ZM7.75741 0.955669C7.80331 0.932106 7.85813 0.931638 7.90444 0.954356L14.5178 4.30529L11.944 5.5867L5.47837 2.16523L7.75741 0.955669ZM7.357 14.8326L1.02844 11.4737L1.02541 11.4721C0.971 11.4437 0.937156 11.388 0.937156 11.3266V5.09698L7.357 8.44461V14.8326ZM7.83053 7.63461L1.446 4.30539L4.478 2.69623L10.9116 6.1007L7.83053 7.63461ZM15.0628 11.3184C15.0628 11.3812 15.0279 11.4375 14.9718 11.4654L8.29419 14.8489V8.45064L11.3687 6.91995V8.52479C11.3687 8.78358 11.5786 8.99339 11.8373 8.99339C12.0961 8.99339 12.3059 8.78358 12.3059 8.52479V6.45336L15.0628 5.08086V11.3184Z",fill:"#272727"}))};export{e as default};
@@ -1,6 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- className?: string;
4
- };
5
- declare const SVGStore: React.FC<Props>;
6
- export default SVGStore;
@@ -1 +0,0 @@
1
- import*as C from"react";var e=function(e){return e.className,C.createElement("svg",{width:"16",height:"14",viewBox:"0 0 16 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},C.createElement("path",{d:"M15.985 4.379L14.985 0.379C14.93 0.156 14.729 0 14.5 0H1.5C1.271 0 1.07 0.156 1.015 0.379L0.015 4.379C0.005 4.418 0 4.459 0 4.5C0 5.338 0.397 6.077 1 6.531V13.5C1 13.776 1.224 14 1.5 14H6.5C6.776 14 7 13.776 7 13.5V10H9V13.5C9 13.776 9.224 14 9.5 14H14.5C14.776 14 15 13.776 15 13.5V6.531C15.603 6.077 16 5.338 16 4.5C16 4.459 15.995 4.418 15.985 4.379ZM14 13H10V9.5C10 9.224 9.776 9 9.5 9H6.5C6.224 9 6 9.224 6 9.5V13H2V6.96C2.123 6.981 2.247 7 2.375 7C3.137 7 3.815 6.621 4.25 6.033C4.685 6.621 5.363 7 6.125 7C6.887 7 7.565 6.621 8 6.033C8.435 6.621 9.113 7 9.875 7C10.637 7 11.315 6.621 11.75 6.033C12.185 6.621 12.863 7 13.625 7C13.753 7 13.877 6.981 14 6.96V13ZM13.625 6C12.867 6 12.25 5.327 12.25 4.5C12.25 4.224 12.026 4 11.75 4C11.474 4 11.25 4.224 11.25 4.5C11.25 5.327 10.633 6 9.875 6C9.117 6 8.5 5.327 8.5 4.5C8.5 4.224 8.276 4 8 4C7.724 4 7.5 4.224 7.5 4.5C7.5 5.327 6.883 6 6.125 6C5.367 6 4.75 5.327 4.75 4.5C4.75 4.224 4.526 4 4.25 4C3.974 4 3.75 4.224 3.75 4.5C3.75 5.327 3.133 6 2.375 6C1.635 6 1.029 5.358 1.001 4.558L1.891 1H14.11L15 4.558C14.971 5.358 14.365 6 13.625 6Z",fill:"#272727"}))};export{e as default};
@@ -1,7 +0,0 @@
1
- import * as React from "react";
2
- declare type Props = {
3
- deliveryMethod: "address" | "in-store";
4
- onClick: (type: "address" | "in-store") => void;
5
- };
6
- declare const _default: React.FunctionComponent<Props>;
7
- export default _default;
@@ -1 +0,0 @@
1
- import*as e from"react";import{observer as o}from"mobx-react-lite";import t from"./style.module.scss.js";import r from"../../styles/common.module.scss.js";import{IconButton as s}from"./icon-button/index.js";import i from"./icons/box.js";import n from"./icons/store.js";import"../../../../storefront/index.js";import'../../../../ext/lodash/isArguments.js';import'../../../../ext/lodash/isBuffer.js';import'../../../../ext/lodash/isTypedArray.js';import'../../../../ext/lodash/_baseGetTag.js';import{useTranslation as m}from"../../../../utils/i18n.js";var l=o((function(o){var l=o.deliveryMethod,d=o.onClick,c=m().t;return e.createElement("div",{className:t.main},e.createElement("div",{className:[r.Grid,r.Grid2].join(" ")},e.createElement(s,{icon:e.createElement(i,null),type:"address",text:c("checkout-page:deliveryToAddress"),isSelected:"address"===l,onClick:function(e){return d(e)}}),e.createElement(s,{icon:e.createElement(n,null),type:"in-store",text:c("checkout-page:inStoreDelivery"),isSelected:"in-store"===l,onClick:function(e){return d(e)}})))}));export{l as default};
@@ -1 +0,0 @@
1
- import e from'../../../../ext/style-inject/dist/style-inject.es.js';var t={main:"style-module_main__3A0Y2"};e(".style-module_main__3A0Y2 {\n margin-bottom: 40px;\n}");export{t as default};