@lookiero/checkout 0.6.4 → 0.7.1

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 (48) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/dist/index.js +2 -2
  3. package/dist/infrastructure/ui/Root.d.ts +6 -2
  4. package/dist/infrastructure/ui/Root.js +10 -6
  5. package/dist/infrastructure/ui/i18n/i18n.d.ts +0 -7
  6. package/dist/infrastructure/ui/i18n/i18n.js +0 -7
  7. package/dist/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.js +1 -1
  8. package/dist/infrastructure/ui/routing/CheckoutMiddleware.js +13 -29
  9. package/dist/infrastructure/ui/routing/Routing.d.ts +11 -3
  10. package/dist/infrastructure/ui/routing/Routing.js +12 -12
  11. package/dist/infrastructure/ui/routing/routes.d.ts +0 -1
  12. package/dist/infrastructure/ui/routing/routes.js +0 -1
  13. package/dist/infrastructure/ui/settings/UISettings.d.ts +0 -1
  14. package/dist/infrastructure/ui/settings/UISettings.js +0 -1
  15. package/dist/shared/logging/SentryDependencies.d.ts +11 -0
  16. package/dist/shared/logging/SentryDependencies.js +17 -0
  17. package/dist/shared/logging/SentryDependencies.native.d.ts +10 -0
  18. package/dist/shared/logging/SentryDependencies.native.js +15 -0
  19. package/dist/shared/logging/SentryLogger.d.ts +19 -0
  20. package/dist/shared/logging/SentryLogger.js +122 -0
  21. package/dist/shared/logging/reactRouterV6Instrumentation/NativeReactRouterV6Instrumentation.d.ts +49 -0
  22. package/dist/shared/logging/reactRouterV6Instrumentation/NativeReactRouterV6Instrumentation.js +131 -0
  23. package/dist/shared/logging/reactRouterV6Instrumentation/location.d.ts +3 -0
  24. package/dist/shared/logging/reactRouterV6Instrumentation/location.js +5 -0
  25. package/dist/shared/logging/reactRouterV6Instrumentation/normalizedNameAndMatchForLocation.d.ts +12 -0
  26. package/dist/shared/logging/reactRouterV6Instrumentation/normalizedNameAndMatchForLocation.js +34 -0
  27. package/dist/shared/logging/reactRouterV6Instrumentation/reactRouterV6Instrumentation.d.ts +15 -0
  28. package/dist/shared/logging/reactRouterV6Instrumentation/reactRouterV6Instrumentation.js +92 -0
  29. package/dist/shared/logging/reactRouterV6Instrumentation/types.d.ts +9 -0
  30. package/dist/shared/logging/reactRouterV6Instrumentation/types.js +1 -0
  31. package/dist/shared/logging/types.d.ts +22 -0
  32. package/dist/shared/logging/types.js +1 -0
  33. package/dist/shared/ui/components/atoms/field/Field.js +5 -13
  34. package/dist/shared/ui/components/atoms/field/Field.style.js +2 -2
  35. package/dist/shared/ui/components/molecules/inputField/InputField.js +2 -2
  36. package/dist/shared/ui/components/molecules/inputField/InputField.style.d.ts +1 -0
  37. package/dist/shared/ui/components/molecules/inputField/InputField.style.js +1 -0
  38. package/package.json +2 -1
  39. package/dist/infrastructure/domain/uiSetting/react/useIncrementIntroShownCount.d.ts +0 -10
  40. package/dist/infrastructure/domain/uiSetting/react/useIncrementIntroShownCount.js +0 -11
  41. package/dist/infrastructure/projection/uiSetting/react/useShouldIntroBeShown.d.ts +0 -6
  42. package/dist/infrastructure/projection/uiSetting/react/useShouldIntroBeShown.js +0 -7
  43. package/dist/infrastructure/projection/uiSetting/react/useViewIntroShownCount.d.ts +0 -6
  44. package/dist/infrastructure/projection/uiSetting/react/useViewIntroShownCount.js +0 -9
  45. package/dist/infrastructure/ui/views/intro/Intro.d.ts +0 -6
  46. package/dist/infrastructure/ui/views/intro/Intro.js +0 -52
  47. package/dist/infrastructure/ui/views/intro/Intro.style.d.ts +0 -52
  48. package/dist/infrastructure/ui/views/intro/Intro.style.js +0 -55
@@ -1,55 +0,0 @@
1
- import { StyleSheet } from "react-native";
2
- import { theme } from "../../theme/theme";
3
- const { borderSize, colorAccent, spaceXS, spaceS, spaceM, spaceL, spaceXL } = theme();
4
- const style = StyleSheet.create({
5
- bodyColumn: {
6
- paddingHorizontal: spaceXL,
7
- },
8
- bullet: {
9
- alignItems: "center",
10
- flexDirection: "row",
11
- marginVertical: spaceS,
12
- },
13
- content: {
14
- alignItems: "center",
15
- },
16
- description: {
17
- borderWidth: borderSize,
18
- marginBottom: spaceXL,
19
- padding: spaceM,
20
- width: "100%",
21
- },
22
- discount: {
23
- alignItems: "flex-end",
24
- flexDirection: "row",
25
- justifyContent: "center",
26
- marginBottom: spaceS,
27
- },
28
- discountContainer: {
29
- alignItems: "center",
30
- backgroundColor: colorAccent,
31
- marginBottom: spaceL,
32
- padding: spaceM,
33
- textAlign: "center",
34
- width: "100%",
35
- },
36
- intro: {
37
- flex: 1,
38
- justifyContent: "space-between",
39
- },
40
- percentage: {
41
- marginLeft: spaceXS,
42
- },
43
- subtitle: {
44
- marginBottom: spaceXL,
45
- textAlign: "center",
46
- },
47
- tickIcon: {
48
- marginRight: spaceS,
49
- },
50
- title: {
51
- marginBottom: spaceM,
52
- textAlign: "center",
53
- },
54
- });
55
- export { style };