@developer_tribe/react-builder 1.2.26 → 1.2.28

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 (156) hide show
  1. package/dist/assets/samples/getSamples.d.ts +0 -3
  2. package/dist/build-components/BIcon/BIconProps.generated.d.ts +1 -2
  3. package/dist/build-components/CountDown/CountDownProps.generated.d.ts +2 -1
  4. package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +1 -2
  5. package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +1 -2
  6. package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +1 -2
  7. package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +1 -2
  8. package/dist/build-components/PaywallOptions/usePaywallOptionParamsFactory.d.ts +1 -1
  9. package/dist/build-components/PriceTag/PriceTag.d.ts +5 -0
  10. package/dist/build-components/PriceTag/PriceTagProps.generated.d.ts +63 -0
  11. package/dist/build-components/Pricing/Pricing.d.ts +5 -0
  12. package/dist/build-components/Pricing/PricingProps.generated.d.ts +59 -0
  13. package/dist/build-components/Promo/Promo.d.ts +5 -0
  14. package/dist/build-components/Promo/PromoProps.generated.d.ts +59 -0
  15. package/dist/build-components/Text/TextProps.generated.d.ts +1 -2
  16. package/dist/build-components/index.d.ts +4 -1
  17. package/dist/build-components/patterns.generated.d.ts +1405 -202
  18. package/dist/components/BuilderProvider.d.ts +5 -3
  19. package/dist/components/ParamsProvider.d.ts +16 -8
  20. package/dist/hooks/useSyncHtmlThemeClass.d.ts +1 -1
  21. package/dist/index.cjs.js +4 -4
  22. package/dist/index.cjs.js.map +1 -1
  23. package/dist/index.d.ts +15 -3
  24. package/dist/index.esm.js +4 -4
  25. package/dist/index.esm.js.map +1 -1
  26. package/dist/index.web.cjs.js +4 -4
  27. package/dist/index.web.cjs.js.map +1 -1
  28. package/dist/index.web.esm.js +4 -4
  29. package/dist/index.web.esm.js.map +1 -1
  30. package/dist/logger.d.ts +18 -0
  31. package/dist/modals/InspectModal.d.ts +5 -0
  32. package/dist/modals/index.d.ts +1 -1
  33. package/dist/pages/ProjectPage.d.ts +3 -3
  34. package/dist/paywall/hooks/useCalculateLocalizedPrice.d.ts +4 -2
  35. package/dist/paywall/hooks/useDiscountRate.d.ts +3 -2
  36. package/dist/paywall/types/paywall-types.d.ts +7 -32
  37. package/dist/product-base/buildPaywallLocalizationParams.d.ts +16 -0
  38. package/dist/product-base/calculations.d.ts +29 -0
  39. package/dist/product-base/extractAndroidParams.d.ts +24 -0
  40. package/dist/product-base/extractIOSParams.d.ts +24 -0
  41. package/dist/product-base/index.d.ts +27 -0
  42. package/dist/product-base/periodLocalizationKeys.d.ts +44 -0
  43. package/dist/product-base/types.d.ts +155 -0
  44. package/dist/product-base/usePaywallLocalizationParams.d.ts +29 -0
  45. package/dist/store.d.ts +7 -1
  46. package/dist/styles.css +1 -1
  47. package/dist/types/PreviewConfig.d.ts +10 -16
  48. package/dist/utils/extractTextStyle/extractTextStyle.d.ts +2 -2
  49. package/dist/utils/extractTextStyle/extractTextStyleNative.d.ts +2 -2
  50. package/dist/utils/replaceLocalizationParams.d.ts +1 -1
  51. package/package.json +2 -2
  52. package/scripts/migrate-samples-to-current.ts +3 -3
  53. package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +28 -12
  54. package/src/DeviceMockFrame.tsx +15 -10
  55. package/src/assets/meta.json +1 -1
  56. package/src/assets/samples/carousel-sample.json +6 -5
  57. package/src/assets/samples/getSamples.ts +16 -49
  58. package/src/assets/samples/paywall-1.json +64 -22
  59. package/src/assets/samples/paywall-2.json +0 -15
  60. package/src/assets/samples/paywall-app-delete-offer.json +0 -15
  61. package/src/assets/samples/paywall-app-open-offer.json +0 -15
  62. package/src/assets/samples/paywall-back-offer.json +0 -15
  63. package/src/assets/samples/paywall-notification-offer.json +0 -15
  64. package/src/assets/samples/simple-1.json +1 -16
  65. package/src/assets/samples/simple-2.json +0 -15
  66. package/src/assets/samples/unmigrated-builder-1.1.1.json +0 -3
  67. package/src/assets/samples/unmigrated-builder1.json +0 -3
  68. package/src/assets/samples/unvalidated-builder1.json +0 -3
  69. package/src/assets/samples/unvalidated-crash1.json +0 -3
  70. package/src/assets/samples/unvalidated-crashcomponent1.json +0 -3
  71. package/src/assets/samples/vpn-onboard-1.json +1 -34
  72. package/src/assets/samples/vpn-onboard-2.json +1 -34
  73. package/src/assets/samples/vpn-onboard-3.json +1 -42
  74. package/src/assets/samples/vpn-onboard-4.json +0 -73
  75. package/src/assets/samples/vpn-onboard-5.json +0 -73
  76. package/src/assets/samples/vpn-onboard-6.json +0 -73
  77. package/src/assets/samples/vpn-onboard-7.json +529 -0
  78. package/src/attribute-analyser/style/native/useExtractImageStyle.ts +1 -4
  79. package/src/attribute-analyser/style/native/useExtractTextStyle.ts +3 -12
  80. package/src/attribute-analyser/style/native/useExtractViewStyle.ts +1 -4
  81. package/src/attribute-analyser/style/web/useExtractImageStyle.ts +1 -4
  82. package/src/attribute-analyser/style/web/useExtractTextStyle.ts +3 -12
  83. package/src/attribute-analyser/style/web/useExtractViewStyle.ts +1 -4
  84. package/src/attributes-editor/useAttributesEditorModel.ts +5 -52
  85. package/src/build-components/BIcon/BIconProps.generated.ts +1 -2
  86. package/src/build-components/CarouselDots/CarouselDots.tsx +6 -13
  87. package/src/build-components/CountDown/CountDownProps.generated.ts +2 -1
  88. package/src/build-components/NavigationBarColor/NavigationBarColor.tsx +2 -2
  89. package/src/build-components/OnboardButton/OnboardButton.tsx +1 -2
  90. package/src/build-components/OnboardDot/OnboardDot.tsx +6 -18
  91. package/src/build-components/OnboardFooter/OnboardFooter.tsx +5 -3
  92. package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +1 -2
  93. package/src/build-components/OnboardFooter/pattern.json +1 -1
  94. package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +1 -2
  95. package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +1 -2
  96. package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +1 -2
  97. package/src/build-components/PaywallOptions/PaywallOptions.tsx +3 -3
  98. package/src/build-components/PaywallOptions/usePaywallOptionParamsFactory.ts +26 -13
  99. package/src/build-components/PaywallProvider/PaywallProvider.tsx +51 -12
  100. package/src/build-components/PriceTag/PriceTag.tsx +25 -0
  101. package/src/build-components/PriceTag/PriceTagProps.generated.ts +83 -0
  102. package/src/build-components/PriceTag/pattern.json +53 -0
  103. package/src/build-components/Pricing/Pricing.tsx +13 -0
  104. package/src/build-components/Pricing/PricingProps.generated.ts +76 -0
  105. package/src/build-components/Pricing/pattern.json +25 -0
  106. package/src/build-components/Promo/Promo.tsx +13 -0
  107. package/src/build-components/Promo/PromoProps.generated.ts +76 -0
  108. package/src/build-components/Promo/pattern.json +25 -0
  109. package/src/build-components/RadioButton/RadioButton.tsx +3 -5
  110. package/src/build-components/RenderNode.generated.tsx +15 -0
  111. package/src/build-components/StatusBarColor/StatusBarColor.tsx +2 -2
  112. package/src/build-components/Text/Text.tsx +12 -5
  113. package/src/build-components/Text/TextProps.generated.ts +1 -2
  114. package/src/build-components/Text/pattern.json +3 -2
  115. package/src/build-components/index.ts +15 -0
  116. package/src/build-components/patterns.generated.ts +1454 -181
  117. package/src/components/BottomBar.tsx +42 -39
  118. package/src/components/BuilderProvider.tsx +41 -14
  119. package/src/components/LocalizationParamsProvider.tsx +1 -1
  120. package/src/components/ParamsProvider.tsx +36 -11
  121. package/src/hooks/useLocalize.ts +7 -4
  122. package/src/hooks/useParams.ts +1 -1
  123. package/src/hooks/useSyncHtmlThemeClass.ts +2 -2
  124. package/src/index.ts +56 -8
  125. package/src/logger.ts +39 -0
  126. package/src/modals/InspectModal.tsx +331 -0
  127. package/src/modals/ProductPresetsModal.tsx +6 -13
  128. package/src/modals/index.ts +1 -1
  129. package/src/pages/DebugJsonPage.tsx +9 -22
  130. package/src/pages/ProjectDebug.tsx +1 -1
  131. package/src/pages/ProjectPage.tsx +29 -11
  132. package/src/pages/tabs/SideTool.tsx +28 -104
  133. package/src/paywall/hooks/useCalculateLocalizedPrice.ts +8 -3
  134. package/src/paywall/hooks/useDiscountRate.ts +11 -3
  135. package/src/paywall/types/paywall-types.ts +7 -38
  136. package/src/product-base/buildPaywallLocalizationParams.ts +100 -0
  137. package/src/product-base/calculations.ts +93 -0
  138. package/src/product-base/extractAndroidParams.ts +207 -0
  139. package/src/product-base/extractIOSParams.ts +199 -0
  140. package/src/product-base/index.ts +28 -0
  141. package/src/product-base/mockProducts.json +489 -0
  142. package/src/product-base/periodLocalizationKeys.ts +114 -0
  143. package/src/product-base/types.ts +183 -0
  144. package/src/product-base/usePaywallLocalizationParams.ts +61 -0
  145. package/src/store.ts +18 -1
  146. package/src/styles/index.scss +1 -0
  147. package/src/styles/modals/_inspect-modal.scss +155 -0
  148. package/src/types/PreviewConfig.ts +157 -16
  149. package/src/utils/extractTextStyle/extractTextStyle.ts +14 -6
  150. package/src/utils/extractTextStyle/extractTextStyleNative.ts +8 -6
  151. package/src/utils/logRenderStore.ts +6 -10
  152. package/src/utils/parseColor.ts +0 -1
  153. package/src/utils/replaceLocalizationParams.ts +8 -4
  154. package/dist/modals/ScreenColorsModal.d.ts +0 -8
  155. package/src/assets/products.json +0 -98
  156. package/src/modals/ScreenColorsModal.tsx +0 -121
@@ -19,6 +19,7 @@ import vpnOnboard3 from './vpn-onboard-3.json';
19
19
  import vpnOnboard4 from './vpn-onboard-4.json';
20
20
  import vpnOnboard5 from './vpn-onboard-5.json';
21
21
  import vpnOnboard6 from './vpn-onboard-6.json';
22
+ import vpnOnboard7 from './vpn-onboard-7.json';
22
23
  import { defaultAppConfig } from '../../types/PreviewConfig';
23
24
 
24
25
  function normalizeSample(sample: any): Project {
@@ -29,61 +30,27 @@ function normalizeSample(sample: any): Project {
29
30
  }
30
31
 
31
32
  export function getSamples(): Project[] {
32
- const onboardSamples = [
33
- vpnOnboard1,
34
- vpnOnboard2,
35
- vpnOnboard3,
36
- vpnOnboard4,
37
- vpnOnboard5,
38
- vpnOnboard6,
39
- ].map(normalizeSample);
40
-
41
- return [
42
- normalizeSample(simple1),
43
- normalizeSample(simple2),
44
- normalizeSample(carouselSample),
45
- normalizeSample(unvalidatedBuilder1),
46
- normalizeSample(unvalidatedCrash1),
47
- normalizeSample(unvalidatedCrashComponent1),
48
- normalizeSample(unmigratedBuilder1),
49
- normalizeSample(unmigratedBuilder1_1_1),
50
- normalizeSample(paywall1),
51
- normalizeSample(paywall2),
52
- normalizeSample(paywallBackOffer),
53
- normalizeSample(paywallNotificationOffer),
54
- normalizeSample(paywallAppOpenOffer),
55
- normalizeSample(paywallAppDeleteOffer),
56
- ...onboardSamples,
57
- ];
58
- }
59
-
60
- export function getBasicSamples(): Project[] {
61
- return [
62
- normalizeSample(simple1),
63
- normalizeSample(simple2),
64
- normalizeSample(carouselSample),
65
- normalizeSample(unvalidatedBuilder1),
66
- ];
67
- }
68
-
69
- export function getOnboardSamples(): Project[] {
70
33
  return [
34
+ simple1,
35
+ simple2,
36
+ carouselSample,
37
+ unvalidatedBuilder1,
38
+ unvalidatedCrash1,
39
+ unvalidatedCrashComponent1,
40
+ unmigratedBuilder1,
41
+ unmigratedBuilder1_1_1,
42
+ paywall1,
43
+ paywall2,
44
+ paywallBackOffer,
45
+ paywallNotificationOffer,
46
+ paywallAppOpenOffer,
47
+ paywallAppDeleteOffer,
71
48
  vpnOnboard1,
72
49
  vpnOnboard2,
73
50
  vpnOnboard3,
74
51
  vpnOnboard4,
75
52
  vpnOnboard5,
76
53
  vpnOnboard6,
54
+ vpnOnboard7,
77
55
  ].map(normalizeSample);
78
56
  }
79
-
80
- export function getPaywallSamples(): Project[] {
81
- return [
82
- normalizeSample(paywall1),
83
- normalizeSample(paywall2),
84
- normalizeSample(paywallBackOffer),
85
- normalizeSample(paywallNotificationOffer),
86
- normalizeSample(paywallAppOpenOffer),
87
- normalizeSample(paywallAppDeleteOffer),
88
- ];
89
- }
@@ -2,21 +2,6 @@
2
2
  "name": "Simple Paywall",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -111,7 +96,7 @@
111
96
  "styles": {
112
97
  "flexDirection": "column",
113
98
  "gap": 0,
114
- "marginTop": "16%"
99
+ "marginTop": "4%"
115
100
  }
116
101
  },
117
102
  "children": [
@@ -280,19 +265,46 @@
280
265
  "flex": 4
281
266
  }
282
267
  },
283
- "children": "@productDescription — Unlock all premium features for a month."
268
+ "children": "@productDescription"
284
269
  },
285
270
  {
286
- "type": "Text",
271
+ "type": "View",
287
272
  "attributes": {
288
- "description": "Metin öğesi. (#5)",
289
- "title": "Product Price(s)",
273
+ "title": "Price Column",
290
274
  "styles": {
275
+ "flexDirection": "column",
291
276
  "flex": 1,
292
- "textAlign": "right"
277
+ "alignItems": "flex-end"
293
278
  }
294
279
  },
295
- "children": "@localizedPrice"
280
+ "children": [
281
+ {
282
+ "type": "PriceTag",
283
+ "attributes": {
284
+ "title": "Promo Price",
285
+ "styles": {
286
+ "textAlign": "right",
287
+ "fontWeight": "700"
288
+ }
289
+ },
290
+ "children": "@localizedCalculatedPrice"
291
+ },
292
+ {
293
+ "type": "PriceTag",
294
+ "attributes": {
295
+ "title": "Original Price",
296
+ "hideIfItsNotDiscount": true,
297
+ "styles": {
298
+ "textAlign": "right",
299
+ "textDecorationLine": "line-through",
300
+ "fontSize": "12@fs",
301
+ "fontWeight": "400",
302
+ "color": "#999999"
303
+ }
304
+ },
305
+ "children": "@localizedPrice"
306
+ }
307
+ ]
296
308
  },
297
309
  {
298
310
  "type": "BIcon",
@@ -322,10 +334,32 @@
322
334
  "flexDirection": "column",
323
335
  "justifyContent": "flex-end",
324
336
  "alignItems": "stretch",
337
+ "gap": 8,
325
338
  "paddingBottom": "50px"
326
339
  }
327
340
  },
328
341
  "children": [
342
+ {
343
+ "type": "Pricing",
344
+ "attributes": {
345
+ "description": "Pricing breakdown for promo/trial.",
346
+ "title": "Pricing Detail"
347
+ },
348
+ "children": "@baseLocalizedPricingText"
349
+ },
350
+ {
351
+ "type": "Text",
352
+ "attributes": {
353
+ "description": "Trial detayı.",
354
+ "title": "Trial Full",
355
+ "styles": {
356
+ "textAlign": "center",
357
+ "fontSize": 12,
358
+ "color": "rgba(255,255,255,0.6)"
359
+ }
360
+ },
361
+ "children": "@trialPeriod days free, then @price/@period"
362
+ },
329
363
  {
330
364
  "type": "PaywallSubscribeButton",
331
365
  "children": "Subscribe",
@@ -333,6 +367,14 @@
333
367
  "description": "Abonelik onay butonu. (#1)",
334
368
  "title": "Subscribe"
335
369
  }
370
+ },
371
+ {
372
+ "type": "Promo",
373
+ "attributes": {
374
+ "description": "Discount badge / promo text.",
375
+ "title": "Promo Badge"
376
+ },
377
+ "children": "@baseLocalizedPromoText"
336
378
  }
337
379
  ]
338
380
  }
@@ -2,21 +2,6 @@
2
2
  "name": "Paywall With Counter",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -2,21 +2,6 @@
2
2
  "name": "Paywall App Delete Offer",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -2,21 +2,6 @@
2
2
  "name": "Paywall App Open Offer",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -2,21 +2,6 @@
2
2
  "name": "Paywall Back Offer",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -2,21 +2,6 @@
2
2
  "name": "Paywall Notification Offer",
3
3
  "version": "1.1.2",
4
4
  "type": "paywall",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "THEME_COLORS.BACKGROUND",
11
- "color": "THEME_COLORS.TEXT"
12
- },
13
- "dark": {
14
- "backgroundColor": "THEME_COLORS.BACKGROUND",
15
- "color": "THEME_COLORS.TEXT"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "Main",
22
7
  "isMain": true,
@@ -2,21 +2,6 @@
2
2
  "name": "hello-world",
3
3
  "version": "1.1.2",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "View",
22
7
  "attributes": {
@@ -35,7 +20,7 @@
35
20
  "children": [
36
21
  {
37
22
  "type": "Text",
38
- "children": "Hello, world!",
23
+ "children": "hello-world",
39
24
  "attributes": {
40
25
  "description": "Text element 1 in sample.",
41
26
  "title": "Text 1",
@@ -2,21 +2,6 @@
2
2
  "name": "hello-world-2-advanced",
3
3
  "version": "1.1.2",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
- "defaultLanguage": "en"
19
- },
20
5
  "data": {
21
6
  "type": "view",
22
7
  "attributes": {
@@ -2,9 +2,6 @@
2
2
  "name": "unmigrated-builder-1.1.1",
3
3
  "version": "1.1.1",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light"
7
- },
8
5
  "data": {
9
6
  "type": "view",
10
7
  "attributes": {
@@ -2,9 +2,6 @@
2
2
  "name": "unmigrated-builder1",
3
3
  "version": "1.0.0",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light"
7
- },
8
5
  "data": {
9
6
  "type": "view",
10
7
  "attributes": {
@@ -2,9 +2,6 @@
2
2
  "name": "unvalidated-builder1",
3
3
  "version": "1.1.2",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light"
7
- },
8
5
  "data": {
9
6
  "type": "view",
10
7
  "attributes": {
@@ -2,9 +2,6 @@
2
2
  "name": "unvalidated-crash1",
3
3
  "version": "1.1.2",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light"
7
- },
8
5
  "data": {
9
6
  "type": "OnboardFooter",
10
7
  "attributes": {
@@ -2,9 +2,6 @@
2
2
  "name": "unvalidated-crashcomponent1",
3
3
  "version": "1.1.2",
4
4
  "type": "other",
5
- "appConfig": {
6
- "theme": "light"
7
- },
8
5
  "data": {
9
6
  "type": "CrashComponent",
10
7
  "attributes": {
@@ -3,39 +3,7 @@
3
3
  "version": "1.1.2",
4
4
  "type": "onboard",
5
5
  "appConfig": {
6
- "theme": "dark",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
6
  "localication": {
19
- "en": {
20
- "onboard.title.one-page": "Secure your connection",
21
- "onboard.title.two-page": "Access content worldwide",
22
- "onboard.title.three-page": "Fast and reliable",
23
- "onboard.title.four-page": "Stay notified and safe",
24
- "onboard.subtitle.one-page": "Encrypt your traffic and protect your privacy on public Wi‑Fi.",
25
- "onboard.subtitle.two-page": "Connect to high‑speed servers in many countries with one tap.",
26
- "onboard.subtitle.three-page": "Auto‑connect to the best server for speed and stability.",
27
- "onboard.subtitle.four-page": "Enable notifications for connection status and security tips.",
28
- "onboard.next.one-page": "Next",
29
- "onboard.next.two-page": "Next",
30
- "onboard.next.three-page": "Next",
31
- "onboard.skip.one-page": "Skip",
32
- "onboard.skip.two-page": "Skip",
33
- "onboard.skip.three-page": "Skip",
34
- "onboard.allow.four-page": "Allow",
35
- "view.onboarding.footer.description": "By clicking continue, you will be accepting the Terms of service and privacy policy",
36
- "view.onboarding.btnPrivacy": "Privacy Policy",
37
- "view.onboarding.btnTerms": "Terms of Service"
38
- },
39
7
  "ar": {
40
8
  "onboard.title.one-page": "أمّن اتصالك",
41
9
  "onboard.title.two-page": "وصول إلى المحتوى حول العالم",
@@ -56,8 +24,7 @@
56
24
  "view.onboarding.btnPrivacy": "سياسة الخصوصية",
57
25
  "view.onboarding.btnTerms": "شروط الخدمة"
58
26
  }
59
- },
60
- "defaultLanguage": "en"
27
+ }
61
28
  },
62
29
  "data": {
63
30
  "type": "Main",
@@ -3,39 +3,7 @@
3
3
  "version": "1.1.2",
4
4
  "type": "onboard",
5
5
  "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
6
  "localication": {
19
- "en": {
20
- "onboard.title.one-page": "One Page",
21
- "onboard.title.two-page": "Two Page",
22
- "onboard.title.three-page": "Three Page",
23
- "onboard.title.four-page": "Four Page",
24
- "onboard.subtitle.one-page": "One Page",
25
- "onboard.subtitle.two-page": "Two Page",
26
- "onboard.subtitle.three-page": "Three Page",
27
- "onboard.subtitle.four-page": "Four Page",
28
- "onboard.next.one-page": "Next",
29
- "onboard.next.two-page": "Next",
30
- "onboard.next.three-page": "Next",
31
- "onboard.skip.one-page": "Skip",
32
- "onboard.skip.two-page": "Skip",
33
- "onboard.skip.three-page": "Skip",
34
- "onboard.allow.four-page": "Allow",
35
- "view.onboarding.footer.description": "By clicking continue, you will be accepting the Terms of service and privacy policy",
36
- "view.onboarding.btnPrivacy": "Privacy",
37
- "view.onboarding.btnTerms": "Terms"
38
- },
39
7
  "ar": {
40
8
  "onboard.title.one-page": " العربية",
41
9
  "onboard.title.two-page": " العربية",
@@ -56,8 +24,7 @@
56
24
  "view.onboarding.btnPrivacy": "الخصوصية",
57
25
  "view.onboarding.btnTerms": "الشروط"
58
26
  }
59
- },
60
- "defaultLanguage": "en"
27
+ }
61
28
  },
62
29
  "data": {
63
30
  "type": "Main",
@@ -3,47 +3,7 @@
3
3
  "version": "1.1.2",
4
4
  "type": "onboard",
5
5
  "appConfig": {
6
- "theme": "light",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
6
  "localication": {
19
- "en": {
20
- "onboard.title.one-page": "One Page",
21
- "onboard.title.one-page2": "One Page",
22
- "onboard.title.two-page": "Two Page",
23
- "onboard.title.two-page2": "Two Page",
24
- "onboard.title.three-page": "Three Page",
25
- "onboard.title.three-page2": "Three Page",
26
- "onboard.title.four-page": "Four Page",
27
- "onboard.title.four-page2": "Four Page",
28
- "onboard.subtitle.one-page": "One Page",
29
- "onboard.subtitle.one-page2": "One Page",
30
- "onboard.subtitle.two-page": "Two Page",
31
- "onboard.subtitle.two-page2": "Two Page",
32
- "onboard.subtitle.three-page": "Three Page",
33
- "onboard.subtitle.three-page2": "Three Page",
34
- "onboard.subtitle.four-page": "Four Page",
35
- "onboard.subtitle.four-page2": "Four Page",
36
- "onboard.next.one-page": "Next",
37
- "onboard.next.two-page": "Next",
38
- "onboard.next.three-page": "Next",
39
- "onboard.skip.one-page": "Skip",
40
- "onboard.skip.two-page": "Skip",
41
- "onboard.skip.three-page": "Skip",
42
- "onboard.allow.four-page": "Allow",
43
- "view.onboarding.footer.description": "By clicking continue, you will be accepting the Terms of service and privacy policy",
44
- "view.onboarding.btnPrivacy": "Privacy",
45
- "view.onboarding.btnTerms": "Terms"
46
- },
47
7
  "ar": {
48
8
  "onboard.title.one-page": " العربية",
49
9
  "onboard.title.one-page2": " العربية",
@@ -72,8 +32,7 @@
72
32
  "view.onboarding.btnPrivacy": "الخصوصية",
73
33
  "view.onboarding.btnTerms": "الشروط"
74
34
  }
75
- },
76
- "defaultLanguage": "en"
35
+ }
77
36
  },
78
37
  "data": {
79
38
  "type": "Main",
@@ -2,79 +2,6 @@
2
2
  "name": "vpn-onboard-4",
3
3
  "version": "1.1.2",
4
4
  "type": "onboard",
5
- "appConfig": {
6
- "theme": "dark",
7
- "isRtl": false,
8
- "screenStyle": {
9
- "light": {
10
- "backgroundColor": "#FDFDFD",
11
- "color": "#161827"
12
- },
13
- "dark": {
14
- "backgroundColor": "#12131A",
15
- "color": "#E9EBF9"
16
- }
17
- },
18
- "localication": {
19
- "en": {
20
- "onboard.title.one-page": "One Page",
21
- "onboard.title.one-page2": "One Page",
22
- "onboard.title.two-page": "Two Page",
23
- "onboard.title.two-page2": "Two Page",
24
- "onboard.title.three-page": "Three Page",
25
- "onboard.title.three-page2": "Three Page",
26
- "onboard.title.four-page": "Four Page",
27
- "onboard.title.four-page2": "Four Page",
28
- "onboard.subtitle.one-page": "One Page",
29
- "onboard.subtitle.one-page2": "One Page",
30
- "onboard.subtitle.two-page": "Two Page",
31
- "onboard.subtitle.two-page2": "Two Page",
32
- "onboard.subtitle.three-page": "Three Page",
33
- "onboard.subtitle.three-page2": "Three Page",
34
- "onboard.subtitle.four-page": "Four Page",
35
- "onboard.subtitle.four-page2": "Four Page",
36
- "onboard.next.one-page": "Next",
37
- "onboard.next.two-page": "Next",
38
- "onboard.next.three-page": "Next",
39
- "onboard.skip.one-page": "Skip",
40
- "onboard.skip.two-page": "Skip",
41
- "onboard.skip.three-page": "Skip",
42
- "onboard.allow.four-page": "Allow",
43
- "view.onboarding.footer.description": "By clicking continue, you will be accepting the Terms of service and privacy policy",
44
- "view.onboarding.btnPrivacy": "Privacy",
45
- "view.onboarding.btnTerms": "Terms"
46
- },
47
- "ar": {
48
- "onboard.title.one-page": " العربية",
49
- "onboard.title.one-page2": " العربية",
50
- "onboard.title.two-page": " العربية",
51
- "onboard.title.two-page2": " العربية",
52
- "onboard.title.three-page": " العربية",
53
- "onboard.title.three-page2": " العربية",
54
- "onboard.title.four-page": " العربية",
55
- "onboard.title.four-page2": " العربية",
56
- "onboard.subtitle.one-page": " العربية",
57
- "onboard.subtitle.one-page2": " العربية",
58
- "onboard.subtitle.two-page": " العربية",
59
- "onboard.subtitle.two-page2": " العربية",
60
- "onboard.subtitle.three-page": " العربية",
61
- "onboard.subtitle.three-page2": " العربية",
62
- "onboard.subtitle.four-page": " العربية",
63
- "onboard.subtitle.four-page2": " العربية",
64
- "onboard.next.one-page": "التالي",
65
- "onboard.next.two-page": "التالي",
66
- "onboard.next.three-page": "التالي",
67
- "onboard.skip.one-page": "تخطي",
68
- "onboard.skip.two-page": "تخطي",
69
- "onboard.skip.three-page": "تخطي",
70
- "onboard.allow.four-page": "السماح",
71
- "view.onboarding.footer.description": "بالمتابعة فإنك توافق على",
72
- "view.onboarding.btnPrivacy": "الخصوصية",
73
- "view.onboarding.btnTerms": "الشروط"
74
- }
75
- },
76
- "defaultLanguage": "en"
77
- },
78
5
  "data": {
79
6
  "type": "Main",
80
7
  "isMain": true,