@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
|
},
|
|
@@ -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-page2"
|
|
66
66
|
},
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"styles": {
|
|
73
73
|
"height": 350
|
|
74
74
|
},
|
|
75
|
-
"testID": "OnboardImage-test-id"
|
|
75
|
+
"testID": "OnboardImage-test-id-1",
|
|
76
|
+
"fetchStrategy": "highIfItsAppLaunch"
|
|
76
77
|
}
|
|
77
78
|
},
|
|
78
79
|
{
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
"fontSize": 16,
|
|
86
87
|
"textAlign": "center"
|
|
87
88
|
},
|
|
88
|
-
"testID": "OnboardSubtitle-test-id"
|
|
89
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
89
90
|
},
|
|
90
91
|
"children": "base.onboard.subtitle.one-page2"
|
|
91
92
|
}
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
"attributes": {
|
|
94
95
|
"description": "Onboarding sayfası. (#1)",
|
|
95
96
|
"title": "OnboardItem 1",
|
|
96
|
-
"testID": "OnboardItem-test-id"
|
|
97
|
+
"testID": "OnboardItem-test-id-1"
|
|
97
98
|
}
|
|
98
99
|
},
|
|
99
100
|
{
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
"textAlign": "center",
|
|
111
112
|
"marginTop": 40
|
|
112
113
|
},
|
|
113
|
-
"testID": "OnboardTitle-test-id"
|
|
114
|
+
"testID": "OnboardTitle-test-id-2"
|
|
114
115
|
},
|
|
115
116
|
"children": "base.onboard.title.two-page2"
|
|
116
117
|
},
|
|
@@ -124,7 +125,7 @@
|
|
|
124
125
|
"fontSize": 16,
|
|
125
126
|
"textAlign": "center"
|
|
126
127
|
},
|
|
127
|
-
"testID": "OnboardSubtitle-test-id"
|
|
128
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
128
129
|
},
|
|
129
130
|
"children": "base.onboard.subtitle.two-page"
|
|
130
131
|
}
|
|
@@ -132,7 +133,7 @@
|
|
|
132
133
|
"attributes": {
|
|
133
134
|
"description": "Onboarding sayfası. (#2)",
|
|
134
135
|
"title": "OnboardItem 2",
|
|
135
|
-
"testID": "OnboardItem-test-id"
|
|
136
|
+
"testID": "OnboardItem-test-id-2"
|
|
136
137
|
}
|
|
137
138
|
},
|
|
138
139
|
{
|
|
@@ -149,7 +150,7 @@
|
|
|
149
150
|
"textAlign": "center",
|
|
150
151
|
"marginTop": 40
|
|
151
152
|
},
|
|
152
|
-
"testID": "OnboardTitle-test-id"
|
|
153
|
+
"testID": "OnboardTitle-test-id-3"
|
|
153
154
|
},
|
|
154
155
|
"children": "base.onboard.title.three-page2"
|
|
155
156
|
},
|
|
@@ -163,7 +164,7 @@
|
|
|
163
164
|
"fontSize": 16,
|
|
164
165
|
"textAlign": "center"
|
|
165
166
|
},
|
|
166
|
-
"testID": "OnboardSubtitle-test-id"
|
|
167
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
167
168
|
},
|
|
168
169
|
"children": "base.onboard.subtitle.three-page2"
|
|
169
170
|
}
|
|
@@ -171,7 +172,7 @@
|
|
|
171
172
|
"attributes": {
|
|
172
173
|
"description": "Onboarding sayfası. (#3)",
|
|
173
174
|
"title": "OnboardItem 3",
|
|
174
|
-
"testID": "OnboardItem-test-id"
|
|
175
|
+
"testID": "OnboardItem-test-id-3"
|
|
175
176
|
}
|
|
176
177
|
},
|
|
177
178
|
{
|
|
@@ -188,7 +189,7 @@
|
|
|
188
189
|
"textAlign": "center",
|
|
189
190
|
"marginTop": 40
|
|
190
191
|
},
|
|
191
|
-
"testID": "OnboardTitle-test-id"
|
|
192
|
+
"testID": "OnboardTitle-test-id-4"
|
|
192
193
|
},
|
|
193
194
|
"children": "base.onboard.title.four-page2"
|
|
194
195
|
},
|
|
@@ -202,7 +203,7 @@
|
|
|
202
203
|
"fontSize": 16,
|
|
203
204
|
"textAlign": "center"
|
|
204
205
|
},
|
|
205
|
-
"testID": "OnboardSubtitle-test-id"
|
|
206
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
206
207
|
},
|
|
207
208
|
"children": "base.onboard.subtitle.four-page2"
|
|
208
209
|
}
|
|
@@ -210,7 +211,7 @@
|
|
|
210
211
|
"attributes": {
|
|
211
212
|
"description": "Onboarding sayfası. (#4)",
|
|
212
213
|
"title": "OnboardItem 4",
|
|
213
|
-
"testID": "OnboardItem-test-id"
|
|
214
|
+
"testID": "OnboardItem-test-id-4"
|
|
214
215
|
}
|
|
215
216
|
}
|
|
216
217
|
],
|
|
@@ -220,7 +221,7 @@
|
|
|
220
221
|
"styles": {
|
|
221
222
|
"flex": 1
|
|
222
223
|
},
|
|
223
|
-
"testID": "Onboard-test-id"
|
|
224
|
+
"testID": "Onboard-test-id-1"
|
|
224
225
|
}
|
|
225
226
|
},
|
|
226
227
|
{
|
|
@@ -234,7 +235,7 @@
|
|
|
234
235
|
"styles": {
|
|
235
236
|
"paddingVertical": 12
|
|
236
237
|
},
|
|
237
|
-
"testID": "OnboardDot-test-id"
|
|
238
|
+
"testID": "OnboardDot-test-id-1"
|
|
238
239
|
}
|
|
239
240
|
},
|
|
240
241
|
{
|
|
@@ -247,7 +248,7 @@
|
|
|
247
248
|
"height": 2,
|
|
248
249
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
249
250
|
},
|
|
250
|
-
"testID": "Separator-test-id"
|
|
251
|
+
"testID": "Separator-test-id-1"
|
|
251
252
|
}
|
|
252
253
|
},
|
|
253
254
|
{
|
|
@@ -263,7 +264,7 @@
|
|
|
263
264
|
"marginVertical": 12,
|
|
264
265
|
"flexShrink": 0
|
|
265
266
|
},
|
|
266
|
-
"testID": "OnboardButtons-test-id"
|
|
267
|
+
"testID": "OnboardButtons-test-id-1"
|
|
267
268
|
},
|
|
268
269
|
"children": [
|
|
269
270
|
{
|
|
@@ -319,7 +320,7 @@
|
|
|
319
320
|
"marginVertical": 12,
|
|
320
321
|
"flexShrink": 0
|
|
321
322
|
},
|
|
322
|
-
"testID": "OnboardButtons-test-id"
|
|
323
|
+
"testID": "OnboardButtons-test-id-2"
|
|
323
324
|
},
|
|
324
325
|
"children": [
|
|
325
326
|
{
|
|
@@ -383,7 +384,7 @@
|
|
|
383
384
|
"marginVertical": 12,
|
|
384
385
|
"flexShrink": 0
|
|
385
386
|
},
|
|
386
|
-
"testID": "OnboardButtons-test-id"
|
|
387
|
+
"testID": "OnboardButtons-test-id-3"
|
|
387
388
|
},
|
|
388
389
|
"children": [
|
|
389
390
|
{
|
|
@@ -443,7 +444,7 @@
|
|
|
443
444
|
"marginVertical": 12,
|
|
444
445
|
"flexShrink": 0
|
|
445
446
|
},
|
|
446
|
-
"testID": "OnboardButtons-test-id"
|
|
447
|
+
"testID": "OnboardButtons-test-id-4"
|
|
447
448
|
},
|
|
448
449
|
"children": [
|
|
449
450
|
{
|
|
@@ -479,7 +480,7 @@
|
|
|
479
480
|
"marginHorizontal": 25,
|
|
480
481
|
"flexShrink": 0
|
|
481
482
|
},
|
|
482
|
-
"testID": "View-test-id"
|
|
483
|
+
"testID": "View-test-id-1"
|
|
483
484
|
},
|
|
484
485
|
"children": [
|
|
485
486
|
{
|
|
@@ -496,7 +497,7 @@
|
|
|
496
497
|
"gap": 8,
|
|
497
498
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
498
499
|
},
|
|
499
|
-
"testID": "OnboardFooter-test-id"
|
|
500
|
+
"testID": "OnboardFooter-test-id-1"
|
|
500
501
|
}
|
|
501
502
|
}
|
|
502
503
|
]
|
|
@@ -506,12 +507,12 @@
|
|
|
506
507
|
"theme": "light",
|
|
507
508
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
508
509
|
"title": "OnboardProvider 1",
|
|
509
|
-
"testID": "OnboardProvider-test-id"
|
|
510
|
+
"testID": "OnboardProvider-test-id-1"
|
|
510
511
|
}
|
|
511
512
|
}
|
|
512
513
|
]
|
|
513
514
|
},
|
|
514
515
|
"attributes": {
|
|
515
|
-
"testID": "onboard-test-id"
|
|
516
|
+
"testID": "onboard-test-id-1"
|
|
516
517
|
}
|
|
517
518
|
}
|
|
@@ -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-page2"
|
|
66
66
|
},
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"styles": {
|
|
73
73
|
"height": 350
|
|
74
74
|
},
|
|
75
|
-
"testID": "OnboardImage-test-id"
|
|
75
|
+
"testID": "OnboardImage-test-id-1",
|
|
76
|
+
"fetchStrategy": "highIfItsAppLaunch"
|
|
76
77
|
}
|
|
77
78
|
},
|
|
78
79
|
{
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
"fontSize": 16,
|
|
86
87
|
"textAlign": "center"
|
|
87
88
|
},
|
|
88
|
-
"testID": "OnboardSubtitle-test-id"
|
|
89
|
+
"testID": "OnboardSubtitle-test-id-1"
|
|
89
90
|
},
|
|
90
91
|
"children": "base.onboard.subtitle.one-page2"
|
|
91
92
|
}
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
"attributes": {
|
|
94
95
|
"description": "Onboarding sayfası. (#1)",
|
|
95
96
|
"title": "OnboardItem 1",
|
|
96
|
-
"testID": "OnboardItem-test-id"
|
|
97
|
+
"testID": "OnboardItem-test-id-1"
|
|
97
98
|
}
|
|
98
99
|
},
|
|
99
100
|
{
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
"textAlign": "center",
|
|
111
112
|
"marginTop": 40
|
|
112
113
|
},
|
|
113
|
-
"testID": "OnboardTitle-test-id"
|
|
114
|
+
"testID": "OnboardTitle-test-id-2"
|
|
114
115
|
},
|
|
115
116
|
"children": "base.onboard.title.two-page2"
|
|
116
117
|
},
|
|
@@ -124,7 +125,7 @@
|
|
|
124
125
|
"fontSize": 16,
|
|
125
126
|
"textAlign": "center"
|
|
126
127
|
},
|
|
127
|
-
"testID": "OnboardSubtitle-test-id"
|
|
128
|
+
"testID": "OnboardSubtitle-test-id-2"
|
|
128
129
|
},
|
|
129
130
|
"children": "base.onboard.subtitle.two-page2"
|
|
130
131
|
}
|
|
@@ -132,7 +133,7 @@
|
|
|
132
133
|
"attributes": {
|
|
133
134
|
"description": "Onboarding sayfası. (#2)",
|
|
134
135
|
"title": "OnboardItem 2",
|
|
135
|
-
"testID": "OnboardItem-test-id"
|
|
136
|
+
"testID": "OnboardItem-test-id-2"
|
|
136
137
|
}
|
|
137
138
|
},
|
|
138
139
|
{
|
|
@@ -149,7 +150,7 @@
|
|
|
149
150
|
"textAlign": "center",
|
|
150
151
|
"marginTop": 40
|
|
151
152
|
},
|
|
152
|
-
"testID": "OnboardTitle-test-id"
|
|
153
|
+
"testID": "OnboardTitle-test-id-3"
|
|
153
154
|
},
|
|
154
155
|
"children": "base.onboard.title.three-page2"
|
|
155
156
|
},
|
|
@@ -163,7 +164,7 @@
|
|
|
163
164
|
"fontSize": 16,
|
|
164
165
|
"textAlign": "center"
|
|
165
166
|
},
|
|
166
|
-
"testID": "OnboardSubtitle-test-id"
|
|
167
|
+
"testID": "OnboardSubtitle-test-id-3"
|
|
167
168
|
},
|
|
168
169
|
"children": "base.onboard.subtitle.three-page2"
|
|
169
170
|
}
|
|
@@ -171,7 +172,7 @@
|
|
|
171
172
|
"attributes": {
|
|
172
173
|
"description": "Onboarding sayfası. (#3)",
|
|
173
174
|
"title": "OnboardItem 3",
|
|
174
|
-
"testID": "OnboardItem-test-id"
|
|
175
|
+
"testID": "OnboardItem-test-id-3"
|
|
175
176
|
}
|
|
176
177
|
},
|
|
177
178
|
{
|
|
@@ -188,7 +189,7 @@
|
|
|
188
189
|
"textAlign": "center",
|
|
189
190
|
"marginTop": 40
|
|
190
191
|
},
|
|
191
|
-
"testID": "OnboardTitle-test-id"
|
|
192
|
+
"testID": "OnboardTitle-test-id-4"
|
|
192
193
|
},
|
|
193
194
|
"children": "base.onboard.title.four-page2"
|
|
194
195
|
},
|
|
@@ -202,7 +203,7 @@
|
|
|
202
203
|
"fontSize": 16,
|
|
203
204
|
"textAlign": "center"
|
|
204
205
|
},
|
|
205
|
-
"testID": "OnboardSubtitle-test-id"
|
|
206
|
+
"testID": "OnboardSubtitle-test-id-4"
|
|
206
207
|
},
|
|
207
208
|
"children": "base.onboard.subtitle.four-page2"
|
|
208
209
|
}
|
|
@@ -210,7 +211,7 @@
|
|
|
210
211
|
"attributes": {
|
|
211
212
|
"description": "Onboarding sayfası. (#4)",
|
|
212
213
|
"title": "OnboardItem 4",
|
|
213
|
-
"testID": "OnboardItem-test-id"
|
|
214
|
+
"testID": "OnboardItem-test-id-4"
|
|
214
215
|
}
|
|
215
216
|
}
|
|
216
217
|
],
|
|
@@ -220,7 +221,7 @@
|
|
|
220
221
|
"styles": {
|
|
221
222
|
"flex": 1
|
|
222
223
|
},
|
|
223
|
-
"testID": "Onboard-test-id"
|
|
224
|
+
"testID": "Onboard-test-id-1"
|
|
224
225
|
}
|
|
225
226
|
},
|
|
226
227
|
{
|
|
@@ -234,7 +235,7 @@
|
|
|
234
235
|
"styles": {
|
|
235
236
|
"paddingVertical": 12
|
|
236
237
|
},
|
|
237
|
-
"testID": "OnboardDot-test-id"
|
|
238
|
+
"testID": "OnboardDot-test-id-1"
|
|
238
239
|
}
|
|
239
240
|
},
|
|
240
241
|
{
|
|
@@ -247,7 +248,7 @@
|
|
|
247
248
|
"height": 2,
|
|
248
249
|
"backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
|
|
249
250
|
},
|
|
250
|
-
"testID": "Separator-test-id"
|
|
251
|
+
"testID": "Separator-test-id-1"
|
|
251
252
|
}
|
|
252
253
|
},
|
|
253
254
|
{
|
|
@@ -263,7 +264,7 @@
|
|
|
263
264
|
"marginVertical": 12,
|
|
264
265
|
"flexShrink": 0
|
|
265
266
|
},
|
|
266
|
-
"testID": "OnboardButtons-test-id"
|
|
267
|
+
"testID": "OnboardButtons-test-id-1"
|
|
267
268
|
},
|
|
268
269
|
"children": [
|
|
269
270
|
{
|
|
@@ -319,7 +320,7 @@
|
|
|
319
320
|
"marginVertical": 12,
|
|
320
321
|
"flexShrink": 0
|
|
321
322
|
},
|
|
322
|
-
"testID": "OnboardButtons-test-id"
|
|
323
|
+
"testID": "OnboardButtons-test-id-2"
|
|
323
324
|
},
|
|
324
325
|
"children": [
|
|
325
326
|
{
|
|
@@ -383,7 +384,7 @@
|
|
|
383
384
|
"marginVertical": 12,
|
|
384
385
|
"flexShrink": 0
|
|
385
386
|
},
|
|
386
|
-
"testID": "OnboardButtons-test-id"
|
|
387
|
+
"testID": "OnboardButtons-test-id-3"
|
|
387
388
|
},
|
|
388
389
|
"children": [
|
|
389
390
|
{
|
|
@@ -443,7 +444,7 @@
|
|
|
443
444
|
"marginVertical": 12,
|
|
444
445
|
"flexShrink": 0
|
|
445
446
|
},
|
|
446
|
-
"testID": "OnboardButtons-test-id"
|
|
447
|
+
"testID": "OnboardButtons-test-id-4"
|
|
447
448
|
},
|
|
448
449
|
"children": [
|
|
449
450
|
{
|
|
@@ -479,7 +480,7 @@
|
|
|
479
480
|
"marginHorizontal": 25,
|
|
480
481
|
"flexShrink": 0
|
|
481
482
|
},
|
|
482
|
-
"testID": "View-test-id"
|
|
483
|
+
"testID": "View-test-id-1"
|
|
483
484
|
},
|
|
484
485
|
"children": [
|
|
485
486
|
{
|
|
@@ -496,7 +497,7 @@
|
|
|
496
497
|
"gap": 8,
|
|
497
498
|
"color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
|
|
498
499
|
},
|
|
499
|
-
"testID": "OnboardFooter-test-id"
|
|
500
|
+
"testID": "OnboardFooter-test-id-1"
|
|
500
501
|
}
|
|
501
502
|
}
|
|
502
503
|
]
|
|
@@ -506,12 +507,12 @@
|
|
|
506
507
|
"theme": "dark",
|
|
507
508
|
"description": "Onboarding sağlayıcısı. (#1)",
|
|
508
509
|
"title": "OnboardProvider 1",
|
|
509
|
-
"testID": "OnboardProvider-test-id"
|
|
510
|
+
"testID": "OnboardProvider-test-id-1"
|
|
510
511
|
}
|
|
511
512
|
}
|
|
512
513
|
]
|
|
513
514
|
},
|
|
514
515
|
"attributes": {
|
|
515
|
-
"testID": "onboard-test-id"
|
|
516
|
+
"testID": "onboard-test-id-1"
|
|
516
517
|
}
|
|
517
518
|
}
|