@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.
- package/dist/index.d.ts +4 -2
- package/dist/index.js +2 -2
- package/dist/infrastructure/ui/Root.d.ts +6 -2
- package/dist/infrastructure/ui/Root.js +10 -6
- package/dist/infrastructure/ui/i18n/i18n.d.ts +0 -7
- package/dist/infrastructure/ui/i18n/i18n.js +0 -7
- package/dist/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.js +1 -1
- package/dist/infrastructure/ui/routing/CheckoutMiddleware.js +13 -29
- package/dist/infrastructure/ui/routing/Routing.d.ts +11 -3
- package/dist/infrastructure/ui/routing/Routing.js +12 -12
- package/dist/infrastructure/ui/routing/routes.d.ts +0 -1
- package/dist/infrastructure/ui/routing/routes.js +0 -1
- package/dist/infrastructure/ui/settings/UISettings.d.ts +0 -1
- package/dist/infrastructure/ui/settings/UISettings.js +0 -1
- package/dist/shared/logging/SentryDependencies.d.ts +11 -0
- package/dist/shared/logging/SentryDependencies.js +17 -0
- package/dist/shared/logging/SentryDependencies.native.d.ts +10 -0
- package/dist/shared/logging/SentryDependencies.native.js +15 -0
- package/dist/shared/logging/SentryLogger.d.ts +19 -0
- package/dist/shared/logging/SentryLogger.js +122 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/NativeReactRouterV6Instrumentation.d.ts +49 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/NativeReactRouterV6Instrumentation.js +131 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/location.d.ts +3 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/location.js +5 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/normalizedNameAndMatchForLocation.d.ts +12 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/normalizedNameAndMatchForLocation.js +34 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/reactRouterV6Instrumentation.d.ts +15 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/reactRouterV6Instrumentation.js +92 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/types.d.ts +9 -0
- package/dist/shared/logging/reactRouterV6Instrumentation/types.js +1 -0
- package/dist/shared/logging/types.d.ts +22 -0
- package/dist/shared/logging/types.js +1 -0
- package/dist/shared/ui/components/atoms/field/Field.js +5 -13
- package/dist/shared/ui/components/atoms/field/Field.style.js +2 -2
- package/dist/shared/ui/components/molecules/inputField/InputField.js +2 -2
- package/dist/shared/ui/components/molecules/inputField/InputField.style.d.ts +1 -0
- package/dist/shared/ui/components/molecules/inputField/InputField.style.js +1 -0
- package/package.json +2 -1
- package/dist/infrastructure/domain/uiSetting/react/useIncrementIntroShownCount.d.ts +0 -10
- package/dist/infrastructure/domain/uiSetting/react/useIncrementIntroShownCount.js +0 -11
- package/dist/infrastructure/projection/uiSetting/react/useShouldIntroBeShown.d.ts +0 -6
- package/dist/infrastructure/projection/uiSetting/react/useShouldIntroBeShown.js +0 -7
- package/dist/infrastructure/projection/uiSetting/react/useViewIntroShownCount.d.ts +0 -6
- package/dist/infrastructure/projection/uiSetting/react/useViewIntroShownCount.js +0 -9
- package/dist/infrastructure/ui/views/intro/Intro.d.ts +0 -6
- package/dist/infrastructure/ui/views/intro/Intro.js +0 -52
- package/dist/infrastructure/ui/views/intro/Intro.style.d.ts +0 -52
- 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 };
|