@lookiero/checkout 12.27.0 → 12.28.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/{cypress.config.ts → cypress.config.cjs} +2 -2
- package/dist/src/Expo.js +0 -2
- package/dist/src/ExpoRoot.js +3 -3
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +2 -2
- package/jest.config.js +1 -7
- package/jest.setup.js +1 -53
- package/package.json +20 -20
- package/proxy-server.js +48 -34
- package/src/Expo.tsx +0 -3
- package/src/ExpoRoot.tsx +3 -3
- package/src/infrastructure/ui/components/layouts/body/__snapshots__/Body.test.tsx.snap +2 -0
- package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/__snapshots__/GetOutOfCheckoutModal.test.tsx.snap +27 -18
- package/src/infrastructure/ui/views/item/components/itemActions/__snapshots__/ItemActions.test.tsx.snap +41 -27
- package/src/infrastructure/ui/views/item/components/productVariantSlider/__snapshots__/ProductVariantSlider.test.tsx.snap +28 -20
- package/src/infrastructure/ui/views/item/components/selectModal/__snapshots__/SelecModal.test.tsx.snap +1 -0
- package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/__snapshots__/SizeWithoutStockModal.test.tsx.snap +14 -9
- package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +84 -60
- package/src/infrastructure/ui/views/return/components/productVariantPreview/__snapshots__/ProductVariantPreview.test.tsx.snap +1 -0
- package/src/infrastructure/ui/views/shared/components/productVariant/__snapshots__/ProductVariant.test.tsx.snap +28 -20
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/__snapshots__/CollapsiblePricing.test.tsx.snap +26 -18
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +56 -40
- package/tsconfig.json +2 -1
package/dist/src/Expo.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import "@expo/metro-runtime";
|
|
2
2
|
import { registerRootComponent } from "expo";
|
|
3
|
-
import { enableLegacyWebImplementation } from "react-native-gesture-handler";
|
|
4
3
|
import "react-native-get-random-values";
|
|
5
4
|
import { ExpoRoot } from "./ExpoRoot";
|
|
6
|
-
enableLegacyWebImplementation(true);
|
|
7
5
|
registerRootComponent(ExpoRoot);
|
package/dist/src/ExpoRoot.js
CHANGED
|
@@ -18,7 +18,7 @@ import { root } from "./infrastructure/ui/Root";
|
|
|
18
18
|
import { DOMAIN } from "./infrastructure/ui/i18n/i18n";
|
|
19
19
|
import { Router } from "./infrastructure/ui/routing/router/Router";
|
|
20
20
|
import { RELEASE } from "./version";
|
|
21
|
-
const tradename = Tradename.
|
|
21
|
+
const tradename = Tradename.LOOKIERO;
|
|
22
22
|
const theme = themeByTradename({ tradename });
|
|
23
23
|
const locale = Locale.es_ES;
|
|
24
24
|
const subscription = "b";
|
|
@@ -28,7 +28,7 @@ const order = {
|
|
|
28
28
|
coupon: "MYLOOKIERO",
|
|
29
29
|
};
|
|
30
30
|
const customer = {
|
|
31
|
-
customerId: "
|
|
31
|
+
customerId: "0004a049-fef6-4bac-a45d-b3a904b4ee4b",
|
|
32
32
|
country: Country.ES,
|
|
33
33
|
segment: Segment.WOMEN,
|
|
34
34
|
email: "email@example.com",
|
|
@@ -49,7 +49,7 @@ const apiUrl = Platform.OS !== "web"
|
|
|
49
49
|
? "/local-to-dev"
|
|
50
50
|
: "http://localhost:3004/local-to-dev"
|
|
51
51
|
: "/checkout/api";
|
|
52
|
-
const authToken = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.
|
|
52
|
+
const authToken = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIyMDgzMTMsImV4cCI6MTc2NTk4NzE0MywiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiTkwiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjAtMTAtMDEiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiMDAwNGEwNDktZmVmNi00YmFjLWE0NWQtYjNhOTA0YjRlZTRiIiwidHJhZGVuYW1lIjoiTE9PS0lFUk8iLCJpYXQiOjE3NjMzOTUxNDN9.X3UQ0NSow2zu76ROCm4pl2cwTkDTOhHOaQT9N8zcqdg";
|
|
53
53
|
const getAuthToken = () => Promise.resolve(authToken);
|
|
54
54
|
const externalTranslationsUrl = Platform.OS !== "web"
|
|
55
55
|
? "https://backend-for-user.dev.envs.lookiero.tech/api/v2/translations"
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.
|
|
2
|
-
export declare const RELEASE = "checkout@12.
|
|
1
|
+
export declare const VERSION = "12.28.1";
|
|
2
|
+
export declare const RELEASE = "checkout@12.28.1";
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "12.
|
|
2
|
-
export const RELEASE = "checkout@12.
|
|
1
|
+
export const VERSION = "12.28.1";
|
|
2
|
+
export const RELEASE = "checkout@12.28.1";
|
package/jest.config.js
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
module.exports = {
|
|
4
|
-
...jestReactNativeConfig,
|
|
5
|
-
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
|
|
6
|
-
setupFiles: ["../../node_modules/react-native-gesture-handler/jestSetup.js"],
|
|
7
|
-
};
|
|
1
|
+
module.exports = require("@lookiero/sty-psp-jest-config/jest.config.expo.js");
|
package/jest.setup.js
CHANGED
|
@@ -1,53 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import "@lookiero/sty-psp-jest-config/jest.setup.base";
|
|
3
|
-
|
|
4
|
-
require("react-native-reanimated").setUpTests();
|
|
5
|
-
|
|
6
|
-
jest.mock('react-native-reanimated', () => {
|
|
7
|
-
const Reanimated = jest.requireActual('react-native-reanimated/mock');
|
|
8
|
-
|
|
9
|
-
// Override call to prevent warnings in newer versions
|
|
10
|
-
Reanimated.default.call = () => {};
|
|
11
|
-
|
|
12
|
-
return Reanimated;
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
jest.mock("@react-native-async-storage/async-storage", () => mockAsyncStorage);
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* All expo mocked dependencies solve Aurora introduced issues.
|
|
19
|
-
* Without these, jest will break or pollute the log warnings.
|
|
20
|
-
*/
|
|
21
|
-
jest.mock("expo-linear-gradient", () => ({ LinearGradient: require("react-native").View }));
|
|
22
|
-
|
|
23
|
-
jest.mock("react-native-safe-area-context", () => ({
|
|
24
|
-
SafeAreaProvider: ({ children }) => children,
|
|
25
|
-
SafeAreaView: ({ children }) => children,
|
|
26
|
-
useSafeAreaInsets: () => ({ top: 0, bottom: 0 }),
|
|
27
|
-
useSafeAreaFrame: () => ({ x: 0, y: 0, width: 600, height: 800 }),
|
|
28
|
-
}));
|
|
29
|
-
|
|
30
|
-
jest.mock("@gorhom/portal", () => ({
|
|
31
|
-
Portal: ({ children }) => children,
|
|
32
|
-
PortalHost: () => null,
|
|
33
|
-
}));
|
|
34
|
-
|
|
35
|
-
jest.mock("react-native-keyboard-aware-scroll-view", () => {
|
|
36
|
-
const KeyboardAwareScrollView = require("react-native").ScrollView;
|
|
37
|
-
const KeyboardAwareFlatList = require("react-native").FlatList;
|
|
38
|
-
|
|
39
|
-
return { KeyboardAwareScrollView, KeyboardAwareFlatList };
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
jest.mock("@lookiero/user-tracking-front", () => ({
|
|
43
|
-
emitUserEvent: jest.fn(),
|
|
44
|
-
}));
|
|
45
|
-
|
|
46
|
-
beforeAll(() => {
|
|
47
|
-
jest.useFakeTimers();
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
afterAll(() => {
|
|
51
|
-
jest.runOnlyPendingTimers();
|
|
52
|
-
jest.useRealTimers();
|
|
53
|
-
});
|
|
1
|
+
import "@lookiero/sty-psp-jest-config/jest.setup.expo";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lookiero/checkout",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.28.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"sideEffects": "false",
|
|
@@ -19,27 +19,28 @@
|
|
|
19
19
|
"eas:all": "eas build -p all -e test"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@expo/metro-runtime": "^5.0.5",
|
|
22
23
|
"@lookiero/messaging": "^8.1.1",
|
|
23
24
|
"@lookiero/messaging-react": "^8.1.1",
|
|
24
25
|
"@lookiero/sty-psp-ab-testing": "^0.4",
|
|
25
|
-
"@lookiero/sty-psp-expo-config": "^
|
|
26
|
+
"@lookiero/sty-psp-expo-config": "^2.0",
|
|
26
27
|
"@lookiero/sty-psp-http": "^2.1",
|
|
27
28
|
"@lookiero/sty-psp-i18n": "^1.5",
|
|
28
29
|
"@lookiero/sty-psp-locale": "^2.1",
|
|
29
|
-
"@lookiero/sty-psp-logging": "^2.
|
|
30
|
-
"@lookiero/sty-psp-notifications": "^2.
|
|
31
|
-
"@lookiero/sty-psp-react-native": "^
|
|
30
|
+
"@lookiero/sty-psp-logging": "^2.2",
|
|
31
|
+
"@lookiero/sty-psp-notifications": "^2.13",
|
|
32
|
+
"@lookiero/sty-psp-react-native": "^2.0",
|
|
32
33
|
"@lookiero/sty-psp-segment": "^0.1",
|
|
33
|
-
"@lookiero/sty-psp-storage": "^0
|
|
34
|
-
"@lookiero/sty-psp-tracking": "^2.
|
|
35
|
-
"@lookiero/sty-psp-ui
|
|
36
|
-
"@lookiero/sty-psp-ui": "^
|
|
34
|
+
"@lookiero/sty-psp-storage": "^1.0",
|
|
35
|
+
"@lookiero/sty-psp-tracking": "^2.4",
|
|
36
|
+
"@lookiero/sty-psp-ui": "^3.3",
|
|
37
|
+
"@lookiero/sty-psp-ui-settings": "^1.4",
|
|
37
38
|
"@lookiero/sty-psp-units": "^0.1",
|
|
38
39
|
"@lookiero/sty-psp-uuid": "^0.2",
|
|
39
40
|
"@lookiero/sty-sp-tradename": "^1.0",
|
|
40
41
|
"@sentry/react-native": "^7.3.0",
|
|
41
42
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
42
|
-
"react-native-svg": "15.
|
|
43
|
+
"react-native-svg": "15.11.2",
|
|
43
44
|
"tiny-invariant": "^1.3.1"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
"@lookiero/sty-psp-prettier-config": "*",
|
|
52
53
|
"@lookiero/sty-psp-scripts": "*",
|
|
53
54
|
"@lookiero/sty-psp-typescript": "*",
|
|
54
|
-
"@react-native-async-storage/async-storage": "1.
|
|
55
|
+
"@react-native-async-storage/async-storage": "2.1.2",
|
|
55
56
|
"@react-native/assets-registry": "^0.79.2",
|
|
56
57
|
"@remix-run/router": ">=1.10",
|
|
57
58
|
"@testing-library/react-native": ">=13",
|
|
@@ -63,11 +64,10 @@
|
|
|
63
64
|
"http-proxy-middleware": "^2.0.9",
|
|
64
65
|
"jest-mock-extended": ">=3",
|
|
65
66
|
"jest-when": ">=3",
|
|
66
|
-
"
|
|
67
|
-
"react-native-gesture-handler": "~2.20.2",
|
|
67
|
+
"react-native-gesture-handler": "~2.24.0",
|
|
68
68
|
"react-native-get-random-values": "~1.11.0",
|
|
69
|
-
"react-native-reanimated": "~3.
|
|
70
|
-
"react-native-safe-area-context": "4.
|
|
69
|
+
"react-native-reanimated": "~3.17.4",
|
|
70
|
+
"react-native-safe-area-context": "5.4.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"@gorhom/portal": ">=1.0",
|
|
@@ -78,14 +78,14 @@
|
|
|
78
78
|
"@lookiero/i18n-react": ">=3",
|
|
79
79
|
"@lookiero/payments-front": ">=9",
|
|
80
80
|
"apollo-boost": "0.4.4",
|
|
81
|
-
"expo": ">=
|
|
81
|
+
"expo": ">=53",
|
|
82
82
|
"expo-font": ">=12",
|
|
83
|
-
"react": ">=
|
|
83
|
+
"react": ">=19",
|
|
84
84
|
"react-native": ">=0.76",
|
|
85
|
-
"react-native-gesture-handler": ">=2.
|
|
85
|
+
"react-native-gesture-handler": ">=2.24",
|
|
86
86
|
"react-native-get-random-values": ">=1.11",
|
|
87
|
-
"react-native-reanimated": ">=3.
|
|
88
|
-
"react-native-safe-area-context": ">=4
|
|
87
|
+
"react-native-reanimated": ">=3.17",
|
|
88
|
+
"react-native-safe-area-context": ">=5.4",
|
|
89
89
|
"react-router-dom": ">=6.14",
|
|
90
90
|
"react-router-native": ">=6.14",
|
|
91
91
|
"uuid": ">=9"
|
package/proxy-server.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
const express = require(
|
|
2
|
-
const { createProxyMiddleware } = require(
|
|
3
|
-
const cors = require(
|
|
1
|
+
const express = require("express");
|
|
2
|
+
const { createProxyMiddleware } = require("http-proxy-middleware");
|
|
3
|
+
const cors = require("cors");
|
|
4
4
|
const app = express();
|
|
5
5
|
|
|
6
6
|
app.use(cors());
|
|
@@ -9,39 +9,53 @@ const DEV_UAF_SP = "https://web2.sp.dev.aws.lookiero.es";
|
|
|
9
9
|
const DEV_BFU = "https://backend-for-user.dev.envs.lookiero.tech";
|
|
10
10
|
const PROD_UAF_PROXY = "https://lookiero.es";
|
|
11
11
|
|
|
12
|
-
app.use(
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
12
|
+
app.use(
|
|
13
|
+
"/local-to-dev",
|
|
14
|
+
createProxyMiddleware({
|
|
15
|
+
target: DEV_UAF_SP,
|
|
16
|
+
pathRewrite: { "^/local-to-dev": "/checkout/api" },
|
|
17
|
+
changeOrigin: true,
|
|
18
|
+
logLevel: "debug",
|
|
19
|
+
}),
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
app.use(
|
|
23
|
+
"/local-to-prod",
|
|
24
|
+
createProxyMiddleware({
|
|
25
|
+
target: PROD_UAF_PROXY,
|
|
26
|
+
pathRewrite: { "^/local-to-prod": "/checkout/api" },
|
|
27
|
+
changeOrigin: true,
|
|
28
|
+
logLevel: "debug",
|
|
29
|
+
}),
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
app.use(
|
|
33
|
+
"/local-to-external-i18n",
|
|
34
|
+
createProxyMiddleware({
|
|
35
|
+
target: DEV_UAF_SP,
|
|
36
|
+
pathRewrite: { "^/local-to-external-i18n": "/api/v2/translations" },
|
|
37
|
+
changeOrigin: true,
|
|
38
|
+
logLevel: "debug",
|
|
39
|
+
}),
|
|
40
|
+
);
|
|
32
41
|
|
|
33
42
|
// Payments
|
|
34
|
-
app.use(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
+
app.use(
|
|
44
|
+
"/web",
|
|
45
|
+
createProxyMiddleware({
|
|
46
|
+
target: DEV_UAF_SP,
|
|
47
|
+
changeOrigin: true,
|
|
48
|
+
}),
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
app.use(
|
|
52
|
+
"/graphql",
|
|
53
|
+
createProxyMiddleware({
|
|
54
|
+
target: DEV_BFU,
|
|
55
|
+
changeOrigin: true,
|
|
56
|
+
}),
|
|
57
|
+
);
|
|
43
58
|
|
|
44
59
|
app.listen(3004, () => {
|
|
45
|
-
console.log(
|
|
60
|
+
console.log("Proxy server running on http://localhost:3004");
|
|
46
61
|
});
|
|
47
|
-
|
package/src/Expo.tsx
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import "@expo/metro-runtime";
|
|
2
2
|
import { registerRootComponent } from "expo";
|
|
3
|
-
import { enableLegacyWebImplementation } from "react-native-gesture-handler";
|
|
4
3
|
import "react-native-get-random-values";
|
|
5
4
|
import { ExpoRoot } from "./ExpoRoot";
|
|
6
5
|
|
|
7
|
-
enableLegacyWebImplementation(true);
|
|
8
|
-
|
|
9
6
|
registerRootComponent(ExpoRoot);
|
package/src/ExpoRoot.tsx
CHANGED
|
@@ -25,7 +25,7 @@ import { OrderProjection } from "./projection/order/order";
|
|
|
25
25
|
import { SubscriptionProjection } from "./projection/subscription/subscription";
|
|
26
26
|
import { RELEASE } from "./version";
|
|
27
27
|
|
|
28
|
-
const tradename = Tradename.
|
|
28
|
+
const tradename = Tradename.LOOKIERO;
|
|
29
29
|
const theme = themeByTradename({ tradename });
|
|
30
30
|
const locale: Locale = Locale.es_ES;
|
|
31
31
|
|
|
@@ -37,7 +37,7 @@ const order: OrderProjection = {
|
|
|
37
37
|
};
|
|
38
38
|
|
|
39
39
|
const customer: Customer = {
|
|
40
|
-
customerId: "
|
|
40
|
+
customerId: "0004a049-fef6-4bac-a45d-b3a904b4ee4b",
|
|
41
41
|
country: Country.ES,
|
|
42
42
|
segment: Segment.WOMEN,
|
|
43
43
|
email: "email@example.com",
|
|
@@ -62,7 +62,7 @@ const apiUrl =
|
|
|
62
62
|
: "http://localhost:3004/local-to-dev"
|
|
63
63
|
: "/checkout/api";
|
|
64
64
|
const authToken =
|
|
65
|
-
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.
|
|
65
|
+
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIyMDgzMTMsImV4cCI6MTc2NTk4NzE0MywiZGlzcGxheU5hbWUiOiJUZXN0aW5nIiwiY291bnRyeV9jb2RlIjoiTkwiLCJhY2Nlc3NWaWEiOiJlbWFpbCIsInN1YnNjcmlwdGlvblN0YXJ0aW5nRGF0ZSI6IjIwMjAtMTAtMDEiLCJpbXBlcnNvbmF0ZWQiOmZhbHNlLCJ1dWlkIjoiMDAwNGEwNDktZmVmNi00YmFjLWE0NWQtYjNhOTA0YjRlZTRiIiwidHJhZGVuYW1lIjoiTE9PS0lFUk8iLCJpYXQiOjE3NjMzOTUxNDN9.X3UQ0NSow2zu76ROCm4pl2cwTkDTOhHOaQT9N8zcqdg";
|
|
66
66
|
const getAuthToken = () => Promise.resolve(authToken);
|
|
67
67
|
|
|
68
68
|
const externalTranslationsUrl =
|
|
@@ -33,6 +33,7 @@ exports[`Body layout matches the snapshot for a small screen: small 1`] = `
|
|
|
33
33
|
style={
|
|
34
34
|
[
|
|
35
35
|
{
|
|
36
|
+
"alignContent": "center",
|
|
36
37
|
"alignItems": "center",
|
|
37
38
|
"flexBasis": "auto",
|
|
38
39
|
"flexWrap": "wrap",
|
|
@@ -104,6 +105,7 @@ exports[`Body layout matches the snapshot for the default screen: default 1`] =
|
|
|
104
105
|
style={
|
|
105
106
|
[
|
|
106
107
|
{
|
|
108
|
+
"alignContent": "center",
|
|
107
109
|
"alignItems": "center",
|
|
108
110
|
"flexBasis": "auto",
|
|
109
111
|
"flexWrap": "wrap",
|
|
@@ -88,6 +88,7 @@ exports[`GetOutOfCheckoutModal component matches the snapshot 1`] = `
|
|
|
88
88
|
style={
|
|
89
89
|
[
|
|
90
90
|
{
|
|
91
|
+
"alignContent": "center",
|
|
91
92
|
"alignItems": "center",
|
|
92
93
|
"flexBasis": "auto",
|
|
93
94
|
"flexWrap": "wrap",
|
|
@@ -327,15 +328,19 @@ exports[`GetOutOfCheckoutModal component matches the snapshot 1`] = `
|
|
|
327
328
|
collapsable={false}
|
|
328
329
|
pointerEvents="none"
|
|
329
330
|
style={
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
331
|
+
[
|
|
332
|
+
{
|
|
333
|
+
"backgroundColor": "#716A6B",
|
|
334
|
+
"height": "300%",
|
|
335
|
+
"left": 0,
|
|
336
|
+
"opacity": 0.7,
|
|
337
|
+
"position": "absolute",
|
|
338
|
+
"top": 0,
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"width": "0%",
|
|
342
|
+
},
|
|
343
|
+
]
|
|
339
344
|
}
|
|
340
345
|
/>
|
|
341
346
|
<View
|
|
@@ -495,15 +500,19 @@ exports[`GetOutOfCheckoutModal component matches the snapshot 1`] = `
|
|
|
495
500
|
collapsable={false}
|
|
496
501
|
pointerEvents="none"
|
|
497
502
|
style={
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
503
|
+
[
|
|
504
|
+
{
|
|
505
|
+
"backgroundColor": "#B7B3B3",
|
|
506
|
+
"height": "300%",
|
|
507
|
+
"left": 0,
|
|
508
|
+
"opacity": 0.7,
|
|
509
|
+
"position": "absolute",
|
|
510
|
+
"top": 0,
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"width": "0%",
|
|
514
|
+
},
|
|
515
|
+
]
|
|
507
516
|
}
|
|
508
517
|
/>
|
|
509
518
|
<View
|
|
@@ -62,6 +62,7 @@ exports[`ItemActions component matches the snapshot 1`] = `
|
|
|
62
62
|
style={
|
|
63
63
|
[
|
|
64
64
|
{
|
|
65
|
+
"alignContent": "center",
|
|
65
66
|
"alignItems": "center",
|
|
66
67
|
"flexBasis": "auto",
|
|
67
68
|
"flexWrap": "wrap",
|
|
@@ -225,15 +226,19 @@ exports[`ItemActions component matches the snapshot 1`] = `
|
|
|
225
226
|
collapsable={false}
|
|
226
227
|
pointerEvents="none"
|
|
227
228
|
style={
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
229
|
+
[
|
|
230
|
+
{
|
|
231
|
+
"backgroundColor": "#B7B3B3",
|
|
232
|
+
"height": 48,
|
|
233
|
+
"left": 0,
|
|
234
|
+
"opacity": 0.7,
|
|
235
|
+
"position": "absolute",
|
|
236
|
+
"top": 0,
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"width": "0%",
|
|
240
|
+
},
|
|
241
|
+
]
|
|
237
242
|
}
|
|
238
243
|
/>
|
|
239
244
|
<View
|
|
@@ -393,15 +398,19 @@ exports[`ItemActions component matches the snapshot 1`] = `
|
|
|
393
398
|
collapsable={false}
|
|
394
399
|
pointerEvents="none"
|
|
395
400
|
style={
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
401
|
+
[
|
|
402
|
+
{
|
|
403
|
+
"backgroundColor": "#B7B3B3",
|
|
404
|
+
"height": 48,
|
|
405
|
+
"left": 0,
|
|
406
|
+
"opacity": 0.7,
|
|
407
|
+
"position": "absolute",
|
|
408
|
+
"top": 0,
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"width": "0%",
|
|
412
|
+
},
|
|
413
|
+
]
|
|
405
414
|
}
|
|
406
415
|
/>
|
|
407
416
|
<View
|
|
@@ -554,15 +563,19 @@ exports[`ItemActions component matches the snapshot 1`] = `
|
|
|
554
563
|
collapsable={false}
|
|
555
564
|
pointerEvents="none"
|
|
556
565
|
style={
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
+
[
|
|
567
|
+
{
|
|
568
|
+
"backgroundColor": "#716A6B",
|
|
569
|
+
"height": 48,
|
|
570
|
+
"left": 0,
|
|
571
|
+
"opacity": 0.7,
|
|
572
|
+
"position": "absolute",
|
|
573
|
+
"top": 0,
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"width": "0%",
|
|
577
|
+
},
|
|
578
|
+
]
|
|
566
579
|
}
|
|
567
580
|
/>
|
|
568
581
|
<View
|
|
@@ -662,6 +675,7 @@ exports[`ItemActions component matches the snapshot 1`] = `
|
|
|
662
675
|
style={
|
|
663
676
|
[
|
|
664
677
|
{
|
|
678
|
+
"alignContent": "center",
|
|
665
679
|
"alignItems": "center",
|
|
666
680
|
"flexBasis": "auto",
|
|
667
681
|
"flexWrap": "wrap",
|
|
@@ -156,16 +156,20 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
|
|
|
156
156
|
collapsable={false}
|
|
157
157
|
duration={1200}
|
|
158
158
|
style={
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
159
|
+
[
|
|
160
|
+
{
|
|
161
|
+
"height": "100%",
|
|
162
|
+
"width": "100%",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"left": 0,
|
|
166
|
+
"transform": [
|
|
167
|
+
{
|
|
168
|
+
"translateX": -375,
|
|
169
|
+
},
|
|
170
|
+
],
|
|
171
|
+
},
|
|
172
|
+
]
|
|
169
173
|
}
|
|
170
174
|
>
|
|
171
175
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -313,16 +317,20 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
|
|
|
313
317
|
collapsable={false}
|
|
314
318
|
duration={1200}
|
|
315
319
|
style={
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
320
|
+
[
|
|
321
|
+
{
|
|
322
|
+
"height": "100%",
|
|
323
|
+
"width": "100%",
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"left": 0,
|
|
327
|
+
"transform": [
|
|
328
|
+
{
|
|
329
|
+
"translateX": -375,
|
|
330
|
+
},
|
|
331
|
+
],
|
|
332
|
+
},
|
|
333
|
+
]
|
|
326
334
|
}
|
|
327
335
|
>
|
|
328
336
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -88,6 +88,7 @@ exports[`SizeWithoutStockModal component matches the snapshot 1`] = `
|
|
|
88
88
|
style={
|
|
89
89
|
[
|
|
90
90
|
{
|
|
91
|
+
"alignContent": "center",
|
|
91
92
|
"alignItems": "center",
|
|
92
93
|
"flexBasis": "auto",
|
|
93
94
|
"flexWrap": "wrap",
|
|
@@ -408,15 +409,19 @@ exports[`SizeWithoutStockModal component matches the snapshot 1`] = `
|
|
|
408
409
|
collapsable={false}
|
|
409
410
|
pointerEvents="none"
|
|
410
411
|
style={
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
412
|
+
[
|
|
413
|
+
{
|
|
414
|
+
"backgroundColor": "#716A6B",
|
|
415
|
+
"height": "300%",
|
|
416
|
+
"left": 0,
|
|
417
|
+
"opacity": 0.7,
|
|
418
|
+
"position": "absolute",
|
|
419
|
+
"top": 0,
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"width": "0%",
|
|
423
|
+
},
|
|
424
|
+
]
|
|
420
425
|
}
|
|
421
426
|
/>
|
|
422
427
|
<View
|
|
@@ -167,16 +167,20 @@ exports[`ItemActions component matches the snapshot for a KEPT checkoutItem 1`]
|
|
|
167
167
|
collapsable={false}
|
|
168
168
|
duration={1200}
|
|
169
169
|
style={
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
170
|
+
[
|
|
171
|
+
{
|
|
172
|
+
"height": "100%",
|
|
173
|
+
"width": "100%",
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"left": 0,
|
|
177
|
+
"transform": [
|
|
178
|
+
{
|
|
179
|
+
"translateX": -375,
|
|
180
|
+
},
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
]
|
|
180
184
|
}
|
|
181
185
|
>
|
|
182
186
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -324,16 +328,20 @@ exports[`ItemActions component matches the snapshot for a KEPT checkoutItem 1`]
|
|
|
324
328
|
collapsable={false}
|
|
325
329
|
duration={1200}
|
|
326
330
|
style={
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
331
|
+
[
|
|
332
|
+
{
|
|
333
|
+
"height": "100%",
|
|
334
|
+
"width": "100%",
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"left": 0,
|
|
338
|
+
"transform": [
|
|
339
|
+
{
|
|
340
|
+
"translateX": -375,
|
|
341
|
+
},
|
|
342
|
+
],
|
|
343
|
+
},
|
|
344
|
+
]
|
|
337
345
|
}
|
|
338
346
|
>
|
|
339
347
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -853,16 +861,20 @@ exports[`ItemActions component matches the snapshot for a REPLACED checkoutItem
|
|
|
853
861
|
collapsable={false}
|
|
854
862
|
duration={1200}
|
|
855
863
|
style={
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
864
|
+
[
|
|
865
|
+
{
|
|
866
|
+
"height": "100%",
|
|
867
|
+
"width": "100%",
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"left": 0,
|
|
871
|
+
"transform": [
|
|
872
|
+
{
|
|
873
|
+
"translateX": -375,
|
|
874
|
+
},
|
|
875
|
+
],
|
|
876
|
+
},
|
|
877
|
+
]
|
|
866
878
|
}
|
|
867
879
|
>
|
|
868
880
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -1010,16 +1022,20 @@ exports[`ItemActions component matches the snapshot for a REPLACED checkoutItem
|
|
|
1010
1022
|
collapsable={false}
|
|
1011
1023
|
duration={1200}
|
|
1012
1024
|
style={
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1025
|
+
[
|
|
1026
|
+
{
|
|
1027
|
+
"height": "100%",
|
|
1028
|
+
"width": "100%",
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"left": 0,
|
|
1032
|
+
"transform": [
|
|
1033
|
+
{
|
|
1034
|
+
"translateX": -375,
|
|
1035
|
+
},
|
|
1036
|
+
],
|
|
1037
|
+
},
|
|
1038
|
+
]
|
|
1023
1039
|
}
|
|
1024
1040
|
>
|
|
1025
1041
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -1539,16 +1555,20 @@ exports[`ItemActions component matches the snapshot for an INITIAL checkoutItem
|
|
|
1539
1555
|
collapsable={false}
|
|
1540
1556
|
duration={1200}
|
|
1541
1557
|
style={
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1558
|
+
[
|
|
1559
|
+
{
|
|
1560
|
+
"height": "100%",
|
|
1561
|
+
"width": "100%",
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"left": 0,
|
|
1565
|
+
"transform": [
|
|
1566
|
+
{
|
|
1567
|
+
"translateX": -375,
|
|
1568
|
+
},
|
|
1569
|
+
],
|
|
1570
|
+
},
|
|
1571
|
+
]
|
|
1552
1572
|
}
|
|
1553
1573
|
>
|
|
1554
1574
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -1696,16 +1716,20 @@ exports[`ItemActions component matches the snapshot for an INITIAL checkoutItem
|
|
|
1696
1716
|
collapsable={false}
|
|
1697
1717
|
duration={1200}
|
|
1698
1718
|
style={
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1719
|
+
[
|
|
1720
|
+
{
|
|
1721
|
+
"height": "100%",
|
|
1722
|
+
"width": "100%",
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"left": 0,
|
|
1726
|
+
"transform": [
|
|
1727
|
+
{
|
|
1728
|
+
"translateX": -375,
|
|
1729
|
+
},
|
|
1730
|
+
],
|
|
1731
|
+
},
|
|
1732
|
+
]
|
|
1709
1733
|
}
|
|
1710
1734
|
>
|
|
1711
1735
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -129,16 +129,20 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
129
129
|
collapsable={false}
|
|
130
130
|
duration={1200}
|
|
131
131
|
style={
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
132
|
+
[
|
|
133
|
+
{
|
|
134
|
+
"height": "100%",
|
|
135
|
+
"width": "100%",
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"left": 0,
|
|
139
|
+
"transform": [
|
|
140
|
+
{
|
|
141
|
+
"translateX": -375,
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
},
|
|
145
|
+
]
|
|
142
146
|
}
|
|
143
147
|
>
|
|
144
148
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -485,16 +489,20 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
485
489
|
collapsable={false}
|
|
486
490
|
duration={1200}
|
|
487
491
|
style={
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
492
|
+
[
|
|
493
|
+
{
|
|
494
|
+
"height": "100%",
|
|
495
|
+
"width": "100%",
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"left": 0,
|
|
499
|
+
"transform": [
|
|
500
|
+
{
|
|
501
|
+
"translateX": -375,
|
|
502
|
+
},
|
|
503
|
+
],
|
|
504
|
+
},
|
|
505
|
+
]
|
|
498
506
|
}
|
|
499
507
|
>
|
|
500
508
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -296,15 +296,19 @@ exports[`Pricing component matches the snapshot for collaped pricing: collapsed
|
|
|
296
296
|
collapsable={false}
|
|
297
297
|
pointerEvents="none"
|
|
298
298
|
style={
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
299
|
+
[
|
|
300
|
+
{
|
|
301
|
+
"backgroundColor": "#716A6B",
|
|
302
|
+
"height": 48,
|
|
303
|
+
"left": 0,
|
|
304
|
+
"opacity": 0.7,
|
|
305
|
+
"position": "absolute",
|
|
306
|
+
"top": 0,
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"width": "0%",
|
|
310
|
+
},
|
|
311
|
+
]
|
|
308
312
|
}
|
|
309
313
|
/>
|
|
310
314
|
<View
|
|
@@ -644,15 +648,19 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
|
|
|
644
648
|
collapsable={false}
|
|
645
649
|
pointerEvents="none"
|
|
646
650
|
style={
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
651
|
+
[
|
|
652
|
+
{
|
|
653
|
+
"backgroundColor": "#716A6B",
|
|
654
|
+
"height": 48,
|
|
655
|
+
"left": 0,
|
|
656
|
+
"opacity": 0.7,
|
|
657
|
+
"position": "absolute",
|
|
658
|
+
"top": 0,
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"width": "0%",
|
|
662
|
+
},
|
|
663
|
+
]
|
|
656
664
|
}
|
|
657
665
|
/>
|
|
658
666
|
<View
|
|
@@ -400,16 +400,20 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
400
400
|
collapsable={false}
|
|
401
401
|
duration={1200}
|
|
402
402
|
style={
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
403
|
+
[
|
|
404
|
+
{
|
|
405
|
+
"height": "100%",
|
|
406
|
+
"width": "100%",
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"left": 0,
|
|
410
|
+
"transform": [
|
|
411
|
+
{
|
|
412
|
+
"translateX": -375,
|
|
413
|
+
},
|
|
414
|
+
],
|
|
415
|
+
},
|
|
416
|
+
]
|
|
413
417
|
}
|
|
414
418
|
>
|
|
415
419
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -728,16 +732,20 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
728
732
|
collapsable={false}
|
|
729
733
|
duration={1200}
|
|
730
734
|
style={
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
735
|
+
[
|
|
736
|
+
{
|
|
737
|
+
"height": "100%",
|
|
738
|
+
"width": "100%",
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"left": 0,
|
|
742
|
+
"transform": [
|
|
743
|
+
{
|
|
744
|
+
"translateX": -375,
|
|
745
|
+
},
|
|
746
|
+
],
|
|
747
|
+
},
|
|
748
|
+
]
|
|
741
749
|
}
|
|
742
750
|
>
|
|
743
751
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -1104,16 +1112,20 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1104
1112
|
collapsable={false}
|
|
1105
1113
|
duration={1200}
|
|
1106
1114
|
style={
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1115
|
+
[
|
|
1116
|
+
{
|
|
1117
|
+
"height": "100%",
|
|
1118
|
+
"width": "100%",
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"left": 0,
|
|
1122
|
+
"transform": [
|
|
1123
|
+
{
|
|
1124
|
+
"translateX": -375,
|
|
1125
|
+
},
|
|
1126
|
+
],
|
|
1127
|
+
},
|
|
1128
|
+
]
|
|
1117
1129
|
}
|
|
1118
1130
|
>
|
|
1119
1131
|
<ViewManagerAdapter_ExpoLinearGradient
|
|
@@ -1432,16 +1444,20 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1432
1444
|
collapsable={false}
|
|
1433
1445
|
duration={1200}
|
|
1434
1446
|
style={
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1447
|
+
[
|
|
1448
|
+
{
|
|
1449
|
+
"height": "100%",
|
|
1450
|
+
"width": "100%",
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"left": 0,
|
|
1454
|
+
"transform": [
|
|
1455
|
+
{
|
|
1456
|
+
"translateX": -375,
|
|
1457
|
+
},
|
|
1458
|
+
],
|
|
1459
|
+
},
|
|
1460
|
+
]
|
|
1445
1461
|
}
|
|
1446
1462
|
>
|
|
1447
1463
|
<ViewManagerAdapter_ExpoLinearGradient
|