@developer_tribe/react-builder 0.1.0 → 0.1.4

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 (137) hide show
  1. package/dist/build-components/Button/Button.d.ts +2 -2
  2. package/dist/build-components/Carousel/Carousel.d.ts +2 -2
  3. package/dist/build-components/CarouselButtons/CarouselButtons.d.ts +2 -2
  4. package/dist/build-components/CarouselDots/CarouselDots.d.ts +2 -2
  5. package/dist/build-components/CarouselItem/CarouselItem.d.ts +2 -2
  6. package/dist/build-components/CarouselProvider/CarouselProvider.d.ts +2 -2
  7. package/dist/build-components/Image/Image.d.ts +2 -2
  8. package/dist/build-components/Onboard/Onboard.d.ts +2 -2
  9. package/dist/build-components/OnboardBoardTitle/OnboardBoardTitle.d.ts +2 -2
  10. package/dist/build-components/OnboardButton/OnboardButton.d.ts +2 -2
  11. package/dist/build-components/OnboardButtons/OnboardButtons.d.ts +2 -2
  12. package/dist/build-components/OnboardExpandingDot/OnboardExpandingDot.d.ts +2 -2
  13. package/dist/build-components/OnboardFooter/OnboardFooter.d.ts +2 -2
  14. package/dist/build-components/OnboardImage/OnboardImage.d.ts +2 -2
  15. package/dist/build-components/OnboardItem/OnboardItem.d.ts +2 -2
  16. package/dist/build-components/OnboardProvider/OnboardProvider.d.ts +2 -2
  17. package/dist/build-components/OnboardSubtitle/OnboardSubtitle.d.ts +2 -2
  18. package/dist/build-components/RenderNode.generated.d.ts +1 -1
  19. package/dist/build-components/Text/Text.d.ts +2 -2
  20. package/dist/build-components/View/View.d.ts +2 -2
  21. package/dist/build-components/other.d.ts +3 -0
  22. package/dist/utils/generateRandomKeyForNode.d.ts +1 -0
  23. package/package.json +12 -5
  24. package/scripts/prebuild/build-components.js +528 -0
  25. package/scripts/prebuild/prebuild.js +11 -0
  26. package/scripts/public/bin.js +57 -0
  27. package/scripts/public/scripts/build/index.js +31 -0
  28. package/scripts/public/scripts/build/info.json +11 -0
  29. package/scripts/public/scripts/build/utils/checkFolderAndFilesValid.js +41 -0
  30. package/scripts/public/scripts/build/utils/checkPathExists.js +9 -0
  31. package/scripts/public/scripts/build/utils/createMissingFoldersAndFiles.js +54 -0
  32. package/scripts/public/scripts/build/utils/createRenderNodeGenerated.js +82 -0
  33. package/scripts/public/scripts/build/utils/getAllComponents.js +11 -0
  34. package/src/AttributesEditor.tsx +107 -0
  35. package/src/RenderMainNode.tsx +37 -0
  36. package/src/RenderPage.tsx +61 -0
  37. package/src/assets/devices.json +730 -0
  38. package/src/assets/samples/carousel-sample.json +108 -0
  39. package/src/assets/samples/getSamples.ts +28 -0
  40. package/src/assets/samples/simple-1.json +46 -0
  41. package/src/assets/samples/simple-2.json +233 -0
  42. package/src/assets/samples/vpn-onboard-1.json +799 -0
  43. package/src/assets/samples/vpn-onboard-2.json +790 -0
  44. package/src/assets/samples/vpn-onboard-3.json +803 -0
  45. package/src/assets/samples/vpn-onboard-4.json +804 -0
  46. package/src/build-components/Button/Button.tsx +13 -0
  47. package/src/build-components/Button/ButtonProps.generated.ts +21 -0
  48. package/src/build-components/Button/pattern.json +25 -0
  49. package/src/build-components/Carousel/Carousel.tsx +27 -0
  50. package/src/build-components/Carousel/CarouselProps.generated.ts +6 -0
  51. package/src/build-components/Carousel/pattern.json +9 -0
  52. package/src/build-components/CarouselButtons/CarouselButtons.tsx +47 -0
  53. package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +9 -0
  54. package/src/build-components/CarouselButtons/pattern.json +12 -0
  55. package/src/build-components/CarouselDots/CarouselDots.tsx +40 -0
  56. package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +14 -0
  57. package/src/build-components/CarouselDots/pattern.json +18 -0
  58. package/src/build-components/CarouselItem/CarouselItem.tsx +18 -0
  59. package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +6 -0
  60. package/src/build-components/CarouselItem/pattern.json +9 -0
  61. package/src/build-components/CarouselProvider/CarouselProvider.tsx +26 -0
  62. package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +6 -0
  63. package/src/build-components/CarouselProvider/pattern.json +9 -0
  64. package/src/build-components/Image/Image.tsx +35 -0
  65. package/src/build-components/Image/ImageProps.generated.ts +12 -0
  66. package/src/build-components/Image/pattern.json +15 -0
  67. package/src/build-components/Onboard/Onboard.tsx +14 -0
  68. package/src/build-components/Onboard/OnboardProps.generated.ts +6 -0
  69. package/src/build-components/Onboard/pattern.json +9 -0
  70. package/src/build-components/OnboardBoardTitle/OnboardBoardTitle.tsx +28 -0
  71. package/src/build-components/OnboardBoardTitle/OnboardBoardTitleProps.generated.ts +21 -0
  72. package/src/build-components/OnboardBoardTitle/pattern.json +25 -0
  73. package/src/build-components/OnboardButton/OnboardButton.tsx +59 -0
  74. package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +13 -0
  75. package/src/build-components/OnboardButton/pattern.json +16 -0
  76. package/src/build-components/OnboardButtons/OnboardButtons.tsx +76 -0
  77. package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +12 -0
  78. package/src/build-components/OnboardButtons/pattern.json +15 -0
  79. package/src/build-components/OnboardExpandingDot/OnboardExpandingDot.tsx +14 -0
  80. package/src/build-components/OnboardExpandingDot/OnboardExpandingDotProps.generated.ts +14 -0
  81. package/src/build-components/OnboardExpandingDot/pattern.json +18 -0
  82. package/src/build-components/OnboardFooter/OnboardFooter.tsx +13 -0
  83. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +24 -0
  84. package/src/build-components/OnboardFooter/pattern.json +28 -0
  85. package/src/build-components/OnboardImage/OnboardImage.tsx +14 -0
  86. package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +12 -0
  87. package/src/build-components/OnboardImage/pattern.json +15 -0
  88. package/src/build-components/OnboardItem/OnboardItem.tsx +29 -0
  89. package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +6 -0
  90. package/src/build-components/OnboardItem/pattern.json +9 -0
  91. package/src/build-components/OnboardProvider/OnboardProvider.tsx +65 -0
  92. package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +6 -0
  93. package/src/build-components/OnboardProvider/pattern.json +9 -0
  94. package/src/build-components/OnboardSubtitle/OnboardSubtitle.tsx +28 -0
  95. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +21 -0
  96. package/src/build-components/OnboardSubtitle/pattern.json +25 -0
  97. package/src/build-components/RenderNode.generated.tsx +97 -0
  98. package/src/build-components/Text/Text.tsx +23 -0
  99. package/src/build-components/Text/TextProps.generated.ts +21 -0
  100. package/src/build-components/Text/pattern.json +26 -0
  101. package/src/build-components/View/View.tsx +62 -0
  102. package/src/build-components/View/ViewProps.generated.ts +24 -0
  103. package/src/build-components/View/pattern.json +28 -0
  104. package/src/build-components/other.ts +6 -0
  105. package/src/index.ts +24 -0
  106. package/src/styles/index.scss +114 -0
  107. package/src/types/Device.ts +12 -0
  108. package/src/types/Node.ts +19 -0
  109. package/src/types/PreviewConfig.ts +19 -0
  110. package/src/types/Project.ts +11 -0
  111. package/src/types/TargetedScreenSize.ts +4 -0
  112. package/src/utils/analyseNode.ts +77 -0
  113. package/src/utils/generateRandomKeyForNode.ts +3 -0
  114. package/src/utils/getDevices.ts +6 -0
  115. package/src/utils/isCarousel.ts +36 -0
  116. package/src/utils/isOnboard.ts +54 -0
  117. package/src/utils/novaToJson.ts +253 -0
  118. package/src/utils/patterns.ts +63 -0
  119. package/dist/build-components/Button/ButtonProps.d.ts +0 -3
  120. package/dist/build-components/Carousel/CarouselProps.d.ts +0 -3
  121. package/dist/build-components/CarouselButtons/CarouselButtonsProps.d.ts +0 -3
  122. package/dist/build-components/CarouselDots/CarouselDotsProps.d.ts +0 -3
  123. package/dist/build-components/CarouselItem/CarouselItemProps.d.ts +0 -3
  124. package/dist/build-components/CarouselProvider/CarouselProviderProps.d.ts +0 -3
  125. package/dist/build-components/Image/ImageProps.d.ts +0 -3
  126. package/dist/build-components/Onboard/OnboardProps.d.ts +0 -3
  127. package/dist/build-components/OnboardBoardTitle/OnboardBoardTitleProps.d.ts +0 -3
  128. package/dist/build-components/OnboardButton/OnboardButtonProps.d.ts +0 -3
  129. package/dist/build-components/OnboardButtons/OnboardButtonsProps.d.ts +0 -3
  130. package/dist/build-components/OnboardExpandingDot/OnboardExpandingDotProps.d.ts +0 -3
  131. package/dist/build-components/OnboardFooter/OnboardFooterProps.d.ts +0 -3
  132. package/dist/build-components/OnboardImage/OnboardImageProps.d.ts +0 -3
  133. package/dist/build-components/OnboardItem/OnboardItemProps.d.ts +0 -3
  134. package/dist/build-components/OnboardProvider/OnboardProviderProps.d.ts +0 -3
  135. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.d.ts +0 -3
  136. package/dist/build-components/Text/TextProps.d.ts +0 -3
  137. package/dist/build-components/View/ViewProps.d.ts +0 -3
@@ -0,0 +1,804 @@
1
+ {
2
+ "name": "vpn-onboard-4 (legacy)",
3
+ "version": "0.0.0",
4
+ "type": "nova",
5
+ "previewConfig": {
6
+ "theme": "dark",
7
+ "screenSize": { "width": 375, "height": 812 },
8
+ "isRtl": false,
9
+ "screenStyle": {
10
+ "light": { "backgroundColor": "#FDFDFD", "color": "#161827" },
11
+ "dark": { "backgroundColor": "#12131A", "color": "#E9EBF9" }
12
+ },
13
+ "localication": {
14
+ "en": {
15
+ "onboard.title.one-page": "One Page",
16
+ "onboard.title.one-page2": "One Page",
17
+ "onboard.title.two-page": "Two Page",
18
+ "onboard.title.two-page2": "Two Page",
19
+ "onboard.title.three-page": "Three Page",
20
+ "onboard.title.three-page2": "Three Page",
21
+ "onboard.title.four-page": "Four Page",
22
+ "onboard.title.four-page2": "Four Page",
23
+ "onboard.subtitle.one-page": "One Page",
24
+ "onboard.subtitle.one-page2": "One Page",
25
+ "onboard.subtitle.two-page": "Two Page",
26
+ "onboard.subtitle.two-page2": "Two Page",
27
+ "onboard.subtitle.three-page": "Three Page",
28
+ "onboard.subtitle.three-page2": "Three Page",
29
+ "onboard.subtitle.four-page": "Four Page",
30
+ "onboard.subtitle.four-page2": "Four Page",
31
+ "onboard.next.one-page": "Next",
32
+ "onboard.next.two-page": "Next",
33
+ "onboard.next.three-page": "Next",
34
+ "onboard.skip.one-page": "Skip",
35
+ "onboard.skip.two-page": "Skip",
36
+ "onboard.skip.three-page": "Skip",
37
+ "onboard.allow.four-page": "Allow",
38
+ "view.onboarding.footer.description": "By clicking continue, you will be accepting the Terms of service and privacy policy",
39
+ "view.onboarding.btnPrivacy": "Privacy",
40
+ "view.onboarding.btnTerms": "Terms"
41
+ },
42
+ "ar": {
43
+ "onboard.title.one-page": " العربية",
44
+ "onboard.title.one-page2": " العربية",
45
+ "onboard.title.two-page": " العربية",
46
+ "onboard.title.two-page2": " العربية",
47
+ "onboard.title.three-page": " العربية",
48
+ "onboard.title.three-page2": " العربية",
49
+ "onboard.title.four-page": " العربية",
50
+ "onboard.title.four-page2": " العربية",
51
+ "onboard.subtitle.one-page": " العربية",
52
+ "onboard.subtitle.one-page2": " العربية",
53
+ "onboard.subtitle.two-page": " العربية",
54
+ "onboard.subtitle.two-page2": " العربية",
55
+ "onboard.subtitle.three-page": " العربية",
56
+ "onboard.subtitle.three-page2": " العربية",
57
+ "onboard.subtitle.four-page": " العربية",
58
+ "onboard.subtitle.four-page2": " العربية",
59
+ "onboard.next.one-page": "التالي",
60
+ "onboard.next.two-page": "التالي",
61
+ "onboard.next.three-page": "التالي",
62
+ "onboard.skip.one-page": "تخطي",
63
+ "onboard.skip.two-page": "تخطي",
64
+ "onboard.skip.three-page": "تخطي",
65
+ "onboard.allow.four-page": "السماح",
66
+ "view.onboarding.footer.description": "بالمتابعة فإنك توافق على",
67
+ "view.onboarding.btnPrivacy": "الخصوصية",
68
+ "view.onboarding.btnTerms": "الشروط"
69
+ }
70
+ },
71
+ "defaultLanguage": "en"
72
+ },
73
+ "data": {
74
+ "name": "Dark TextCall Onboard - 2",
75
+ "key": "app_onboard_ab_classic",
76
+ "theme": "dark",
77
+ "order": 8,
78
+ "data": {
79
+ "layout": "onboard-layout",
80
+ "key": "c92tR8J5wbTb3fav",
81
+ "attributes": {
82
+ "use_safe_area_inset": true,
83
+ "general_components": [
84
+ {
85
+ "layout": "dots-layout",
86
+ "key": "cfVlTs4XoBH6eHhy",
87
+ "attributes": {
88
+ "position": "before_buttons",
89
+ "dots_type": "Dots Type Info",
90
+ "dot": [
91
+ {
92
+ "layout": "expanding_dot",
93
+ "key": "ca08ia4pBmSgWK9o",
94
+ "attributes": {
95
+ "inactive_dot_opacity": null,
96
+ "active_dot_color": null,
97
+ "expanding_dot_width": null,
98
+ "dot_style": null,
99
+ "container_style": null
100
+ }
101
+ }
102
+ ],
103
+ "styles": []
104
+ }
105
+ },
106
+ {
107
+ "layout": "footer-layout",
108
+ "key": "c1yg0ajCz15VwbXO",
109
+ "attributes": {
110
+ "texts": [
111
+ {
112
+ "layout": "Text",
113
+ "key": "cUEOEGlJHu98Bm4M",
114
+ "attributes": {
115
+ "text_localization_key": "view.onboarding.footer.description",
116
+ "text_color": "#81838F",
117
+ "width": null,
118
+ "linkedwords": [
119
+ {
120
+ "layout": "LinkedWords",
121
+ "key": "clmIqcwqLbpf5lIC",
122
+ "attributes": {
123
+ "linked_word_localization_key": "view.onboarding.btnPrivacy",
124
+ "linked_word_color": "#81838F",
125
+ "page": "privacy"
126
+ }
127
+ },
128
+ {
129
+ "layout": "LinkedWords",
130
+ "key": "cR2iFjXZv6aKSipt",
131
+ "attributes": {
132
+ "linked_word_localization_key": "view.onboarding.btnTerms",
133
+ "linked_word_color": "#81838F",
134
+ "page": "terms"
135
+ }
136
+ }
137
+ ],
138
+ "styles": []
139
+ }
140
+ }
141
+ ]
142
+ }
143
+ }
144
+ ],
145
+ "data": [
146
+ {
147
+ "layout": "simple-onboard-layout",
148
+ "key": "ctJKE0JpoyY2U2py",
149
+ "attributes": {
150
+ "key": "app_onboard-page1",
151
+ "min_android_version": null,
152
+ "components": [
153
+ {
154
+ "layout": "title-layout",
155
+ "key": "czW0y11EJ3Gh2zzu",
156
+ "attributes": {
157
+ "title_localization_key": "onboard.title.one-page2",
158
+ "number_of_lines": "2",
159
+ "adaptive_font_size": false,
160
+ "title_color": "#FDFDFD",
161
+ "coloredwords": [],
162
+ "styles": [
163
+ {
164
+ "layout": "style-layout",
165
+ "key": "cFtkJ7cGjlbh0Onm",
166
+ "attributes": {
167
+ "styles": [
168
+ {
169
+ "layout": "Styles",
170
+ "key": "cRfjSLASNf4EfmRk",
171
+ "attributes": {
172
+ "type": "textStyle",
173
+ "style": {
174
+ "textAlign": "center",
175
+ "marginTop": 40
176
+ }
177
+ }
178
+ }
179
+ ]
180
+ }
181
+ }
182
+ ]
183
+ }
184
+ },
185
+ {
186
+ "layout": "image-layout",
187
+ "key": "ccaPDeW3TvadGknh",
188
+ "attributes": {
189
+ "is_bg_image": false,
190
+ "height": "350",
191
+ "android_height": "350",
192
+ "ios_height": "350",
193
+ "styles": [],
194
+ "image": "https://textcall-dev.s3.amazonaws.com/onboard/high/aadf6191a8f1091831647b3a01e1a1aa.jpg"
195
+ }
196
+ },
197
+ {
198
+ "layout": "subtitle-layout",
199
+ "key": "cS8AJFtYl83g6N7l",
200
+ "attributes": {
201
+ "subtitle_localization_key": "onboard.subtitle.one-page2",
202
+ "subtitle_color": "#C7C7C7",
203
+ "subtitle_font": null,
204
+ "styles": [
205
+ {
206
+ "layout": "style-layout",
207
+ "key": "cfxys3dqXXQIoWib",
208
+ "attributes": {
209
+ "styles": [
210
+ {
211
+ "layout": "Styles",
212
+ "key": "cdqzVzWecbtQHHOZ",
213
+ "attributes": {
214
+ "type": "textStyle",
215
+ "style": {
216
+ "textAlign": "center",
217
+ "fontSize": 16
218
+ }
219
+ }
220
+ }
221
+ ]
222
+ }
223
+ }
224
+ ]
225
+ }
226
+ },
227
+ {
228
+ "layout": "Buttons",
229
+ "key": "cADNBYmKZhuqHDe3",
230
+ "attributes": {
231
+ "buttons_direction": "row",
232
+ "buttons": [
233
+ {
234
+ "layout": "skip-button-layout",
235
+ "key": "cvgeWjSVK9714zE4",
236
+ "attributes": {
237
+ "flex": "1",
238
+ "button_text_localization_key": "onboard.skip.one-page",
239
+ "button_text_color": "#A9AAAC",
240
+ "is_transparant_bg": false,
241
+ "button_background_color": "#ffffff00",
242
+ "actions": [
243
+ {
244
+ "layout": "action-layout",
245
+ "key": "cYbS4tQuDbqRjJP6",
246
+ "attributes": {
247
+ "events": [
248
+ {
249
+ "layout": "Navigate",
250
+ "key": "cnwVlRVwR2Oa37Wa",
251
+ "attributes": {
252
+ "next_page_key": "app_onboard-page4",
253
+ "if_allowed_this_permissions": null,
254
+ "if_not_allowed_this_permissions": null,
255
+ "navigate_backward": null,
256
+ "close_button_delay": null
257
+ }
258
+ }
259
+ ]
260
+ }
261
+ }
262
+ ],
263
+ "styles": [],
264
+ "animation": null,
265
+ "animation_color": null
266
+ }
267
+ },
268
+ {
269
+ "layout": "button-layout",
270
+ "key": "cO7EfoP6WnwCbZFN",
271
+ "attributes": {
272
+ "show_text": true,
273
+ "button_text_localization_key": "onboard.next.one-page",
274
+ "is_passive_button": false,
275
+ "flex": "1",
276
+ "button_text_color": "#FFFFFF",
277
+ "button_background_color": "#0066FF",
278
+ "show_icon": false,
279
+ "icons": [],
280
+ "actions": [
281
+ {
282
+ "layout": "action-layout",
283
+ "key": "cLDTXbDjepmRilZP",
284
+ "attributes": {
285
+ "events": [
286
+ {
287
+ "layout": "Navigate",
288
+ "key": "cVe34D6lvpt6jfkc",
289
+ "attributes": {
290
+ "next_page_key": "app_onboard-page2",
291
+ "if_allowed_this_permissions": null,
292
+ "if_not_allowed_this_permissions": null,
293
+ "navigate_backward": null,
294
+ "close_button_delay": null
295
+ }
296
+ }
297
+ ]
298
+ }
299
+ }
300
+ ],
301
+ "styles": [],
302
+ "animation": null,
303
+ "animation_color": null
304
+ }
305
+ }
306
+ ]
307
+ }
308
+ }
309
+ ]
310
+ }
311
+ },
312
+ {
313
+ "layout": "simple-onboard-layout",
314
+ "key": "cJ5P9VObBmpapdIz",
315
+ "attributes": {
316
+ "key": "app_onboard-page2",
317
+ "min_android_version": null,
318
+ "components": [
319
+ {
320
+ "layout": "title-layout",
321
+ "key": "cWaHDeqd8N5LpAdr",
322
+ "attributes": {
323
+ "title_localization_key": "onboard.title.two-page2",
324
+ "number_of_lines": "2",
325
+ "adaptive_font_size": false,
326
+ "title_color": "#FDFDFD",
327
+ "coloredwords": [],
328
+ "styles": [
329
+ {
330
+ "layout": "style-layout",
331
+ "key": "c5n7fUy2koZD1iY5",
332
+ "attributes": {
333
+ "styles": [
334
+ {
335
+ "layout": "Styles",
336
+ "key": "c7uK89glQz4MHrZc",
337
+ "attributes": {
338
+ "type": "textStyle",
339
+ "style": {
340
+ "textAlign": "center",
341
+ "marginTop": 40
342
+ }
343
+ }
344
+ }
345
+ ]
346
+ }
347
+ }
348
+ ]
349
+ }
350
+ },
351
+ {
352
+ "layout": "image-layout",
353
+ "key": "czvCm7FXp4sQrlBi",
354
+ "attributes": {
355
+ "is_bg_image": false,
356
+ "height": "350",
357
+ "android_height": "350",
358
+ "ios_height": "350",
359
+ "styles": []
360
+ }
361
+ },
362
+ {
363
+ "layout": "subtitle-layout",
364
+ "key": "cJO33EgsbvxZVV57",
365
+ "attributes": {
366
+ "subtitle_localization_key": "onboard.subtitle.two-page2",
367
+ "subtitle_color": "#C7C7C7",
368
+ "subtitle_font": null,
369
+ "styles": [
370
+ {
371
+ "layout": "style-layout",
372
+ "key": "cKZLIPtywsfi5Mbz",
373
+ "attributes": {
374
+ "styles": [
375
+ {
376
+ "layout": "Styles",
377
+ "key": "cce8Yv695FQgSOIH",
378
+ "attributes": {
379
+ "type": "textStyle",
380
+ "style": {
381
+ "textAlign": "center",
382
+ "fontSize": 16
383
+ }
384
+ }
385
+ }
386
+ ]
387
+ }
388
+ }
389
+ ]
390
+ }
391
+ },
392
+ {
393
+ "layout": "Buttons",
394
+ "key": "cR43NhA7k4XN4bFU",
395
+ "attributes": {
396
+ "buttons_direction": "row",
397
+ "buttons": [
398
+ {
399
+ "layout": "skip-button-layout",
400
+ "key": "cZbvXpcCDBzCy4xq",
401
+ "attributes": {
402
+ "flex": "1",
403
+ "button_text_localization_key": "onboard.skip.two-page",
404
+ "button_text_color": "#A9AAAC",
405
+ "is_transparant_bg": false,
406
+ "button_background_color": "#ffffff00",
407
+ "actions": [
408
+ {
409
+ "layout": "action-layout",
410
+ "key": "cOweHSx9FF1rKmXE",
411
+ "attributes": {
412
+ "events": [
413
+ {
414
+ "layout": "Permission",
415
+ "key": "cfnK7ww1nyzVLquV",
416
+ "attributes": {
417
+ "permission": "att"
418
+ }
419
+ },
420
+ {
421
+ "layout": "Navigate",
422
+ "key": "cdQXhjSGC97aDV5Q",
423
+ "attributes": {
424
+ "next_page_key": "app_onboard-page4",
425
+ "if_allowed_this_permissions": null,
426
+ "if_not_allowed_this_permissions": null,
427
+ "navigate_backward": null,
428
+ "close_button_delay": null
429
+ }
430
+ }
431
+ ]
432
+ }
433
+ }
434
+ ],
435
+ "styles": [],
436
+ "animation": null,
437
+ "animation_color": null
438
+ }
439
+ },
440
+ {
441
+ "layout": "button-layout",
442
+ "key": "cP3ZMgA0DgYBMTjH",
443
+ "attributes": {
444
+ "show_text": true,
445
+ "button_text_localization_key": "onboard.next.two-page",
446
+ "is_passive_button": false,
447
+ "flex": "1",
448
+ "button_text_color": "#FFFFFF",
449
+ "button_background_color": "#0066FF",
450
+ "show_icon": false,
451
+ "icons": [],
452
+ "actions": [
453
+ {
454
+ "layout": "action-layout",
455
+ "key": "c5ud1yXzSHQOl99m",
456
+ "attributes": {
457
+ "events": [
458
+ {
459
+ "layout": "Permission",
460
+ "key": "caWvIjHlpzkWsSkU",
461
+ "attributes": {
462
+ "permission": "att"
463
+ }
464
+ },
465
+ {
466
+ "layout": "Navigate",
467
+ "key": "cqCP16bRc8OrVYnj",
468
+ "attributes": {
469
+ "next_page_key": "app_onboard-page3",
470
+ "if_allowed_this_permissions": null,
471
+ "if_not_allowed_this_permissions": null,
472
+ "navigate_backward": null,
473
+ "close_button_delay": null
474
+ }
475
+ }
476
+ ]
477
+ }
478
+ }
479
+ ],
480
+ "styles": [],
481
+ "animation": null,
482
+ "animation_color": null
483
+ }
484
+ }
485
+ ]
486
+ }
487
+ }
488
+ ]
489
+ }
490
+ },
491
+ {
492
+ "layout": "simple-onboard-layout",
493
+ "key": "cxNW3BfLJV7m1Rwb",
494
+ "attributes": {
495
+ "key": "app_onboard-page3",
496
+ "min_android_version": null,
497
+ "components": [
498
+ {
499
+ "layout": "title-layout",
500
+ "key": "c4jWJqatyNrpRDv5",
501
+ "attributes": {
502
+ "title_localization_key": "onboard.title.three-page2",
503
+ "number_of_lines": "2",
504
+ "adaptive_font_size": false,
505
+ "title_color": "#FDFDFD",
506
+ "coloredwords": [],
507
+ "styles": [
508
+ {
509
+ "layout": "style-layout",
510
+ "key": "cyxWxkO4H6GcLGpV",
511
+ "attributes": {
512
+ "styles": [
513
+ {
514
+ "layout": "Styles",
515
+ "key": "c2EQHxoKIHqE6usb",
516
+ "attributes": {
517
+ "type": "textStyle",
518
+ "style": {
519
+ "textAlign": "center",
520
+ "marginTop": 40
521
+ }
522
+ }
523
+ }
524
+ ]
525
+ }
526
+ }
527
+ ]
528
+ }
529
+ },
530
+ {
531
+ "layout": "image-layout",
532
+ "key": "cQPrCUhAFzzvZvFL",
533
+ "attributes": {
534
+ "is_bg_image": false,
535
+ "height": "350",
536
+ "android_height": "350",
537
+ "ios_height": "350",
538
+ "styles": []
539
+ }
540
+ },
541
+ {
542
+ "layout": "subtitle-layout",
543
+ "key": "c845kgEFTytoeb5n",
544
+ "attributes": {
545
+ "subtitle_localization_key": "onboard.subtitle.three-page2",
546
+ "subtitle_color": "#C7C7C7",
547
+ "subtitle_font": null,
548
+ "styles": [
549
+ {
550
+ "layout": "style-layout",
551
+ "key": "c8I866TChSrcTxLA",
552
+ "attributes": {
553
+ "styles": [
554
+ {
555
+ "layout": "Styles",
556
+ "key": "cPi4CsGpMpnyl1Qo",
557
+ "attributes": {
558
+ "type": "textStyle",
559
+ "style": {
560
+ "textAlign": "center",
561
+ "fontSize": 16
562
+ }
563
+ }
564
+ }
565
+ ]
566
+ }
567
+ }
568
+ ]
569
+ }
570
+ },
571
+ {
572
+ "layout": "Buttons",
573
+ "key": "cHRet3F1pMbLLv4e",
574
+ "attributes": {
575
+ "buttons_direction": "row",
576
+ "buttons": [
577
+ {
578
+ "layout": "skip-button-layout",
579
+ "key": "cPjaITcYuN3jYXaz",
580
+ "attributes": {
581
+ "flex": "1",
582
+ "button_text_localization_key": "onboard.skip.three-page",
583
+ "button_text_color": "#A9AAAC",
584
+ "is_transparant_bg": false,
585
+ "button_background_color": "#ffffff00",
586
+ "actions": [
587
+ {
588
+ "layout": "action-layout",
589
+ "key": "cwHy3RdNIAhrdyk9",
590
+ "attributes": {
591
+ "events": [
592
+ {
593
+ "layout": "Navigate",
594
+ "key": "c9tQ5JwLNEl4m6iE",
595
+ "attributes": {
596
+ "next_page_key": "app_onboard-page4",
597
+ "if_allowed_this_permissions": null,
598
+ "if_not_allowed_this_permissions": null,
599
+ "navigate_backward": null,
600
+ "close_button_delay": null
601
+ }
602
+ }
603
+ ]
604
+ }
605
+ }
606
+ ],
607
+ "styles": [],
608
+ "animation": null,
609
+ "animation_color": null
610
+ }
611
+ },
612
+ {
613
+ "layout": "button-layout",
614
+ "key": "calWhCnS7bVqDLSm",
615
+ "attributes": {
616
+ "show_text": true,
617
+ "button_text_localization_key": "onboard.next.three-page",
618
+ "is_passive_button": false,
619
+ "flex": "1",
620
+ "button_text_color": "#FFFFFF",
621
+ "button_background_color": "#0066FF",
622
+ "show_icon": false,
623
+ "icons": [],
624
+ "actions": [
625
+ {
626
+ "layout": "action-layout",
627
+ "key": "c5WDaaMMyzF6wbMw",
628
+ "attributes": {
629
+ "events": [
630
+ {
631
+ "layout": "Permission",
632
+ "key": "cVbu3bzJMfCd2WQY",
633
+ "attributes": {
634
+ "permission": "rating"
635
+ }
636
+ },
637
+ {
638
+ "layout": "Navigate",
639
+ "key": "csga6VsmtRL4dJoH",
640
+ "attributes": {
641
+ "next_page_key": "app_onboard-page4",
642
+ "if_allowed_this_permissions": null,
643
+ "if_not_allowed_this_permissions": null,
644
+ "navigate_backward": null,
645
+ "close_button_delay": null
646
+ }
647
+ }
648
+ ]
649
+ }
650
+ }
651
+ ],
652
+ "styles": [],
653
+ "animation": null,
654
+ "animation_color": null
655
+ }
656
+ }
657
+ ]
658
+ }
659
+ }
660
+ ]
661
+ }
662
+ },
663
+ {
664
+ "layout": "simple-onboard-layout",
665
+ "key": "c6OPQRoj7nIYq8qP",
666
+ "attributes": {
667
+ "key": "app_onboard-page4",
668
+ "min_android_version": null,
669
+ "components": [
670
+ {
671
+ "layout": "title-layout",
672
+ "key": "cY7hE2QfCFUpAvIr",
673
+ "attributes": {
674
+ "title_localization_key": "onboard.title.four-page2",
675
+ "number_of_lines": "2",
676
+ "adaptive_font_size": false,
677
+ "title_color": "#FDFDFD",
678
+ "coloredwords": [],
679
+ "styles": [
680
+ {
681
+ "layout": "style-layout",
682
+ "key": "ch0psI5S3gY93lkS",
683
+ "attributes": {
684
+ "styles": [
685
+ {
686
+ "layout": "Styles",
687
+ "key": "ci8SBK0k6Ox0cAY4",
688
+ "attributes": {
689
+ "type": "textStyle",
690
+ "style": {
691
+ "textAlign": "center",
692
+ "marginTop": 40
693
+ }
694
+ }
695
+ }
696
+ ]
697
+ }
698
+ }
699
+ ]
700
+ }
701
+ },
702
+ {
703
+ "layout": "image-layout",
704
+ "key": "cyzRYhHdmYpSZKWz",
705
+ "attributes": {
706
+ "is_bg_image": false,
707
+ "height": "350",
708
+ "android_height": "350",
709
+ "ios_height": "350",
710
+ "styles": []
711
+ }
712
+ },
713
+ {
714
+ "layout": "subtitle-layout",
715
+ "key": "cEtGSW5s89pVPO3p",
716
+ "attributes": {
717
+ "subtitle_localization_key": "onboard.subtitle.four-page2",
718
+ "subtitle_color": "#C7C7C7",
719
+ "subtitle_font": null,
720
+ "styles": [
721
+ {
722
+ "layout": "style-layout",
723
+ "key": "c7q1e8klEqvuTib2",
724
+ "attributes": {
725
+ "styles": [
726
+ {
727
+ "layout": "Styles",
728
+ "key": "cRoSg4908XkN9tLr",
729
+ "attributes": {
730
+ "type": "textStyle",
731
+ "style": {
732
+ "textAlign": "center",
733
+ "fontSize": 16
734
+ }
735
+ }
736
+ }
737
+ ]
738
+ }
739
+ }
740
+ ]
741
+ }
742
+ },
743
+ {
744
+ "layout": "Buttons",
745
+ "key": "cFOXUx3qf7wvRQPK",
746
+ "attributes": {
747
+ "buttons_direction": "row",
748
+ "buttons": [
749
+ {
750
+ "layout": "button-layout",
751
+ "key": "cILIurDiN8C6Nk9t",
752
+ "attributes": {
753
+ "show_text": true,
754
+ "button_text_localization_key": "onboard.allow.four-page",
755
+ "is_passive_button": false,
756
+ "flex": "1",
757
+ "button_text_color": "#FFFFFF",
758
+ "button_background_color": "#0066FF",
759
+ "show_icon": false,
760
+ "icons": [],
761
+ "actions": [
762
+ {
763
+ "layout": "action-layout",
764
+ "key": "cPkTX9lI025TuA2d",
765
+ "attributes": {
766
+ "events": [
767
+ {
768
+ "layout": "Permission",
769
+ "key": "cenFPRHcA87TmbkC",
770
+ "attributes": {
771
+ "permission": "notification"
772
+ }
773
+ },
774
+ {
775
+ "layout": "Navigate",
776
+ "key": "c0ZQIOWZ81XjaWmA",
777
+ "attributes": {
778
+ "next_page_key": "home",
779
+ "if_allowed_this_permissions": null,
780
+ "if_not_allowed_this_permissions": null,
781
+ "navigate_backward": null,
782
+ "close_button_delay": null
783
+ }
784
+ }
785
+ ]
786
+ }
787
+ }
788
+ ],
789
+ "styles": [],
790
+ "animation": null,
791
+ "animation_color": null
792
+ }
793
+ }
794
+ ]
795
+ }
796
+ }
797
+ ]
798
+ }
799
+ }
800
+ ]
801
+ }
802
+ }
803
+ }
804
+ }