@developer_tribe/react-builder 1.2.38 → 1.2.40
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/build-components/BIcon/BIconProps.generated.d.ts +1 -1
- package/dist/build-components/CountDown/CountDownProps.generated.d.ts +1 -1
- package/dist/build-components/Image/ImageProps.generated.d.ts +2 -0
- package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +1 -40
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -1
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +3 -1
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -1
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -1
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +1 -1
- package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +1 -1
- package/dist/build-components/Pricing/PricingProps.generated.d.ts +1 -1
- package/dist/build-components/Promo/PromoProps.generated.d.ts +1 -1
- package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +1 -1
- package/dist/build-components/patterns.generated.d.ts +51 -356
- 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.esm.js +4 -4
- package/dist/index.web.esm.js.map +1 -1
- package/dist/mockOS/context/MockOSContext.d.ts +3 -1
- package/dist/size-matters/index.d.ts +1 -1
- package/dist/store.d.ts +6 -0
- package/dist/styles.css +1 -1
- package/dist/types/Device.d.ts +5 -0
- 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/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 +30 -30
- package/src/assets/samples/paywall-2.json +26 -26
- package/src/assets/samples/paywall-app-delete-offer.json +27 -27
- package/src/assets/samples/paywall-app-open-offer.json +27 -27
- package/src/assets/samples/paywall-back-offer.json +27 -27
- package/src/assets/samples/paywall-notification-offer.json +27 -27
- 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 +34 -30
- package/src/assets/samples/vpn-onboard-2.json +34 -30
- package/src/assets/samples/vpn-onboard-3.json +28 -27
- package/src/assets/samples/vpn-onboard-4.json +28 -27
- package/src/assets/samples/vpn-onboard-5.json +46 -40
- package/src/assets/samples/vpn-onboard-6.json +34 -30
- package/src/assets/samples/vpn-onboard-7.json +33 -29
- package/src/attribute-analyser/style/web/useExtractImageStyle.ts +8 -3
- package/src/attribute-analyser/style/web/useExtractViewStyle.ts +8 -3
- package/src/build-components/BIcon/BIconProps.generated.ts +1 -1
- package/src/build-components/BIcon/pattern.json +1 -2
- package/src/build-components/BackgroundImage/pattern.json +1 -2
- package/src/build-components/Button/pattern.json +1 -2
- package/src/build-components/Carousel/pattern.json +1 -2
- package/src/build-components/CarouselButtons/pattern.json +1 -2
- package/src/build-components/CarouselDots/CarouselDots.tsx +8 -3
- package/src/build-components/CarouselDots/pattern.json +1 -2
- package/src/build-components/CarouselItem/pattern.json +1 -4
- package/src/build-components/CarouselProvider/pattern.json +0 -3
- package/src/build-components/CountDown/CountDownProps.generated.ts +1 -1
- package/src/build-components/CountDown/pattern.json +1 -2
- package/src/build-components/Image/ImageProps.generated.ts +6 -0
- package/src/build-components/Image/pattern.json +10 -2
- package/src/build-components/Main/Main.tsx +3 -1
- package/src/build-components/Main/pattern.json +1 -2
- 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 +10 -2
- package/src/build-components/Onboard/pattern.json +1 -4
- package/src/build-components/OnboardButtons/pattern.json +1 -2
- package/src/build-components/OnboardDot/OnboardDot.tsx +3 -2
- package/src/build-components/OnboardDot/pattern.json +1 -2
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -1
- package/src/build-components/OnboardFooter/pattern.json +1 -2
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +7 -1
- package/src/build-components/OnboardImage/pattern.json +1 -2
- package/src/build-components/OnboardItem/pattern.json +1 -2
- package/src/build-components/OnboardProvider/pattern.json +1 -2
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -1
- package/src/build-components/OnboardSubtitle/pattern.json +1 -4
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -1
- package/src/build-components/OnboardTitle/pattern.json +1 -4
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +1 -1
- package/src/build-components/PaywallBackground/pattern.json +0 -3
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -1
- package/src/build-components/PaywallCloseButton/pattern.json +2 -4
- package/src/build-components/PaywallOptions/pattern.json +1 -4
- package/src/build-components/PaywallProvider/pattern.json +1 -2
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +1 -1
- package/src/build-components/PaywallSubscribeButton/pattern.json +1 -4
- package/src/build-components/PriceTag/PriceTagProps.generated.ts +1 -1
- package/src/build-components/PriceTag/pattern.json +1 -2
- package/src/build-components/Pricing/PricingProps.generated.ts +1 -1
- package/src/build-components/Pricing/pattern.json +1 -4
- package/src/build-components/Promo/PromoProps.generated.ts +1 -1
- package/src/build-components/Promo/pattern.json +1 -4
- package/src/build-components/RadioButton/pattern.json +1 -2
- 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/Text/pattern.json +1 -2
- package/src/build-components/patterns.generated.ts +57 -376
- package/src/components/BuilderProvider.tsx +1 -0
- package/src/components/DeviceButton.tsx +35 -0
- package/src/components/EditorHeader.tsx +16 -1
- package/src/hooks/useSafeAreaViewStyle.ts +24 -4
- package/src/mockOS/context/MockOSContext.tsx +41 -13
- package/src/modals/DeviceSelectorModal.tsx +94 -10
- package/src/product-base/extractAndroidParams.ts +38 -8
- package/src/size-matters/index.ts +15 -9
- package/src/store.ts +27 -0
- package/src/styles/modals/_product-edit-modal.scss +2 -2
- package/src/types/Device.ts +5 -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
|
},
|
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
"styles": {
|
|
60
60
|
"height": 400
|
|
61
61
|
},
|
|
62
|
-
"testID": "OnboardImage-test-id"
|
|
62
|
+
"testID": "OnboardImage-test-id-1",
|
|
63
|
+
"fetchStrategy": "highIfItsAppLaunch"
|
|
63
64
|
}
|
|
64
65
|
},
|
|
65
66
|
{
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"styles": {
|
|
71
72
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
72
73
|
},
|
|
73
|
-
"testID": "OnboardTitle-test-id"
|
|
74
|
+
"testID": "OnboardTitle-test-id-1"
|
|
74
75
|
},
|
|
75
76
|
"children": "base.onboard.title.one-page"
|
|
76
77
|
},
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"styles": {
|
|
83
84
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
84
85
|
},
|
|
85
|
-
"testID": "OnboardSubtitle-test-id"
|
|
86
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
86
87
|
},
|
|
87
88
|
"children": "base.onboard.subtitle.one-page"
|
|
88
89
|
}
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
"attributes": {
|
|
91
92
|
"description": "Onboarding sayfası. (#1)",
|
|
92
93
|
"title": "OnboardItem 1",
|
|
93
|
-
"testID": "OnboardItem-test-id"
|
|
94
|
+
"testID": "OnboardItem-test-id-1"
|
|
94
95
|
}
|
|
95
96
|
},
|
|
96
97
|
{
|
|
@@ -106,7 +107,8 @@
|
|
|
106
107
|
"styles": {
|
|
107
108
|
"height": 400
|
|
108
109
|
},
|
|
109
|
-
"testID": "OnboardImage-test-id"
|
|
110
|
+
"testID": "OnboardImage-test-id-2",
|
|
111
|
+
"fetchStrategy": "normal"
|
|
110
112
|
}
|
|
111
113
|
},
|
|
112
114
|
{
|
|
@@ -117,7 +119,7 @@
|
|
|
117
119
|
"styles": {
|
|
118
120
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
119
121
|
},
|
|
120
|
-
"testID": "OnboardTitle-test-id"
|
|
122
|
+
"testID": "OnboardTitle-test-id-2"
|
|
121
123
|
},
|
|
122
124
|
"children": "base.onboard.title.two-page"
|
|
123
125
|
},
|
|
@@ -129,7 +131,7 @@
|
|
|
129
131
|
"styles": {
|
|
130
132
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
131
133
|
},
|
|
132
|
-
"testID": "OnboardSubtitle-test-id"
|
|
134
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
133
135
|
},
|
|
134
136
|
"children": "base.onboard.subtitle.two-page"
|
|
135
137
|
}
|
|
@@ -137,7 +139,7 @@
|
|
|
137
139
|
"attributes": {
|
|
138
140
|
"description": "Onboarding sayfası. (#2)",
|
|
139
141
|
"title": "OnboardItem 2",
|
|
140
|
-
"testID": "OnboardItem-test-id"
|
|
142
|
+
"testID": "OnboardItem-test-id-2"
|
|
141
143
|
}
|
|
142
144
|
},
|
|
143
145
|
{
|
|
@@ -152,7 +154,8 @@
|
|
|
152
154
|
"styles": {
|
|
153
155
|
"height": 400
|
|
154
156
|
},
|
|
155
|
-
"testID": "OnboardImage-test-id"
|
|
157
|
+
"testID": "OnboardImage-test-id-3",
|
|
158
|
+
"fetchStrategy": "normal"
|
|
156
159
|
}
|
|
157
160
|
},
|
|
158
161
|
{
|
|
@@ -163,7 +166,7 @@
|
|
|
163
166
|
"styles": {
|
|
164
167
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
165
168
|
},
|
|
166
|
-
"testID": "OnboardTitle-test-id"
|
|
169
|
+
"testID": "OnboardTitle-test-id-3"
|
|
167
170
|
},
|
|
168
171
|
"children": "base.onboard.title.three-page"
|
|
169
172
|
},
|
|
@@ -175,7 +178,7 @@
|
|
|
175
178
|
"styles": {
|
|
176
179
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
177
180
|
},
|
|
178
|
-
"testID": "OnboardSubtitle-test-id"
|
|
181
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
179
182
|
},
|
|
180
183
|
"children": "base.onboard.subtitle.three-page"
|
|
181
184
|
}
|
|
@@ -183,7 +186,7 @@
|
|
|
183
186
|
"attributes": {
|
|
184
187
|
"description": "Onboarding sayfası. (#3)",
|
|
185
188
|
"title": "OnboardItem 3",
|
|
186
|
-
"testID": "OnboardItem-test-id"
|
|
189
|
+
"testID": "OnboardItem-test-id-3"
|
|
187
190
|
}
|
|
188
191
|
},
|
|
189
192
|
{
|
|
@@ -198,7 +201,8 @@
|
|
|
198
201
|
"styles": {
|
|
199
202
|
"height": 400
|
|
200
203
|
},
|
|
201
|
-
"testID": "OnboardImage-test-id"
|
|
204
|
+
"testID": "OnboardImage-test-id-4",
|
|
205
|
+
"fetchStrategy": "normal"
|
|
202
206
|
}
|
|
203
207
|
},
|
|
204
208
|
{
|
|
@@ -209,7 +213,7 @@
|
|
|
209
213
|
"styles": {
|
|
210
214
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
211
215
|
},
|
|
212
|
-
"testID": "OnboardTitle-test-id"
|
|
216
|
+
"testID": "OnboardTitle-test-id-4"
|
|
213
217
|
},
|
|
214
218
|
"children": "base.onboard.title.five-page"
|
|
215
219
|
},
|
|
@@ -221,7 +225,7 @@
|
|
|
221
225
|
"styles": {
|
|
222
226
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
223
227
|
},
|
|
224
|
-
"testID": "OnboardSubtitle-test-id"
|
|
228
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
225
229
|
},
|
|
226
230
|
"children": "base.onboard.subtitle.five-page"
|
|
227
231
|
}
|
|
@@ -229,7 +233,7 @@
|
|
|
229
233
|
"attributes": {
|
|
230
234
|
"description": "Onboarding sayfası. (#4)",
|
|
231
235
|
"title": "OnboardItem 4",
|
|
232
|
-
"testID": "OnboardItem-test-id"
|
|
236
|
+
"testID": "OnboardItem-test-id-4"
|
|
233
237
|
}
|
|
234
238
|
},
|
|
235
239
|
{
|
|
@@ -244,7 +248,8 @@
|
|
|
244
248
|
"styles": {
|
|
245
249
|
"height": 400
|
|
246
250
|
},
|
|
247
|
-
"testID": "OnboardImage-test-id"
|
|
251
|
+
"testID": "OnboardImage-test-id-5",
|
|
252
|
+
"fetchStrategy": "normal"
|
|
248
253
|
}
|
|
249
254
|
},
|
|
250
255
|
{
|
|
@@ -255,7 +260,7 @@
|
|
|
255
260
|
"styles": {
|
|
256
261
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
257
262
|
},
|
|
258
|
-
"testID": "OnboardTitle-test-id"
|
|
263
|
+
"testID": "OnboardTitle-test-id-5"
|
|
259
264
|
},
|
|
260
265
|
"children": "base.onboard.title.six-page"
|
|
261
266
|
},
|
|
@@ -267,7 +272,7 @@
|
|
|
267
272
|
"styles": {
|
|
268
273
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
269
274
|
},
|
|
270
|
-
"testID": "OnboardSubtitle-test-id"
|
|
275
|
+
"testID": "OnboardSubtitle-test-id-5"
|
|
271
276
|
},
|
|
272
277
|
"children": "base.onboard.subtitle.six-page"
|
|
273
278
|
}
|
|
@@ -275,7 +280,7 @@
|
|
|
275
280
|
"attributes": {
|
|
276
281
|
"description": "Onboarding sayfası. (#5)",
|
|
277
282
|
"title": "OnboardItem 5",
|
|
278
|
-
"testID": "OnboardItem-test-id"
|
|
283
|
+
"testID": "OnboardItem-test-id-5"
|
|
279
284
|
}
|
|
280
285
|
},
|
|
281
286
|
{
|
|
@@ -290,7 +295,8 @@
|
|
|
290
295
|
"styles": {
|
|
291
296
|
"height": 400
|
|
292
297
|
},
|
|
293
|
-
"testID": "OnboardImage-test-id"
|
|
298
|
+
"testID": "OnboardImage-test-id-6",
|
|
299
|
+
"fetchStrategy": "normal"
|
|
294
300
|
}
|
|
295
301
|
},
|
|
296
302
|
{
|
|
@@ -301,7 +307,7 @@
|
|
|
301
307
|
"styles": {
|
|
302
308
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
303
309
|
},
|
|
304
|
-
"testID": "OnboardTitle-test-id"
|
|
310
|
+
"testID": "OnboardTitle-test-id-6"
|
|
305
311
|
},
|
|
306
312
|
"children": "base.onboard.title.four-page"
|
|
307
313
|
},
|
|
@@ -313,7 +319,7 @@
|
|
|
313
319
|
"styles": {
|
|
314
320
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
315
321
|
},
|
|
316
|
-
"testID": "OnboardSubtitle-test-id"
|
|
322
|
+
"testID": "OnboardSubtitle-test-id-6"
|
|
317
323
|
},
|
|
318
324
|
"children": "base.onboard.subtitle.four-page"
|
|
319
325
|
}
|
|
@@ -321,7 +327,7 @@
|
|
|
321
327
|
"attributes": {
|
|
322
328
|
"description": "Onboarding sayfası. (#6)",
|
|
323
329
|
"title": "OnboardItem 6",
|
|
324
|
-
"testID": "OnboardItem-test-id"
|
|
330
|
+
"testID": "OnboardItem-test-id-6"
|
|
325
331
|
}
|
|
326
332
|
}
|
|
327
333
|
],
|
|
@@ -331,7 +337,7 @@
|
|
|
331
337
|
"styles": {
|
|
332
338
|
"flex": 1
|
|
333
339
|
},
|
|
334
|
-
"testID": "Onboard-test-id"
|
|
340
|
+
"testID": "Onboard-test-id-1"
|
|
335
341
|
}
|
|
336
342
|
},
|
|
337
343
|
{
|
|
@@ -345,7 +351,7 @@
|
|
|
345
351
|
"styles": {
|
|
346
352
|
"paddingVertical": 12
|
|
347
353
|
},
|
|
348
|
-
"testID": "OnboardDot-test-id"
|
|
354
|
+
"testID": "OnboardDot-test-id-1"
|
|
349
355
|
}
|
|
350
356
|
},
|
|
351
357
|
{
|
|
@@ -358,7 +364,7 @@
|
|
|
358
364
|
"height": 2,
|
|
359
365
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
360
366
|
},
|
|
361
|
-
"testID": "Separator-test-id"
|
|
367
|
+
"testID": "Separator-test-id-1"
|
|
362
368
|
}
|
|
363
369
|
},
|
|
364
370
|
{
|
|
@@ -374,7 +380,7 @@
|
|
|
374
380
|
"marginVertical": 12,
|
|
375
381
|
"flexShrink": 0
|
|
376
382
|
},
|
|
377
|
-
"testID": "OnboardButtons-test-id"
|
|
383
|
+
"testID": "OnboardButtons-test-id-1"
|
|
378
384
|
},
|
|
379
385
|
"children": [
|
|
380
386
|
{
|
|
@@ -430,7 +436,7 @@
|
|
|
430
436
|
"marginVertical": 12,
|
|
431
437
|
"flexShrink": 0
|
|
432
438
|
},
|
|
433
|
-
"testID": "OnboardButtons-test-id"
|
|
439
|
+
"testID": "OnboardButtons-test-id-2"
|
|
434
440
|
},
|
|
435
441
|
"children": [
|
|
436
442
|
{
|
|
@@ -486,7 +492,7 @@
|
|
|
486
492
|
"marginVertical": 12,
|
|
487
493
|
"flexShrink": 0
|
|
488
494
|
},
|
|
489
|
-
"testID": "OnboardButtons-test-id"
|
|
495
|
+
"testID": "OnboardButtons-test-id-3"
|
|
490
496
|
},
|
|
491
497
|
"children": [
|
|
492
498
|
{
|
|
@@ -542,7 +548,7 @@
|
|
|
542
548
|
"marginVertical": 12,
|
|
543
549
|
"flexShrink": 0
|
|
544
550
|
},
|
|
545
|
-
"testID": "OnboardButtons-test-id"
|
|
551
|
+
"testID": "OnboardButtons-test-id-4"
|
|
546
552
|
},
|
|
547
553
|
"children": [
|
|
548
554
|
{
|
|
@@ -602,7 +608,7 @@
|
|
|
602
608
|
"marginVertical": 12,
|
|
603
609
|
"flexShrink": 0
|
|
604
610
|
},
|
|
605
|
-
"testID": "OnboardButtons-test-id"
|
|
611
|
+
"testID": "OnboardButtons-test-id-5"
|
|
606
612
|
},
|
|
607
613
|
"children": [
|
|
608
614
|
{
|
|
@@ -662,7 +668,7 @@
|
|
|
662
668
|
"marginVertical": 12,
|
|
663
669
|
"flexShrink": 0
|
|
664
670
|
},
|
|
665
|
-
"testID": "OnboardButtons-test-id"
|
|
671
|
+
"testID": "OnboardButtons-test-id-6"
|
|
666
672
|
},
|
|
667
673
|
"children": [
|
|
668
674
|
{
|
|
@@ -698,7 +704,7 @@
|
|
|
698
704
|
"marginHorizontal": 25,
|
|
699
705
|
"flexShrink": 0
|
|
700
706
|
},
|
|
701
|
-
"testID": "View-test-id"
|
|
707
|
+
"testID": "View-test-id-1"
|
|
702
708
|
},
|
|
703
709
|
"children": [
|
|
704
710
|
{
|
|
@@ -715,7 +721,7 @@
|
|
|
715
721
|
"gap": 8,
|
|
716
722
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
717
723
|
},
|
|
718
|
-
"testID": "OnboardFooter-test-id"
|
|
724
|
+
"testID": "OnboardFooter-test-id-1"
|
|
719
725
|
}
|
|
720
726
|
}
|
|
721
727
|
]
|
|
@@ -725,12 +731,12 @@
|
|
|
725
731
|
"theme": "all",
|
|
726
732
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
727
733
|
"title": "OnboardProvider 1",
|
|
728
|
-
"testID": "OnboardProvider-test-id"
|
|
734
|
+
"testID": "OnboardProvider-test-id-1"
|
|
729
735
|
}
|
|
730
736
|
}
|
|
731
737
|
]
|
|
732
738
|
},
|
|
733
739
|
"attributes": {
|
|
734
|
-
"testID": "onboard-test-id"
|
|
740
|
+
"testID": "onboard-test-id-1"
|
|
735
741
|
}
|
|
736
742
|
}
|
|
@@ -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
|
},
|
|
@@ -58,7 +58,8 @@
|
|
|
58
58
|
"styles": {
|
|
59
59
|
"height": 400
|
|
60
60
|
},
|
|
61
|
-
"testID": "OnboardImage-test-id"
|
|
61
|
+
"testID": "OnboardImage-test-id-1",
|
|
62
|
+
"fetchStrategy": "highIfItsAppLaunch"
|
|
62
63
|
}
|
|
63
64
|
},
|
|
64
65
|
{
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
"styles": {
|
|
70
71
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
71
72
|
},
|
|
72
|
-
"testID": "OnboardTitle-test-id"
|
|
73
|
+
"testID": "OnboardTitle-test-id-1"
|
|
73
74
|
},
|
|
74
75
|
"children": "base.onboard.title.one-page"
|
|
75
76
|
},
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"styles": {
|
|
82
83
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
83
84
|
},
|
|
84
|
-
"testID": "OnboardSubtitle-test-id"
|
|
85
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
85
86
|
},
|
|
86
87
|
"children": "base.onboard.subtitle.one-page"
|
|
87
88
|
}
|
|
@@ -89,7 +90,7 @@
|
|
|
89
90
|
"attributes": {
|
|
90
91
|
"description": "Onboarding sayfası. (#1)",
|
|
91
92
|
"title": "OnboardItem 1",
|
|
92
|
-
"testID": "OnboardItem-test-id"
|
|
93
|
+
"testID": "OnboardItem-test-id-1"
|
|
93
94
|
}
|
|
94
95
|
},
|
|
95
96
|
{
|
|
@@ -104,7 +105,8 @@
|
|
|
104
105
|
"styles": {
|
|
105
106
|
"height": 400
|
|
106
107
|
},
|
|
107
|
-
"testID": "OnboardImage-test-id"
|
|
108
|
+
"testID": "OnboardImage-test-id-2",
|
|
109
|
+
"fetchStrategy": "normal"
|
|
108
110
|
}
|
|
109
111
|
},
|
|
110
112
|
{
|
|
@@ -115,7 +117,7 @@
|
|
|
115
117
|
"styles": {
|
|
116
118
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
117
119
|
},
|
|
118
|
-
"testID": "OnboardTitle-test-id"
|
|
120
|
+
"testID": "OnboardTitle-test-id-2"
|
|
119
121
|
},
|
|
120
122
|
"children": "base.onboard.title.two-page"
|
|
121
123
|
},
|
|
@@ -127,7 +129,7 @@
|
|
|
127
129
|
"styles": {
|
|
128
130
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
129
131
|
},
|
|
130
|
-
"testID": "OnboardSubtitle-test-id"
|
|
132
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
131
133
|
},
|
|
132
134
|
"children": "base.onboard.subtitle.two-page"
|
|
133
135
|
}
|
|
@@ -135,7 +137,7 @@
|
|
|
135
137
|
"attributes": {
|
|
136
138
|
"description": "Onboarding sayfası. (#2)",
|
|
137
139
|
"title": "OnboardItem 2",
|
|
138
|
-
"testID": "OnboardItem-test-id"
|
|
140
|
+
"testID": "OnboardItem-test-id-2"
|
|
139
141
|
}
|
|
140
142
|
},
|
|
141
143
|
{
|
|
@@ -150,7 +152,8 @@
|
|
|
150
152
|
"styles": {
|
|
151
153
|
"height": 400
|
|
152
154
|
},
|
|
153
|
-
"testID": "OnboardImage-test-id"
|
|
155
|
+
"testID": "OnboardImage-test-id-3",
|
|
156
|
+
"fetchStrategy": "normal"
|
|
154
157
|
}
|
|
155
158
|
},
|
|
156
159
|
{
|
|
@@ -161,7 +164,7 @@
|
|
|
161
164
|
"styles": {
|
|
162
165
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
163
166
|
},
|
|
164
|
-
"testID": "OnboardTitle-test-id"
|
|
167
|
+
"testID": "OnboardTitle-test-id-3"
|
|
165
168
|
},
|
|
166
169
|
"children": "base.onboard.title.three-page"
|
|
167
170
|
},
|
|
@@ -173,7 +176,7 @@
|
|
|
173
176
|
"styles": {
|
|
174
177
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
175
178
|
},
|
|
176
|
-
"testID": "OnboardSubtitle-test-id"
|
|
179
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
177
180
|
},
|
|
178
181
|
"children": "base.onboard.subtitle.three-page"
|
|
179
182
|
}
|
|
@@ -181,7 +184,7 @@
|
|
|
181
184
|
"attributes": {
|
|
182
185
|
"description": "Onboarding sayfası. (#3)",
|
|
183
186
|
"title": "OnboardItem 3",
|
|
184
|
-
"testID": "OnboardItem-test-id"
|
|
187
|
+
"testID": "OnboardItem-test-id-3"
|
|
185
188
|
}
|
|
186
189
|
},
|
|
187
190
|
{
|
|
@@ -196,7 +199,8 @@
|
|
|
196
199
|
"styles": {
|
|
197
200
|
"height": 400
|
|
198
201
|
},
|
|
199
|
-
"testID": "OnboardImage-test-id"
|
|
202
|
+
"testID": "OnboardImage-test-id-4",
|
|
203
|
+
"fetchStrategy": "normal"
|
|
200
204
|
}
|
|
201
205
|
},
|
|
202
206
|
{
|
|
@@ -207,7 +211,7 @@
|
|
|
207
211
|
"styles": {
|
|
208
212
|
"color": "THEME_COLORS.ONBOARD_TITLE"
|
|
209
213
|
},
|
|
210
|
-
"testID": "OnboardTitle-test-id"
|
|
214
|
+
"testID": "OnboardTitle-test-id-4"
|
|
211
215
|
},
|
|
212
216
|
"children": "base.onboard.title.four-page"
|
|
213
217
|
},
|
|
@@ -219,7 +223,7 @@
|
|
|
219
223
|
"styles": {
|
|
220
224
|
"color": "THEME_COLORS.ONBOARD_SUBTITLE"
|
|
221
225
|
},
|
|
222
|
-
"testID": "OnboardSubtitle-test-id"
|
|
226
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
223
227
|
},
|
|
224
228
|
"children": "base.onboard.subtitle.four-page"
|
|
225
229
|
}
|
|
@@ -227,7 +231,7 @@
|
|
|
227
231
|
"attributes": {
|
|
228
232
|
"description": "Onboarding sayfası. (#4)",
|
|
229
233
|
"title": "OnboardItem 4",
|
|
230
|
-
"testID": "OnboardItem-test-id"
|
|
234
|
+
"testID": "OnboardItem-test-id-4"
|
|
231
235
|
}
|
|
232
236
|
}
|
|
233
237
|
],
|
|
@@ -237,7 +241,7 @@
|
|
|
237
241
|
"styles": {
|
|
238
242
|
"flex": 1
|
|
239
243
|
},
|
|
240
|
-
"testID": "Onboard-test-id"
|
|
244
|
+
"testID": "Onboard-test-id-1"
|
|
241
245
|
}
|
|
242
246
|
},
|
|
243
247
|
{
|
|
@@ -251,7 +255,7 @@
|
|
|
251
255
|
"styles": {
|
|
252
256
|
"paddingVertical": 12
|
|
253
257
|
},
|
|
254
|
-
"testID": "OnboardDot-test-id"
|
|
258
|
+
"testID": "OnboardDot-test-id-1"
|
|
255
259
|
}
|
|
256
260
|
},
|
|
257
261
|
{
|
|
@@ -264,7 +268,7 @@
|
|
|
264
268
|
"height": 2,
|
|
265
269
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
266
270
|
},
|
|
267
|
-
"testID": "Separator-test-id"
|
|
271
|
+
"testID": "Separator-test-id-1"
|
|
268
272
|
}
|
|
269
273
|
},
|
|
270
274
|
{
|
|
@@ -280,7 +284,7 @@
|
|
|
280
284
|
"marginVertical": 12,
|
|
281
285
|
"flexShrink": 0
|
|
282
286
|
},
|
|
283
|
-
"testID": "OnboardButtons-test-id"
|
|
287
|
+
"testID": "OnboardButtons-test-id-1"
|
|
284
288
|
},
|
|
285
289
|
"children": [
|
|
286
290
|
{
|
|
@@ -336,7 +340,7 @@
|
|
|
336
340
|
"marginVertical": 12,
|
|
337
341
|
"flexShrink": 0
|
|
338
342
|
},
|
|
339
|
-
"testID": "OnboardButtons-test-id"
|
|
343
|
+
"testID": "OnboardButtons-test-id-2"
|
|
340
344
|
},
|
|
341
345
|
"children": [
|
|
342
346
|
{
|
|
@@ -392,7 +396,7 @@
|
|
|
392
396
|
"marginVertical": 12,
|
|
393
397
|
"flexShrink": 0
|
|
394
398
|
},
|
|
395
|
-
"testID": "OnboardButtons-test-id"
|
|
399
|
+
"testID": "OnboardButtons-test-id-3"
|
|
396
400
|
},
|
|
397
401
|
"children": [
|
|
398
402
|
{
|
|
@@ -452,7 +456,7 @@
|
|
|
452
456
|
"marginVertical": 12,
|
|
453
457
|
"flexShrink": 0
|
|
454
458
|
},
|
|
455
|
-
"testID": "OnboardButtons-test-id"
|
|
459
|
+
"testID": "OnboardButtons-test-id-4"
|
|
456
460
|
},
|
|
457
461
|
"children": [
|
|
458
462
|
{
|
|
@@ -488,7 +492,7 @@
|
|
|
488
492
|
"marginHorizontal": 25,
|
|
489
493
|
"flexShrink": 0
|
|
490
494
|
},
|
|
491
|
-
"testID": "View-test-id"
|
|
495
|
+
"testID": "View-test-id-1"
|
|
492
496
|
},
|
|
493
497
|
"children": [
|
|
494
498
|
{
|
|
@@ -505,7 +509,7 @@
|
|
|
505
509
|
"gap": 8,
|
|
506
510
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
507
511
|
},
|
|
508
|
-
"testID": "OnboardFooter-test-id"
|
|
512
|
+
"testID": "OnboardFooter-test-id-1"
|
|
509
513
|
}
|
|
510
514
|
}
|
|
511
515
|
]
|
|
@@ -515,12 +519,12 @@
|
|
|
515
519
|
"theme": "dark",
|
|
516
520
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
517
521
|
"title": "OnboardProvider 1",
|
|
518
|
-
"testID": "OnboardProvider-test-id"
|
|
522
|
+
"testID": "OnboardProvider-test-id-1"
|
|
519
523
|
}
|
|
520
524
|
}
|
|
521
525
|
]
|
|
522
526
|
},
|
|
523
527
|
"attributes": {
|
|
524
|
-
"testID": "onboard-test-id"
|
|
528
|
+
"testID": "onboard-test-id-1"
|
|
525
529
|
}
|
|
526
530
|
}
|