@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.
Files changed (134) hide show
  1. package/dist/build-components/BIcon/BIconProps.generated.d.ts +1 -1
  2. package/dist/build-components/CountDown/CountDownProps.generated.d.ts +1 -1
  3. package/dist/build-components/Image/ImageProps.generated.d.ts +2 -0
  4. package/dist/build-components/NavigationBarColor/NavigationBarColorProps.generated.d.ts +1 -40
  5. package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -1
  6. package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +3 -1
  7. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -1
  8. package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -1
  9. package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +1 -1
  10. package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -1
  11. package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +1 -1
  12. package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +1 -1
  13. package/dist/build-components/Pricing/PricingProps.generated.d.ts +1 -1
  14. package/dist/build-components/Promo/PromoProps.generated.d.ts +1 -1
  15. package/dist/build-components/StatusBarColor/StatusBarColorProps.generated.d.ts +1 -1
  16. package/dist/build-components/patterns.generated.d.ts +51 -356
  17. package/dist/components/BuilderProvider.d.ts +1 -0
  18. package/dist/components/DeviceButton.d.ts +4 -1
  19. package/dist/index.cjs.js +1 -1
  20. package/dist/index.cjs.js.map +1 -1
  21. package/dist/index.esm.js +1 -1
  22. package/dist/index.esm.js.map +1 -1
  23. package/dist/index.web.cjs.js +4 -4
  24. package/dist/index.web.cjs.js.map +1 -1
  25. package/dist/index.web.esm.js +4 -4
  26. package/dist/index.web.esm.js.map +1 -1
  27. package/dist/mockOS/context/MockOSContext.d.ts +3 -1
  28. package/dist/size-matters/index.d.ts +1 -1
  29. package/dist/store.d.ts +6 -0
  30. package/dist/styles.css +1 -1
  31. package/dist/types/Device.d.ts +5 -0
  32. package/dist/utils/extractTextStyle/extractTextStyle.d.ts +1 -0
  33. package/dist/utils/extractViewStyle/extractViewStyle.d.ts +1 -0
  34. package/package.json +1 -1
  35. package/scripts/prebuild/assets/prompt_scheme.md +7 -0
  36. package/src/DeviceMockFrame.tsx +8 -0
  37. package/src/RenderPage.tsx +3 -0
  38. package/src/assets/devices.json +747 -183
  39. package/src/assets/meta.json +1 -1
  40. package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
  41. package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
  42. package/src/assets/samples/carousel-sample.json +30 -26
  43. package/src/assets/samples/paywall-1.json +30 -30
  44. package/src/assets/samples/paywall-2.json +26 -26
  45. package/src/assets/samples/paywall-app-delete-offer.json +27 -27
  46. package/src/assets/samples/paywall-app-open-offer.json +27 -27
  47. package/src/assets/samples/paywall-back-offer.json +27 -27
  48. package/src/assets/samples/paywall-notification-offer.json +27 -27
  49. package/src/assets/samples/simple-1.json +4 -4
  50. package/src/assets/samples/simple-2.json +25 -25
  51. package/src/assets/samples/unmigrated-builder-1.1.1.json +7 -7
  52. package/src/assets/samples/unmigrated-builder1.json +4 -4
  53. package/src/assets/samples/unvalidated-builder1.json +4 -4
  54. package/src/assets/samples/unvalidated-crash1.json +2 -2
  55. package/src/assets/samples/unvalidated-crashcomponent1.json +2 -2
  56. package/src/assets/samples/vpn-onboard-1.json +34 -30
  57. package/src/assets/samples/vpn-onboard-2.json +34 -30
  58. package/src/assets/samples/vpn-onboard-3.json +28 -27
  59. package/src/assets/samples/vpn-onboard-4.json +28 -27
  60. package/src/assets/samples/vpn-onboard-5.json +46 -40
  61. package/src/assets/samples/vpn-onboard-6.json +34 -30
  62. package/src/assets/samples/vpn-onboard-7.json +33 -29
  63. package/src/attribute-analyser/style/web/useExtractImageStyle.ts +8 -3
  64. package/src/attribute-analyser/style/web/useExtractViewStyle.ts +8 -3
  65. package/src/build-components/BIcon/BIconProps.generated.ts +1 -1
  66. package/src/build-components/BIcon/pattern.json +1 -2
  67. package/src/build-components/BackgroundImage/pattern.json +1 -2
  68. package/src/build-components/Button/pattern.json +1 -2
  69. package/src/build-components/Carousel/pattern.json +1 -2
  70. package/src/build-components/CarouselButtons/pattern.json +1 -2
  71. package/src/build-components/CarouselDots/CarouselDots.tsx +8 -3
  72. package/src/build-components/CarouselDots/pattern.json +1 -2
  73. package/src/build-components/CarouselItem/pattern.json +1 -4
  74. package/src/build-components/CarouselProvider/pattern.json +0 -3
  75. package/src/build-components/CountDown/CountDownProps.generated.ts +1 -1
  76. package/src/build-components/CountDown/pattern.json +1 -2
  77. package/src/build-components/Image/ImageProps.generated.ts +6 -0
  78. package/src/build-components/Image/pattern.json +10 -2
  79. package/src/build-components/Main/Main.tsx +3 -1
  80. package/src/build-components/Main/pattern.json +1 -2
  81. package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +15 -1
  82. package/src/build-components/NavigationBarColor/NavigationBarColorProps.generated.ts +1 -52
  83. package/src/build-components/NavigationBarColor/pattern.json +10 -2
  84. package/src/build-components/Onboard/pattern.json +1 -4
  85. package/src/build-components/OnboardButtons/pattern.json +1 -2
  86. package/src/build-components/OnboardDot/OnboardDot.tsx +3 -2
  87. package/src/build-components/OnboardDot/pattern.json +1 -2
  88. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -1
  89. package/src/build-components/OnboardFooter/pattern.json +1 -2
  90. package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +7 -1
  91. package/src/build-components/OnboardImage/pattern.json +1 -2
  92. package/src/build-components/OnboardItem/pattern.json +1 -2
  93. package/src/build-components/OnboardProvider/pattern.json +1 -2
  94. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -1
  95. package/src/build-components/OnboardSubtitle/pattern.json +1 -4
  96. package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -1
  97. package/src/build-components/OnboardTitle/pattern.json +1 -4
  98. package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +1 -1
  99. package/src/build-components/PaywallBackground/pattern.json +0 -3
  100. package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -1
  101. package/src/build-components/PaywallCloseButton/pattern.json +2 -4
  102. package/src/build-components/PaywallOptions/pattern.json +1 -4
  103. package/src/build-components/PaywallProvider/pattern.json +1 -2
  104. package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +1 -1
  105. package/src/build-components/PaywallSubscribeButton/pattern.json +1 -4
  106. package/src/build-components/PriceTag/PriceTagProps.generated.ts +1 -1
  107. package/src/build-components/PriceTag/pattern.json +1 -2
  108. package/src/build-components/Pricing/PricingProps.generated.ts +1 -1
  109. package/src/build-components/Pricing/pattern.json +1 -4
  110. package/src/build-components/Promo/PromoProps.generated.ts +1 -1
  111. package/src/build-components/Promo/pattern.json +1 -4
  112. package/src/build-components/RadioButton/pattern.json +1 -2
  113. package/src/build-components/StatusBarColor/StatusBarColor.tsx +15 -1
  114. package/src/build-components/StatusBarColor/StatusBarColorProps.generated.ts +1 -1
  115. package/src/build-components/StatusBarColor/pattern.json +10 -1
  116. package/src/build-components/Text/pattern.json +1 -2
  117. package/src/build-components/patterns.generated.ts +57 -376
  118. package/src/components/BuilderProvider.tsx +1 -0
  119. package/src/components/DeviceButton.tsx +35 -0
  120. package/src/components/EditorHeader.tsx +16 -1
  121. package/src/hooks/useSafeAreaViewStyle.ts +24 -4
  122. package/src/mockOS/context/MockOSContext.tsx +41 -13
  123. package/src/modals/DeviceSelectorModal.tsx +94 -10
  124. package/src/product-base/extractAndroidParams.ts +38 -8
  125. package/src/size-matters/index.ts +15 -9
  126. package/src/store.ts +27 -0
  127. package/src/styles/modals/_product-edit-modal.scss +2 -2
  128. package/src/types/Device.ts +5 -0
  129. package/src/utils/analyseNodeByPatterns.ts +6 -2
  130. package/src/utils/extractTextStyle/extractTextStyle.ts +3 -1
  131. package/src/utils/extractTextStyle/extractTextStyleNative.ts +1 -1
  132. package/src/utils/extractViewStyle/extractViewStyle.ts +19 -5
  133. package/src/utils/extractViewStyle/extractViewStyleNative.ts +5 -1
  134. 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,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-page"
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-page"
116
117
  },
@@ -122,7 +123,8 @@
122
123
  "styles": {
123
124
  "height": 350
124
125
  },
125
- "testID": "OnboardImage-test-id"
126
+ "testID": "OnboardImage-test-id-2",
127
+ "fetchStrategy": "normal"
126
128
  }
127
129
  },
128
130
  {
@@ -135,7 +137,7 @@
135
137
  "fontSize": 16,
136
138
  "textAlign": "center"
137
139
  },
138
- "testID": "OnboardSubtitle-test-id"
140
+ "testID": "OnboardSubtitle-test-id-2"
139
141
  },
140
142
  "children": "base.onboard.subtitle.two-page"
141
143
  }
@@ -143,7 +145,7 @@
143
145
  "attributes": {
144
146
  "description": "Onboarding sayfası. (#2)",
145
147
  "title": "OnboardItem 2",
146
- "testID": "OnboardItem-test-id"
148
+ "testID": "OnboardItem-test-id-2"
147
149
  }
148
150
  },
149
151
  {
@@ -160,7 +162,7 @@
160
162
  "textAlign": "center",
161
163
  "marginTop": 40
162
164
  },
163
- "testID": "OnboardTitle-test-id"
165
+ "testID": "OnboardTitle-test-id-3"
164
166
  },
165
167
  "children": "base.onboard.title.three-page"
166
168
  },
@@ -172,7 +174,8 @@
172
174
  "styles": {
173
175
  "height": 350
174
176
  },
175
- "testID": "OnboardImage-test-id"
177
+ "testID": "OnboardImage-test-id-3",
178
+ "fetchStrategy": "normal"
176
179
  }
177
180
  },
178
181
  {
@@ -185,7 +188,7 @@
185
188
  "fontSize": 16,
186
189
  "textAlign": "center"
187
190
  },
188
- "testID": "OnboardSubtitle-test-id"
191
+ "testID": "OnboardSubtitle-test-id-3"
189
192
  },
190
193
  "children": "base.onboard.subtitle.three-page"
191
194
  }
@@ -193,7 +196,7 @@
193
196
  "attributes": {
194
197
  "description": "Onboarding sayfası. (#3)",
195
198
  "title": "OnboardItem 3",
196
- "testID": "OnboardItem-test-id"
199
+ "testID": "OnboardItem-test-id-3"
197
200
  }
198
201
  },
199
202
  {
@@ -210,7 +213,7 @@
210
213
  "textAlign": "center",
211
214
  "marginTop": 40
212
215
  },
213
- "testID": "OnboardTitle-test-id"
216
+ "testID": "OnboardTitle-test-id-4"
214
217
  },
215
218
  "children": "base.onboard.title.four-page"
216
219
  },
@@ -222,7 +225,8 @@
222
225
  "styles": {
223
226
  "height": 350
224
227
  },
225
- "testID": "OnboardImage-test-id"
228
+ "testID": "OnboardImage-test-id-4",
229
+ "fetchStrategy": "normal"
226
230
  }
227
231
  },
228
232
  {
@@ -235,7 +239,7 @@
235
239
  "fontSize": 16,
236
240
  "textAlign": "center"
237
241
  },
238
- "testID": "OnboardSubtitle-test-id"
242
+ "testID": "OnboardSubtitle-test-id-4"
239
243
  },
240
244
  "children": "base.onboard.subtitle.four-page"
241
245
  }
@@ -243,7 +247,7 @@
243
247
  "attributes": {
244
248
  "description": "Onboarding sayfası. (#4)",
245
249
  "title": "OnboardItem 4",
246
- "testID": "OnboardItem-test-id"
250
+ "testID": "OnboardItem-test-id-4"
247
251
  }
248
252
  }
249
253
  ],
@@ -253,7 +257,7 @@
253
257
  "styles": {
254
258
  "flex": 1
255
259
  },
256
- "testID": "Onboard-test-id"
260
+ "testID": "Onboard-test-id-1"
257
261
  }
258
262
  },
259
263
  {
@@ -267,7 +271,7 @@
267
271
  "styles": {
268
272
  "paddingVertical": 12
269
273
  },
270
- "testID": "OnboardDot-test-id"
274
+ "testID": "OnboardDot-test-id-1"
271
275
  }
272
276
  },
273
277
  {
@@ -280,7 +284,7 @@
280
284
  "height": 2,
281
285
  "backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
282
286
  },
283
- "testID": "Separator-test-id"
287
+ "testID": "Separator-test-id-1"
284
288
  }
285
289
  },
286
290
  {
@@ -296,7 +300,7 @@
296
300
  "marginVertical": 12,
297
301
  "flexShrink": 0
298
302
  },
299
- "testID": "OnboardButtons-test-id"
303
+ "testID": "OnboardButtons-test-id-1"
300
304
  },
301
305
  "children": [
302
306
  {
@@ -352,7 +356,7 @@
352
356
  "marginVertical": 12,
353
357
  "flexShrink": 0
354
358
  },
355
- "testID": "OnboardButtons-test-id"
359
+ "testID": "OnboardButtons-test-id-2"
356
360
  },
357
361
  "children": [
358
362
  {
@@ -416,7 +420,7 @@
416
420
  "marginVertical": 12,
417
421
  "flexShrink": 0
418
422
  },
419
- "testID": "OnboardButtons-test-id"
423
+ "testID": "OnboardButtons-test-id-3"
420
424
  },
421
425
  "children": [
422
426
  {
@@ -476,7 +480,7 @@
476
480
  "marginVertical": 12,
477
481
  "flexShrink": 0
478
482
  },
479
- "testID": "OnboardButtons-test-id"
483
+ "testID": "OnboardButtons-test-id-4"
480
484
  },
481
485
  "children": [
482
486
  {
@@ -512,7 +516,7 @@
512
516
  "marginHorizontal": 25,
513
517
  "flexShrink": 0
514
518
  },
515
- "testID": "View-test-id"
519
+ "testID": "View-test-id-1"
516
520
  },
517
521
  "children": [
518
522
  {
@@ -529,7 +533,7 @@
529
533
  "gap": 8,
530
534
  "color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
531
535
  },
532
- "testID": "OnboardFooter-test-id"
536
+ "testID": "OnboardFooter-test-id-1"
533
537
  }
534
538
  }
535
539
  ]
@@ -539,12 +543,12 @@
539
543
  "theme": "dark",
540
544
  "description": "Onboarding sağlayıcısı. (#1)",
541
545
  "title": "OnboardProvider 1",
542
- "testID": "OnboardProvider-test-id"
546
+ "testID": "OnboardProvider-test-id-1"
543
547
  }
544
548
  }
545
549
  ]
546
550
  },
547
551
  "attributes": {
548
- "testID": "onboard-test-id"
552
+ "testID": "onboard-test-id-1"
549
553
  }
550
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,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-page"
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-page"
116
117
  },
@@ -122,7 +123,8 @@
122
123
  "styles": {
123
124
  "height": 350
124
125
  },
125
- "testID": "OnboardImage-test-id"
126
+ "testID": "OnboardImage-test-id-2",
127
+ "fetchStrategy": "normal"
126
128
  }
127
129
  },
128
130
  {
@@ -135,7 +137,7 @@
135
137
  "fontSize": 16,
136
138
  "textAlign": "center"
137
139
  },
138
- "testID": "OnboardSubtitle-test-id"
140
+ "testID": "OnboardSubtitle-test-id-2"
139
141
  },
140
142
  "children": "base.onboard.subtitle.two-page"
141
143
  }
@@ -143,7 +145,7 @@
143
145
  "attributes": {
144
146
  "description": "Onboarding sayfası. (#2)",
145
147
  "title": "OnboardItem 2",
146
- "testID": "OnboardItem-test-id"
148
+ "testID": "OnboardItem-test-id-2"
147
149
  }
148
150
  },
149
151
  {
@@ -160,7 +162,7 @@
160
162
  "textAlign": "center",
161
163
  "marginTop": 40
162
164
  },
163
- "testID": "OnboardTitle-test-id"
165
+ "testID": "OnboardTitle-test-id-3"
164
166
  },
165
167
  "children": "base.onboard.title.three-page"
166
168
  },
@@ -172,7 +174,8 @@
172
174
  "styles": {
173
175
  "height": 350
174
176
  },
175
- "testID": "OnboardImage-test-id"
177
+ "testID": "OnboardImage-test-id-3",
178
+ "fetchStrategy": "normal"
176
179
  }
177
180
  },
178
181
  {
@@ -185,7 +188,7 @@
185
188
  "fontSize": 16,
186
189
  "textAlign": "center"
187
190
  },
188
- "testID": "OnboardSubtitle-test-id"
191
+ "testID": "OnboardSubtitle-test-id-3"
189
192
  },
190
193
  "children": "base.onboard.subtitle.three-page"
191
194
  }
@@ -193,7 +196,7 @@
193
196
  "attributes": {
194
197
  "description": "Onboarding sayfası. (#3)",
195
198
  "title": "OnboardItem 3",
196
- "testID": "OnboardItem-test-id"
199
+ "testID": "OnboardItem-test-id-3"
197
200
  }
198
201
  },
199
202
  {
@@ -210,7 +213,7 @@
210
213
  "textAlign": "center",
211
214
  "marginTop": 40
212
215
  },
213
- "testID": "OnboardTitle-test-id"
216
+ "testID": "OnboardTitle-test-id-4"
214
217
  },
215
218
  "children": "base.onboard.title.four-page"
216
219
  },
@@ -222,7 +225,8 @@
222
225
  "styles": {
223
226
  "height": 350
224
227
  },
225
- "testID": "OnboardImage-test-id"
228
+ "testID": "OnboardImage-test-id-4",
229
+ "fetchStrategy": "normal"
226
230
  }
227
231
  },
228
232
  {
@@ -235,7 +239,7 @@
235
239
  "fontSize": 16,
236
240
  "textAlign": "center"
237
241
  },
238
- "testID": "OnboardSubtitle-test-id"
242
+ "testID": "OnboardSubtitle-test-id-4"
239
243
  },
240
244
  "children": "base.onboard.subtitle.four-page"
241
245
  }
@@ -243,7 +247,7 @@
243
247
  "attributes": {
244
248
  "description": "Onboarding sayfası. (#4)",
245
249
  "title": "OnboardItem 4",
246
- "testID": "OnboardItem-test-id"
250
+ "testID": "OnboardItem-test-id-4"
247
251
  }
248
252
  }
249
253
  ],
@@ -253,7 +257,7 @@
253
257
  "styles": {
254
258
  "flex": 1
255
259
  },
256
- "testID": "Onboard-test-id"
260
+ "testID": "Onboard-test-id-1"
257
261
  }
258
262
  },
259
263
  {
@@ -267,7 +271,7 @@
267
271
  "styles": {
268
272
  "paddingVertical": 12
269
273
  },
270
- "testID": "OnboardDot-test-id"
274
+ "testID": "OnboardDot-test-id-1"
271
275
  }
272
276
  },
273
277
  {
@@ -280,7 +284,7 @@
280
284
  "height": 2,
281
285
  "backgroundColor": "STATIC_COLORS.ONBOARD_SEPARATOR_COLOR"
282
286
  },
283
- "testID": "Separator-test-id"
287
+ "testID": "Separator-test-id-1"
284
288
  }
285
289
  },
286
290
  {
@@ -296,7 +300,7 @@
296
300
  "marginVertical": 12,
297
301
  "flexShrink": 0
298
302
  },
299
- "testID": "OnboardButtons-test-id"
303
+ "testID": "OnboardButtons-test-id-1"
300
304
  },
301
305
  "children": [
302
306
  {
@@ -355,7 +359,7 @@
355
359
  "marginVertical": 12,
356
360
  "flexShrink": 0
357
361
  },
358
- "testID": "OnboardButtons-test-id"
362
+ "testID": "OnboardButtons-test-id-2"
359
363
  },
360
364
  "children": [
361
365
  {
@@ -419,7 +423,7 @@
419
423
  "marginVertical": 12,
420
424
  "flexShrink": 0
421
425
  },
422
- "testID": "OnboardButtons-test-id"
426
+ "testID": "OnboardButtons-test-id-3"
423
427
  },
424
428
  "children": [
425
429
  {
@@ -479,7 +483,7 @@
479
483
  "marginVertical": 12,
480
484
  "flexShrink": 0
481
485
  },
482
- "testID": "OnboardButtons-test-id"
486
+ "testID": "OnboardButtons-test-id-4"
483
487
  },
484
488
  "children": [
485
489
  {
@@ -515,7 +519,7 @@
515
519
  "marginHorizontal": 25,
516
520
  "flexShrink": 0
517
521
  },
518
- "testID": "View-test-id"
522
+ "testID": "View-test-id-1"
519
523
  },
520
524
  "children": [
521
525
  {
@@ -532,7 +536,7 @@
532
536
  "gap": 8,
533
537
  "color": "THEME_COLORS.ONBOARD_FOOTER_TEXT"
534
538
  },
535
- "testID": "OnboardFooter-test-id"
539
+ "testID": "OnboardFooter-test-id-1"
536
540
  }
537
541
  }
538
542
  ]
@@ -542,12 +546,12 @@
542
546
  "theme": "light",
543
547
  "description": "Onboarding sağlayıcısı. (#1)",
544
548
  "title": "OnboardProvider 1",
545
- "testID": "OnboardProvider-test-id"
549
+ "testID": "OnboardProvider-test-id-1"
546
550
  }
547
551
  }
548
552
  ]
549
553
  },
550
554
  "attributes": {
551
- "testID": "onboard-test-id"
555
+ "testID": "onboard-test-id-1"
552
556
  }
553
557
  }