@lookiero/checkout 7.2.0-beta.0 → 7.3.0

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 (196) hide show
  1. package/dist/index.d.ts +6 -6
  2. package/dist/index.js +1 -2
  3. package/dist/src/ExpoRoot.js +11 -11
  4. package/dist/src/infrastructure/projection/pricing/pricing.d.ts +1 -1
  5. package/dist/src/infrastructure/tracking/tracking.d.ts +1 -1
  6. package/dist/src/infrastructure/tracking/useTrackAssignedVariationByExperiment.d.ts +1 -1
  7. package/dist/src/infrastructure/tracking/useTrackChangeFeedback.d.ts +1 -1
  8. package/dist/src/infrastructure/tracking/useTrackCheckout.d.ts +2 -2
  9. package/dist/src/infrastructure/tracking/useTrackImageView.d.ts +1 -1
  10. package/dist/src/infrastructure/tracking/useTrackItemPageView.d.ts +1 -1
  11. package/dist/src/infrastructure/tracking/useTrackKeepItem.d.ts +1 -1
  12. package/dist/src/infrastructure/tracking/useTrackPageView.d.ts +1 -1
  13. package/dist/src/infrastructure/tracking/useTrackPressBack.d.ts +1 -1
  14. package/dist/src/infrastructure/tracking/useTrackPressContinue.d.ts +1 -1
  15. package/dist/src/infrastructure/tracking/useTrackPressItem.d.ts +1 -1
  16. package/dist/src/infrastructure/tracking/useTrackPressNext.d.ts +1 -1
  17. package/dist/src/infrastructure/tracking/useTrackPressPrevious.d.ts +1 -1
  18. package/dist/src/infrastructure/tracking/useTrackPressPricing.d.ts +1 -1
  19. package/dist/src/infrastructure/tracking/useTrackReplaceItem.d.ts +1 -1
  20. package/dist/src/infrastructure/tracking/useTrackResetItem.d.ts +1 -1
  21. package/dist/src/infrastructure/tracking/useTrackReturnItem.d.ts +1 -1
  22. package/dist/src/infrastructure/tracking/useTrackTabView.d.ts +1 -1
  23. package/dist/src/infrastructure/ui/Root.d.ts +5 -4
  24. package/dist/src/infrastructure/ui/Root.js +1 -1
  25. package/dist/src/infrastructure/ui/components/atoms/price/Price.d.ts +1 -1
  26. package/dist/src/infrastructure/ui/hooks/useStaticInfo.d.ts +1 -1
  27. package/dist/src/infrastructure/ui/routing/Routing.d.ts +5 -4
  28. package/dist/src/infrastructure/ui/views/checkout/components/checkoutPaymentModal/CheckoutPaymentModal.d.ts +1 -1
  29. package/dist/src/infrastructure/ui/views/item/components/itemActions/ItemActions.d.ts +1 -1
  30. package/dist/src/infrastructure/ui/views/item/components/itemActions/ItemActions.js +1 -1
  31. package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.d.ts +3 -3
  32. package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +1 -1
  33. package/dist/src/infrastructure/ui/views/item/views/productVariant/ProductVariant.d.ts +1 -1
  34. package/dist/src/infrastructure/ui/views/return/components/price/Price.d.ts +1 -1
  35. package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.d.ts +1 -1
  36. package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.js +1 -1
  37. package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.d.ts +1 -1
  38. package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.d.ts +3 -3
  39. package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.js +1 -1
  40. package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.d.ts +1 -1
  41. package/dist/src/projection/bookedProductsVariants/bookedProductsVariants.d.ts +1 -1
  42. package/dist/src/projection/checkoutItem/checkoutItem.d.ts +2 -2
  43. package/dist/src/projection/pricing/pricing.d.ts +1 -1
  44. package/dist/src/projection/{shared → size}/size.d.ts +1 -1
  45. package/dist/src/projection/{shared → size}/size.js +1 -1
  46. package/dist/src/shared/ui/components/molecules/inputField/InputField.d.ts +1 -1
  47. package/dist/src/shared/ui/components/molecules/inputField/InputField.js +1 -2
  48. package/dist/src/version.d.ts +1 -1
  49. package/dist/src/version.js +1 -1
  50. package/index.ts +6 -7
  51. package/package.json +4 -4
  52. package/src/ExpoRoot.tsx +15 -13
  53. package/src/infrastructure/domain/checkoutItem/model/httpCheckoutItems.test.ts +1 -1
  54. package/src/infrastructure/projection/pricing/pricing.ts +1 -1
  55. package/src/infrastructure/tracking/tracking.ts +1 -1
  56. package/src/infrastructure/tracking/useTrackAssignedVariationByExperiment.test.ts +1 -1
  57. package/src/infrastructure/tracking/useTrackAssignedVariationByExperiment.ts +1 -1
  58. package/src/infrastructure/tracking/useTrackChangeFeedback.test.tsx +1 -1
  59. package/src/infrastructure/tracking/useTrackChangeFeedback.ts +1 -1
  60. package/src/infrastructure/tracking/useTrackCheckout.test.tsx +1 -1
  61. package/src/infrastructure/tracking/useTrackCheckout.ts +2 -2
  62. package/src/infrastructure/tracking/useTrackImageView.test.tsx +1 -1
  63. package/src/infrastructure/tracking/useTrackImageView.ts +1 -1
  64. package/src/infrastructure/tracking/useTrackItemPageView.test.tsx +1 -1
  65. package/src/infrastructure/tracking/useTrackItemPageView.ts +1 -1
  66. package/src/infrastructure/tracking/useTrackKeepItem.test.tsx +1 -1
  67. package/src/infrastructure/tracking/useTrackKeepItem.ts +1 -1
  68. package/src/infrastructure/tracking/useTrackPageView.test.tsx +1 -1
  69. package/src/infrastructure/tracking/useTrackPageView.ts +1 -1
  70. package/src/infrastructure/tracking/useTrackPressBack.test.tsx +1 -1
  71. package/src/infrastructure/tracking/useTrackPressBack.ts +1 -1
  72. package/src/infrastructure/tracking/useTrackPressContinue.test.tsx +1 -1
  73. package/src/infrastructure/tracking/useTrackPressContinue.ts +1 -1
  74. package/src/infrastructure/tracking/useTrackPressItem.test.tsx +1 -1
  75. package/src/infrastructure/tracking/useTrackPressItem.ts +1 -1
  76. package/src/infrastructure/tracking/useTrackPressNext.test.tsx +1 -1
  77. package/src/infrastructure/tracking/useTrackPressNext.ts +1 -1
  78. package/src/infrastructure/tracking/useTrackPressPrevious.test.tsx +1 -1
  79. package/src/infrastructure/tracking/useTrackPressPrevious.ts +1 -1
  80. package/src/infrastructure/tracking/useTrackPressPricing.test.tsx +1 -1
  81. package/src/infrastructure/tracking/useTrackPressPricing.ts +1 -1
  82. package/src/infrastructure/tracking/useTrackReplaceItem.test.tsx +1 -1
  83. package/src/infrastructure/tracking/useTrackReplaceItem.ts +1 -1
  84. package/src/infrastructure/tracking/useTrackResetItem.test.tsx +1 -1
  85. package/src/infrastructure/tracking/useTrackResetItem.ts +1 -1
  86. package/src/infrastructure/tracking/useTrackReturnItem.test.tsx +1 -1
  87. package/src/infrastructure/tracking/useTrackReturnItem.ts +1 -1
  88. package/src/infrastructure/tracking/useTrackTabView.test.tsx +1 -1
  89. package/src/infrastructure/tracking/useTrackTabView.ts +1 -1
  90. package/src/infrastructure/ui/Root.tsx +6 -5
  91. package/src/infrastructure/ui/components/atoms/price/Price.test.tsx +1 -1
  92. package/src/infrastructure/ui/components/atoms/price/Price.tsx +1 -1
  93. package/src/infrastructure/ui/hooks/useStaticInfo.test.tsx +1 -1
  94. package/src/infrastructure/ui/hooks/useStaticInfo.tsx +1 -1
  95. package/src/infrastructure/ui/routing/Routing.tsx +5 -4
  96. package/src/infrastructure/ui/views/checkout/Checkout.test.tsx +1 -1
  97. package/src/infrastructure/ui/views/checkout/components/checkoutPaymentModal/CheckoutPaymentModal.test.tsx +1 -1
  98. package/src/infrastructure/ui/views/checkout/components/checkoutPaymentModal/CheckoutPaymentModal.tsx +1 -1
  99. package/src/infrastructure/ui/views/feedback/Feedback.test.tsx +1 -1
  100. package/src/infrastructure/ui/views/item/Item.test.tsx +1 -1
  101. package/src/infrastructure/ui/views/item/components/itemActions/ItemActions.test.tsx +1 -1
  102. package/src/infrastructure/ui/views/item/components/itemActions/ItemActions.tsx +2 -2
  103. package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.test.tsx +1 -1
  104. package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.tsx +3 -3
  105. package/src/infrastructure/ui/views/item/views/itemWithCustomerDecission/ItemWithCustomerDecission.test.tsx +1 -1
  106. package/src/infrastructure/ui/views/item/views/itemWithoutCustomerDecission/ItemWithoutCustomerDecission.test.tsx +1 -1
  107. package/src/infrastructure/ui/views/item/views/productVariant/ProductVariant.test.tsx +1 -1
  108. package/src/infrastructure/ui/views/item/views/productVariant/ProductVariant.tsx +1 -1
  109. package/src/infrastructure/ui/views/return/components/price/Price.test.tsx +1 -1
  110. package/src/infrastructure/ui/views/return/components/price/Price.tsx +1 -1
  111. package/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.tsx +2 -2
  112. package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +1 -1
  113. package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.test.tsx +1 -1
  114. package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.tsx +3 -3
  115. package/src/infrastructure/ui/views/summary/Summary.test.tsx +1 -1
  116. package/src/infrastructure/ui/views/summaryTabs/SummaryTabs.test.tsx +1 -1
  117. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.test.tsx +1 -1
  118. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.tsx +2 -2
  119. package/src/projection/bookedProductsVariants/bookedProductsVariants.ts +1 -1
  120. package/src/projection/checkoutItem/checkoutItem.ts +2 -2
  121. package/src/projection/pricing/pricing.ts +1 -1
  122. package/src/projection/{shared → size}/size.test.ts +1 -1
  123. package/src/projection/{shared → size}/size.ts +1 -1
  124. package/src/shared/ui/components/molecules/inputField/InputField.tsx +1 -2
  125. package/dist/public/public/assets/adaptive-icon.png +0 -0
  126. package/dist/public/public/assets/favicon.png +0 -0
  127. package/dist/public/public/assets/icon.png +0 -0
  128. package/dist/public/public/assets/splash.png +0 -0
  129. package/dist/public/public/images/not-found.png +0 -0
  130. package/dist/src/infrastructure/projection/checkout/react/useViewIsCheckoutAccessibleByCustomerId.d.ts +0 -10
  131. package/dist/src/infrastructure/projection/checkout/react/useViewIsCheckoutAccessibleByCustomerId.js +0 -17
  132. package/dist/src/infrastructure/ui/components/layouts/layout/Layout.d.ts +0 -21
  133. package/dist/src/infrastructure/ui/components/layouts/layout/Layout.js +0 -1
  134. package/dist/src/infrastructure/ui/components/layouts/layout/components/footer/Footer.d.ts +0 -6
  135. package/dist/src/infrastructure/ui/components/layouts/layout/components/footer/Footer.js +0 -4
  136. package/dist/src/infrastructure/ui/components/layouts/layout/components/header/Header.d.ts +0 -6
  137. package/dist/src/infrastructure/ui/components/layouts/layout/components/header/Header.js +0 -5
  138. package/dist/src/infrastructure/ui/components/layouts/layout/components/header/Header.style.d.ts +0 -4
  139. package/dist/src/infrastructure/ui/components/layouts/layout/components/header/Header.style.js +0 -19
  140. package/dist/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.d.ts +0 -3
  141. package/dist/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.js +0 -18
  142. package/dist/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.style.d.ts +0 -12
  143. package/dist/src/infrastructure/ui/components/layouts/layout/dummyLayout/DummyLayout.style.js +0 -13
  144. package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.d.ts +0 -6
  145. package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.js +0 -11
  146. package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.style.d.ts +0 -8
  147. package/dist/src/infrastructure/ui/components/templates/header/defaultHeader/DefaultHeader.style.js +0 -11
  148. package/dist/src/infrastructure/ui/hooks/useNewFeedbackExperiment.d.ts +0 -11
  149. package/dist/src/infrastructure/ui/hooks/useNewFeedbackExperiment.js +0 -49
  150. package/dist/src/infrastructure/ui/i18n/fetchTranslations.d.ts +0 -9
  151. package/dist/src/infrastructure/ui/i18n/fetchTranslations.js +0 -9
  152. package/dist/src/infrastructure/ui/i18n/translationEndpoint.d.ts +0 -19
  153. package/dist/src/infrastructure/ui/i18n/translationEndpoint.js +0 -21
  154. package/dist/src/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.d.ts +0 -9
  155. package/dist/src/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.js +0 -21
  156. package/dist/src/infrastructure/ui/views/feedback/components/checkoutQuestionsForm/CheckoutQuestionsForm.style.d.ts +0 -7
  157. package/dist/src/infrastructure/ui/views/feedback/components/checkoutQuestionsForm/CheckoutQuestionsForm.style.js +0 -10
  158. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.d.ts +0 -11
  159. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.js +0 -40
  160. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.style.d.ts +0 -12
  161. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.style.js +0 -15
  162. package/dist/src/infrastructure/ui/views/return/Return.style.d.ts +0 -40
  163. package/dist/src/infrastructure/ui/views/return/Return.style.js +0 -43
  164. package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.d.ts +0 -13
  165. package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.js +0 -9
  166. package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.style.d.ts +0 -7
  167. package/dist/src/infrastructure/ui/views/summary/components/stickyPricing/StickyPricing.style.js +0 -10
  168. package/dist/src/projection/checkout/viewIsCheckoutAccessibleByCustomerId.d.ts +0 -17
  169. package/dist/src/projection/checkout/viewIsCheckoutAccessibleByCustomerId.js +0 -13
  170. package/dist/src/projection/shared/country.d.ts +0 -14
  171. package/dist/src/projection/shared/country.js +0 -15
  172. package/dist/src/projection/shared/locale.d.ts +0 -12
  173. package/dist/src/projection/shared/locale.js +0 -13
  174. package/dist/src/shared/ui/components/atoms/error/Error.d.ts +0 -10
  175. package/dist/src/shared/ui/components/atoms/error/Error.js +0 -4
  176. package/src/infrastructure/ui/i18n/fetchTranslations.test.ts +0 -29
  177. package/src/infrastructure/ui/i18n/fetchTranslations.ts +0 -27
  178. package/src/infrastructure/ui/i18n/translationEndpoint.test.ts +0 -13
  179. package/src/infrastructure/ui/i18n/translationEndpoint.ts +0 -50
  180. package/src/projection/shared/country.ts +0 -15
  181. package/src/projection/shared/locale.ts +0 -13
  182. package/src/shared/ui/components/atoms/error/Error.test.tsx +0 -11
  183. package/src/shared/ui/components/atoms/error/Error.tsx +0 -18
  184. package/src/shared/ui/components/atoms/error/__snapshots__/Error.test.tsx.snap +0 -54
  185. /package/dist/src/projection/{shared → customer}/customer.d.ts +0 -0
  186. /package/dist/src/projection/{shared → customer}/customer.js +0 -0
  187. /package/dist/src/projection/{shared → order}/order.d.ts +0 -0
  188. /package/dist/src/projection/{shared → order}/order.js +0 -0
  189. /package/dist/src/projection/{shared → price}/price.d.ts +0 -0
  190. /package/dist/src/projection/{shared → price}/price.js +0 -0
  191. /package/dist/src/projection/{shared → subscription}/subscription.d.ts +0 -0
  192. /package/dist/src/projection/{shared → subscription}/subscription.js +0 -0
  193. /package/src/projection/{shared → customer}/customer.ts +0 -0
  194. /package/src/projection/{shared → order}/order.ts +0 -0
  195. /package/src/projection/{shared → price}/price.ts +0 -0
  196. /package/src/projection/{shared → subscription}/subscription.ts +0 -0
@@ -1,54 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Error atom matches the snapshot 1`] = `
4
- <View
5
- style={
6
- [
7
- {
8
- "backgroundColor": "#FFFFFF",
9
- "flex": 1,
10
- },
11
- ]
12
- }
13
- >
14
- <View
15
- style={
16
- [
17
- {
18
- "alignSelf": "center",
19
- "left": 0,
20
- "marginHorizontal": "auto",
21
- "position": "absolute",
22
- "right": 0,
23
- "top": 0,
24
- "width": "100%",
25
- "zIndex": 5,
26
- },
27
- ]
28
- }
29
- >
30
- <RCTSafeAreaView />
31
- </View>
32
- <Text
33
- allowFontScaling={false}
34
- selectable={false}
35
- style={
36
- [
37
- {
38
- "color": "#F45545",
39
- "fontFamily": "AreaNormal-Semibold",
40
- "fontSize": 12,
41
- "letterSpacing": 0.1,
42
- "lineHeight": 16,
43
- "paddingBottom": 0,
44
- "paddingLeft": 0,
45
- "paddingRight": 0,
46
- "paddingTop": 0,
47
- },
48
- ]
49
- }
50
- >
51
- Error
52
- </Text>
53
- </View>
54
- `;
File without changes
File without changes
File without changes
File without changes
File without changes