@developer_tribe/react-builder 1.2.39 → 1.2.41
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/attributes-editor/FallbackLocalizationField.d.ts +6 -0
- package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +1 -40
- package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +1 -1
- package/dist/build-components/patterns.generated.d.ts +21 -344
- package/dist/components/BuilderProvider.d.ts +1 -0
- package/dist/components/DeviceButton.d.ts +4 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.d.ts +8 -0
- package/dist/index.web.esm.js +4 -4
- package/dist/index.web.esm.js.map +1 -1
- package/dist/mockOS/context/MockOSContext.d.ts +3 -1
- package/dist/product-base/types.d.ts +3 -0
- package/dist/size-matters/index.d.ts +1 -1
- package/dist/store.d.ts +31 -0
- package/dist/styles.css +1 -1
- package/dist/types/Device.d.ts +5 -0
- package/dist/types/PreviewConfig.d.ts +1 -1
- package/dist/utils/extractTextStyle/extractTextStyle.d.ts +1 -0
- package/dist/utils/extractViewStyle/extractViewStyle.d.ts +1 -0
- package/package.json +1 -1
- package/scripts/prebuild/assets/prompt_scheme.md +7 -0
- package/scripts/public/bin.js +0 -0
- package/src/DeviceMockFrame.tsx +8 -0
- package/src/RenderPage.tsx +3 -0
- package/src/assets/devices.json +747 -183
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/assets/samples/carousel-sample.json +30 -26
- package/src/assets/samples/paywall-1.json +31 -31
- package/src/assets/samples/paywall-2.json +28 -28
- package/src/assets/samples/paywall-app-delete-offer.json +29 -29
- package/src/assets/samples/paywall-app-open-offer.json +29 -29
- package/src/assets/samples/paywall-back-offer.json +28 -28
- package/src/assets/samples/paywall-notification-offer.json +28 -28
- package/src/assets/samples/simple-1.json +4 -4
- package/src/assets/samples/simple-2.json +25 -25
- package/src/assets/samples/unmigrated-builder-1.1.1.json +7 -7
- package/src/assets/samples/unmigrated-builder1.json +4 -4
- package/src/assets/samples/unvalidated-builder1.json +4 -4
- package/src/assets/samples/unvalidated-crash1.json +2 -2
- package/src/assets/samples/unvalidated-crashcomponent1.json +2 -2
- package/src/assets/samples/vpn-onboard-1.json +30 -30
- package/src/assets/samples/vpn-onboard-2.json +30 -30
- package/src/assets/samples/vpn-onboard-3.json +27 -27
- package/src/assets/samples/vpn-onboard-4.json +27 -27
- package/src/assets/samples/vpn-onboard-5.json +40 -40
- package/src/assets/samples/vpn-onboard-6.json +30 -30
- package/src/assets/samples/vpn-onboard-7.json +29 -29
- package/src/attribute-analyser/style/web/useExtractImageStyle.ts +8 -3
- package/src/attribute-analyser/style/web/useExtractViewStyle.ts +8 -3
- package/src/attributes-editor/AttributesEditorView.tsx +17 -6
- package/src/attributes-editor/FallbackLocalizationField.tsx +384 -0
- package/src/build-components/CarouselDots/CarouselDots.tsx +8 -3
- package/src/build-components/Main/Main.tsx +3 -1
- package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +15 -1
- package/src/build-components/NavigationBarColor/NavigationBarColorProps.generated.ts +1 -52
- package/src/build-components/NavigationBarColor/pattern.json +11 -2
- package/src/build-components/OnboardDot/OnboardDot.tsx +3 -2
- package/src/build-components/PaywallCloseButton/pattern.json +1 -0
- package/src/build-components/StatusBarColor/StatusBarColor.tsx +15 -1
- package/src/build-components/StatusBarColor/StatusBarColorProps.generated.ts +1 -1
- package/src/build-components/StatusBarColor/pattern.json +10 -1
- package/src/build-components/patterns.generated.ts +25 -364
- package/src/components/BottomBar.tsx +135 -31
- package/src/components/BuilderProvider.tsx +1 -0
- package/src/components/DeviceButton.tsx +35 -0
- package/src/components/EditorHeader.tsx +16 -1
- package/src/hooks/useLocalize.ts +3 -1
- package/src/hooks/useSafeAreaViewStyle.ts +24 -4
- package/src/index.web.ts +19 -0
- package/src/mockOS/context/MockOSContext.tsx +41 -13
- package/src/modals/DeviceSelectorModal.tsx +94 -10
- package/src/modals/InspectModal.tsx +112 -4
- package/src/product-base/buildPaywallLocalizationParams.ts +3 -0
- package/src/product-base/extractAndroidParams.ts +38 -8
- package/src/product-base/types.ts +3 -0
- package/src/size-matters/index.ts +15 -9
- package/src/store.ts +66 -0
- package/src/styles/modals/_product-edit-modal.scss +2 -2
- package/src/types/Device.ts +5 -0
- package/src/types/PreviewConfig.ts +6 -0
- package/src/utils/analyseNodeByPatterns.ts +6 -2
- package/src/utils/extractTextStyle/extractTextStyle.ts +3 -1
- package/src/utils/extractTextStyle/extractTextStyleNative.ts +1 -1
- package/src/utils/extractViewStyle/extractViewStyle.ts +19 -5
- package/src/utils/extractViewStyle/extractViewStyleNative.ts +5 -1
- package/src/utils/replaceLocalizationParams.ts +5 -7
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"styles": {
|
|
14
14
|
"paddingBottom": 16
|
|
15
15
|
},
|
|
16
|
-
"testID": "Main-test-id"
|
|
16
|
+
"testID": "Main-test-id-1"
|
|
17
17
|
},
|
|
18
18
|
"children": [
|
|
19
19
|
{
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"styles": {
|
|
25
25
|
"backgroundColor": "THEME_COLORS.BACKGROUND"
|
|
26
26
|
},
|
|
27
|
-
"testID": "StatusBarColor-test-id"
|
|
27
|
+
"testID": "StatusBarColor-test-id-1"
|
|
28
28
|
},
|
|
29
29
|
"children": null
|
|
30
30
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"styles": {
|
|
37
37
|
"backgroundColor": "THEME_COLORS.BACKGROUND"
|
|
38
38
|
},
|
|
39
|
-
"testID": "NavigationBarColor-test-id"
|
|
39
|
+
"testID": "NavigationBarColor-test-id-1"
|
|
40
40
|
},
|
|
41
41
|
"children": null
|
|
42
42
|
},
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"textAlign": "center",
|
|
61
61
|
"marginTop": 40
|
|
62
62
|
},
|
|
63
|
-
"testID": "OnboardTitle-test-id"
|
|
63
|
+
"testID": "OnboardTitle-test-id-1"
|
|
64
64
|
},
|
|
65
65
|
"children": "base.onboard.title.one-page"
|
|
66
66
|
},
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"styles": {
|
|
73
73
|
"height": 350
|
|
74
74
|
},
|
|
75
|
-
"testID": "OnboardImage-test-id",
|
|
75
|
+
"testID": "OnboardImage-test-id-1",
|
|
76
76
|
"fetchStrategy": "highIfItsAppLaunch"
|
|
77
77
|
}
|
|
78
78
|
},
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"fontSize": 16,
|
|
87
87
|
"textAlign": "center"
|
|
88
88
|
},
|
|
89
|
-
"testID": "OnboardSubtitle-test-id"
|
|
89
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
90
90
|
},
|
|
91
91
|
"children": "base.onboard.subtitle.one-page"
|
|
92
92
|
}
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"attributes": {
|
|
95
95
|
"description": "Onboarding sayfası. (#1)",
|
|
96
96
|
"title": "OnboardItem 1",
|
|
97
|
-
"testID": "OnboardItem-test-id"
|
|
97
|
+
"testID": "OnboardItem-test-id-1"
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"textAlign": "center",
|
|
112
112
|
"marginTop": 40
|
|
113
113
|
},
|
|
114
|
-
"testID": "OnboardTitle-test-id"
|
|
114
|
+
"testID": "OnboardTitle-test-id-2"
|
|
115
115
|
},
|
|
116
116
|
"children": "base.onboard.title.two-page"
|
|
117
117
|
},
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"styles": {
|
|
124
124
|
"height": 350
|
|
125
125
|
},
|
|
126
|
-
"testID": "OnboardImage-test-id",
|
|
126
|
+
"testID": "OnboardImage-test-id-2",
|
|
127
127
|
"fetchStrategy": "normal"
|
|
128
128
|
}
|
|
129
129
|
},
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"fontSize": 16,
|
|
138
138
|
"textAlign": "center"
|
|
139
139
|
},
|
|
140
|
-
"testID": "OnboardSubtitle-test-id"
|
|
140
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
141
141
|
},
|
|
142
142
|
"children": "base.onboard.subtitle.two-page"
|
|
143
143
|
}
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"attributes": {
|
|
146
146
|
"description": "Onboarding sayfası. (#2)",
|
|
147
147
|
"title": "OnboardItem 2",
|
|
148
|
-
"testID": "OnboardItem-test-id"
|
|
148
|
+
"testID": "OnboardItem-test-id-2"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
{
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"textAlign": "center",
|
|
163
163
|
"marginTop": 40
|
|
164
164
|
},
|
|
165
|
-
"testID": "OnboardTitle-test-id"
|
|
165
|
+
"testID": "OnboardTitle-test-id-3"
|
|
166
166
|
},
|
|
167
167
|
"children": "base.onboard.title.three-page"
|
|
168
168
|
},
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"styles": {
|
|
175
175
|
"height": 350
|
|
176
176
|
},
|
|
177
|
-
"testID": "OnboardImage-test-id",
|
|
177
|
+
"testID": "OnboardImage-test-id-3",
|
|
178
178
|
"fetchStrategy": "normal"
|
|
179
179
|
}
|
|
180
180
|
},
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"fontSize": 16,
|
|
189
189
|
"textAlign": "center"
|
|
190
190
|
},
|
|
191
|
-
"testID": "OnboardSubtitle-test-id"
|
|
191
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
192
192
|
},
|
|
193
193
|
"children": "base.onboard.subtitle.three-page"
|
|
194
194
|
}
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"attributes": {
|
|
197
197
|
"description": "Onboarding sayfası. (#3)",
|
|
198
198
|
"title": "OnboardItem 3",
|
|
199
|
-
"testID": "OnboardItem-test-id"
|
|
199
|
+
"testID": "OnboardItem-test-id-3"
|
|
200
200
|
}
|
|
201
201
|
},
|
|
202
202
|
{
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"textAlign": "center",
|
|
214
214
|
"marginTop": 40
|
|
215
215
|
},
|
|
216
|
-
"testID": "OnboardTitle-test-id"
|
|
216
|
+
"testID": "OnboardTitle-test-id-4"
|
|
217
217
|
},
|
|
218
218
|
"children": "base.onboard.title.four-page"
|
|
219
219
|
},
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"styles": {
|
|
226
226
|
"height": 350
|
|
227
227
|
},
|
|
228
|
-
"testID": "OnboardImage-test-id",
|
|
228
|
+
"testID": "OnboardImage-test-id-4",
|
|
229
229
|
"fetchStrategy": "normal"
|
|
230
230
|
}
|
|
231
231
|
},
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"fontSize": 16,
|
|
240
240
|
"textAlign": "center"
|
|
241
241
|
},
|
|
242
|
-
"testID": "OnboardSubtitle-test-id"
|
|
242
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
243
243
|
},
|
|
244
244
|
"children": "base.onboard.subtitle.four-page"
|
|
245
245
|
}
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"attributes": {
|
|
248
248
|
"description": "Onboarding sayfası. (#4)",
|
|
249
249
|
"title": "OnboardItem 4",
|
|
250
|
-
"testID": "OnboardItem-test-id"
|
|
250
|
+
"testID": "OnboardItem-test-id-4"
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
],
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"styles": {
|
|
258
258
|
"flex": 1
|
|
259
259
|
},
|
|
260
|
-
"testID": "Onboard-test-id"
|
|
260
|
+
"testID": "Onboard-test-id-1"
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
{
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"styles": {
|
|
272
272
|
"paddingVertical": 12
|
|
273
273
|
},
|
|
274
|
-
"testID": "OnboardDot-test-id"
|
|
274
|
+
"testID": "OnboardDot-test-id-1"
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
{
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"height": 2,
|
|
285
285
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
286
286
|
},
|
|
287
|
-
"testID": "Separator-test-id"
|
|
287
|
+
"testID": "Separator-test-id-1"
|
|
288
288
|
}
|
|
289
289
|
},
|
|
290
290
|
{
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"marginVertical": 12,
|
|
301
301
|
"flexShrink": 0
|
|
302
302
|
},
|
|
303
|
-
"testID": "OnboardButtons-test-id"
|
|
303
|
+
"testID": "OnboardButtons-test-id-1"
|
|
304
304
|
},
|
|
305
305
|
"children": [
|
|
306
306
|
{
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
"marginVertical": 12,
|
|
357
357
|
"flexShrink": 0
|
|
358
358
|
},
|
|
359
|
-
"testID": "OnboardButtons-test-id"
|
|
359
|
+
"testID": "OnboardButtons-test-id-2"
|
|
360
360
|
},
|
|
361
361
|
"children": [
|
|
362
362
|
{
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
"marginVertical": 12,
|
|
421
421
|
"flexShrink": 0
|
|
422
422
|
},
|
|
423
|
-
"testID": "OnboardButtons-test-id"
|
|
423
|
+
"testID": "OnboardButtons-test-id-3"
|
|
424
424
|
},
|
|
425
425
|
"children": [
|
|
426
426
|
{
|
|
@@ -480,7 +480,7 @@
|
|
|
480
480
|
"marginVertical": 12,
|
|
481
481
|
"flexShrink": 0
|
|
482
482
|
},
|
|
483
|
-
"testID": "OnboardButtons-test-id"
|
|
483
|
+
"testID": "OnboardButtons-test-id-4"
|
|
484
484
|
},
|
|
485
485
|
"children": [
|
|
486
486
|
{
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
"marginHorizontal": 25,
|
|
517
517
|
"flexShrink": 0
|
|
518
518
|
},
|
|
519
|
-
"testID": "View-test-id"
|
|
519
|
+
"testID": "View-test-id-1"
|
|
520
520
|
},
|
|
521
521
|
"children": [
|
|
522
522
|
{
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
"gap": 8,
|
|
534
534
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
535
535
|
},
|
|
536
|
-
"testID": "OnboardFooter-test-id"
|
|
536
|
+
"testID": "OnboardFooter-test-id-1"
|
|
537
537
|
}
|
|
538
538
|
}
|
|
539
539
|
]
|
|
@@ -543,12 +543,12 @@
|
|
|
543
543
|
"theme": "dark",
|
|
544
544
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
545
545
|
"title": "OnboardProvider 1",
|
|
546
|
-
"testID": "OnboardProvider-test-id"
|
|
546
|
+
"testID": "OnboardProvider-test-id-1"
|
|
547
547
|
}
|
|
548
548
|
}
|
|
549
549
|
]
|
|
550
550
|
},
|
|
551
551
|
"attributes": {
|
|
552
|
-
"testID": "onboard-test-id"
|
|
552
|
+
"testID": "onboard-test-id-1"
|
|
553
553
|
}
|
|
554
554
|
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"styles": {
|
|
14
14
|
"paddingBottom": 16
|
|
15
15
|
},
|
|
16
|
-
"testID": "Main-test-id"
|
|
16
|
+
"testID": "Main-test-id-1"
|
|
17
17
|
},
|
|
18
18
|
"children": [
|
|
19
19
|
{
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"styles": {
|
|
25
25
|
"backgroundColor": "THEME_COLORS.BACKGROUND"
|
|
26
26
|
},
|
|
27
|
-
"testID": "StatusBarColor-test-id"
|
|
27
|
+
"testID": "StatusBarColor-test-id-1"
|
|
28
28
|
},
|
|
29
29
|
"children": null
|
|
30
30
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"styles": {
|
|
37
37
|
"backgroundColor": "THEME_COLORS.BACKGROUND"
|
|
38
38
|
},
|
|
39
|
-
"testID": "NavigationBarColor-test-id"
|
|
39
|
+
"testID": "NavigationBarColor-test-id-1"
|
|
40
40
|
},
|
|
41
41
|
"children": null
|
|
42
42
|
},
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"textAlign": "center",
|
|
61
61
|
"marginTop": 40
|
|
62
62
|
},
|
|
63
|
-
"testID": "OnboardTitle-test-id"
|
|
63
|
+
"testID": "OnboardTitle-test-id-1"
|
|
64
64
|
},
|
|
65
65
|
"children": "base.onboard.title.one-page"
|
|
66
66
|
},
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"styles": {
|
|
73
73
|
"height": 350
|
|
74
74
|
},
|
|
75
|
-
"testID": "OnboardImage-test-id",
|
|
75
|
+
"testID": "OnboardImage-test-id-1",
|
|
76
76
|
"fetchStrategy": "highIfItsAppLaunch"
|
|
77
77
|
}
|
|
78
78
|
},
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"fontSize": 16,
|
|
87
87
|
"textAlign": "center"
|
|
88
88
|
},
|
|
89
|
-
"testID": "OnboardSubtitle-test-id"
|
|
89
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
90
90
|
},
|
|
91
91
|
"children": "base.onboard.subtitle.one-page"
|
|
92
92
|
}
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"attributes": {
|
|
95
95
|
"description": "Onboarding sayfası. (#1)",
|
|
96
96
|
"title": "OnboardItem 1",
|
|
97
|
-
"testID": "OnboardItem-test-id"
|
|
97
|
+
"testID": "OnboardItem-test-id-1"
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"textAlign": "center",
|
|
112
112
|
"marginTop": 40
|
|
113
113
|
},
|
|
114
|
-
"testID": "OnboardTitle-test-id"
|
|
114
|
+
"testID": "OnboardTitle-test-id-2"
|
|
115
115
|
},
|
|
116
116
|
"children": "base.onboard.title.two-page"
|
|
117
117
|
},
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"styles": {
|
|
124
124
|
"height": 350
|
|
125
125
|
},
|
|
126
|
-
"testID": "OnboardImage-test-id",
|
|
126
|
+
"testID": "OnboardImage-test-id-2",
|
|
127
127
|
"fetchStrategy": "normal"
|
|
128
128
|
}
|
|
129
129
|
},
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"fontSize": 16,
|
|
138
138
|
"textAlign": "center"
|
|
139
139
|
},
|
|
140
|
-
"testID": "OnboardSubtitle-test-id"
|
|
140
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
141
141
|
},
|
|
142
142
|
"children": "base.onboard.subtitle.two-page"
|
|
143
143
|
}
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"attributes": {
|
|
146
146
|
"description": "Onboarding sayfası. (#2)",
|
|
147
147
|
"title": "OnboardItem 2",
|
|
148
|
-
"testID": "OnboardItem-test-id"
|
|
148
|
+
"testID": "OnboardItem-test-id-2"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
{
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"textAlign": "center",
|
|
163
163
|
"marginTop": 40
|
|
164
164
|
},
|
|
165
|
-
"testID": "OnboardTitle-test-id"
|
|
165
|
+
"testID": "OnboardTitle-test-id-3"
|
|
166
166
|
},
|
|
167
167
|
"children": "base.onboard.title.three-page"
|
|
168
168
|
},
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"styles": {
|
|
175
175
|
"height": 350
|
|
176
176
|
},
|
|
177
|
-
"testID": "OnboardImage-test-id",
|
|
177
|
+
"testID": "OnboardImage-test-id-3",
|
|
178
178
|
"fetchStrategy": "normal"
|
|
179
179
|
}
|
|
180
180
|
},
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"fontSize": 16,
|
|
189
189
|
"textAlign": "center"
|
|
190
190
|
},
|
|
191
|
-
"testID": "OnboardSubtitle-test-id"
|
|
191
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
192
192
|
},
|
|
193
193
|
"children": "base.onboard.subtitle.three-page"
|
|
194
194
|
}
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"attributes": {
|
|
197
197
|
"description": "Onboarding sayfası. (#3)",
|
|
198
198
|
"title": "OnboardItem 3",
|
|
199
|
-
"testID": "OnboardItem-test-id"
|
|
199
|
+
"testID": "OnboardItem-test-id-3"
|
|
200
200
|
}
|
|
201
201
|
},
|
|
202
202
|
{
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"textAlign": "center",
|
|
214
214
|
"marginTop": 40
|
|
215
215
|
},
|
|
216
|
-
"testID": "OnboardTitle-test-id"
|
|
216
|
+
"testID": "OnboardTitle-test-id-4"
|
|
217
217
|
},
|
|
218
218
|
"children": "base.onboard.title.four-page"
|
|
219
219
|
},
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"styles": {
|
|
226
226
|
"height": 350
|
|
227
227
|
},
|
|
228
|
-
"testID": "OnboardImage-test-id",
|
|
228
|
+
"testID": "OnboardImage-test-id-4",
|
|
229
229
|
"fetchStrategy": "normal"
|
|
230
230
|
}
|
|
231
231
|
},
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"fontSize": 16,
|
|
240
240
|
"textAlign": "center"
|
|
241
241
|
},
|
|
242
|
-
"testID": "OnboardSubtitle-test-id"
|
|
242
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
243
243
|
},
|
|
244
244
|
"children": "base.onboard.subtitle.four-page"
|
|
245
245
|
}
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"attributes": {
|
|
248
248
|
"description": "Onboarding sayfası. (#4)",
|
|
249
249
|
"title": "OnboardItem 4",
|
|
250
|
-
"testID": "OnboardItem-test-id"
|
|
250
|
+
"testID": "OnboardItem-test-id-4"
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
],
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"styles": {
|
|
258
258
|
"flex": 1
|
|
259
259
|
},
|
|
260
|
-
"testID": "Onboard-test-id"
|
|
260
|
+
"testID": "Onboard-test-id-1"
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
{
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"styles": {
|
|
272
272
|
"paddingVertical": 12
|
|
273
273
|
},
|
|
274
|
-
"testID": "OnboardDot-test-id"
|
|
274
|
+
"testID": "OnboardDot-test-id-1"
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
{
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"height": 2,
|
|
285
285
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
286
286
|
},
|
|
287
|
-
"testID": "Separator-test-id"
|
|
287
|
+
"testID": "Separator-test-id-1"
|
|
288
288
|
}
|
|
289
289
|
},
|
|
290
290
|
{
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"marginVertical": 12,
|
|
301
301
|
"flexShrink": 0
|
|
302
302
|
},
|
|
303
|
-
"testID": "OnboardButtons-test-id"
|
|
303
|
+
"testID": "OnboardButtons-test-id-1"
|
|
304
304
|
},
|
|
305
305
|
"children": [
|
|
306
306
|
{
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
"marginVertical": 12,
|
|
360
360
|
"flexShrink": 0
|
|
361
361
|
},
|
|
362
|
-
"testID": "OnboardButtons-test-id"
|
|
362
|
+
"testID": "OnboardButtons-test-id-2"
|
|
363
363
|
},
|
|
364
364
|
"children": [
|
|
365
365
|
{
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
"marginVertical": 12,
|
|
424
424
|
"flexShrink": 0
|
|
425
425
|
},
|
|
426
|
-
"testID": "OnboardButtons-test-id"
|
|
426
|
+
"testID": "OnboardButtons-test-id-3"
|
|
427
427
|
},
|
|
428
428
|
"children": [
|
|
429
429
|
{
|
|
@@ -483,7 +483,7 @@
|
|
|
483
483
|
"marginVertical": 12,
|
|
484
484
|
"flexShrink": 0
|
|
485
485
|
},
|
|
486
|
-
"testID": "OnboardButtons-test-id"
|
|
486
|
+
"testID": "OnboardButtons-test-id-4"
|
|
487
487
|
},
|
|
488
488
|
"children": [
|
|
489
489
|
{
|
|
@@ -519,7 +519,7 @@
|
|
|
519
519
|
"marginHorizontal": 25,
|
|
520
520
|
"flexShrink": 0
|
|
521
521
|
},
|
|
522
|
-
"testID": "View-test-id"
|
|
522
|
+
"testID": "View-test-id-1"
|
|
523
523
|
},
|
|
524
524
|
"children": [
|
|
525
525
|
{
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
"gap": 8,
|
|
537
537
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
538
538
|
},
|
|
539
|
-
"testID": "OnboardFooter-test-id"
|
|
539
|
+
"testID": "OnboardFooter-test-id-1"
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
]
|
|
@@ -546,12 +546,12 @@
|
|
|
546
546
|
"theme": "light",
|
|
547
547
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
548
548
|
"title": "OnboardProvider 1",
|
|
549
|
-
"testID": "OnboardProvider-test-id"
|
|
549
|
+
"testID": "OnboardProvider-test-id-1"
|
|
550
550
|
}
|
|
551
551
|
}
|
|
552
552
|
]
|
|
553
553
|
},
|
|
554
554
|
"attributes": {
|
|
555
|
-
"testID": "onboard-test-id"
|
|
555
|
+
"testID": "onboard-test-id-1"
|
|
556
556
|
}
|
|
557
557
|
}
|