@developer_tribe/react-builder 1.2.13 → 1.2.15
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 +2 -0
- package/dist/build-components/BackgroundImage/BackgroundImageProps.generated.d.ts +2 -0
- package/dist/build-components/Button/ButtonProps.generated.d.ts +2 -0
- package/dist/build-components/Carousel/CarouselProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselButtons/CarouselButtonsProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselDots/CarouselDotsProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselItem/CarouselItemProps.generated.d.ts +2 -0
- package/dist/build-components/CarouselProvider/CarouselProviderProps.generated.d.ts +2 -0
- package/dist/build-components/CountDown/CountDown.d.ts +2 -0
- package/dist/build-components/CountDown/CountDownProps.generated.d.ts +61 -0
- package/dist/build-components/CountDown/formatCountdownTime.d.ts +1 -0
- package/dist/build-components/Counter/Counter.d.ts +2 -0
- package/dist/build-components/Counter/CounterProps.generated.d.ts +61 -0
- package/dist/build-components/Image/ImageProps.generated.d.ts +2 -0
- package/dist/build-components/Main/MainProps.generated.d.ts +2 -0
- package/dist/build-components/Onboard/OnboardProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardButtons/OnboardButtonsProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardFooter/OnboardFooterProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardImage/OnboardImageProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardItem/OnboardItemProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardProvider/OnboardProviderProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.d.ts +2 -0
- package/dist/build-components/OnboardTitle/OnboardTitleProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallBackground/PaywallBackgroundProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallCounter/PaywallCounter.d.ts +2 -0
- package/dist/build-components/PaywallCounter/PaywallCounterProps.generated.d.ts +61 -0
- package/dist/build-components/PaywallOptions/PaywallOptionsProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallProvider/PaywallProviderProps.generated.d.ts +2 -0
- package/dist/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.d.ts +2 -0
- package/dist/build-components/RadioButton/RadioButtonProps.generated.d.ts +2 -0
- package/dist/build-components/Text/TextProps.generated.d.ts +2 -0
- package/dist/build-components/View/ViewProps.generated.d.ts +2 -0
- package/dist/build-components/index.d.ts +4 -1
- package/dist/build-components/patterns.generated.d.ts +2961 -1552
- package/dist/components/BuilderProvider.d.ts +0 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.native.d.ts +7 -0
- package/dist/index.web.cjs.js +7 -5
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +7 -5
- package/dist/index.web.esm.js.map +1 -1
- package/dist/utils/getDefaultProject.d.ts +4 -0
- package/dist/utils/patterns.d.ts +3 -0
- package/package.json +2 -1
- package/scripts/prebuild/utils/createComponentTsx.js +1 -1
- package/scripts/prebuild/utils/createGeneratedProps.js +6 -2
- package/scripts/prebuild/utils/createRenderNodeGenerated.js +26 -5
- package/scripts/prebuild/utils/validateAllComponentsOrThrow.js +17 -5
- package/scripts/prebuild/utils/validateExistingComponentTsx.js +12 -8
- package/src/AttributesEditor.tsx +7 -2
- package/src/RenderPage.tsx +34 -3
- package/src/assets/meta.json +1 -1
- package/src/assets/samples/carousel-sample.json +44 -14
- package/src/assets/samples/getSamples.ts +3 -1
- package/src/assets/samples/paywall-1.json +73 -29
- package/src/assets/samples/paywall-2.json +338 -0
- package/src/assets/samples/simple-1.json +9 -3
- package/src/assets/samples/simple-2.json +72 -24
- package/src/assets/samples/unmigrated-builder-1.1.1.json +19 -7
- package/src/assets/samples/unmigrated-builder1.json +10 -4
- package/src/assets/samples/unvalidated-builder1.json +10 -4
- package/src/assets/samples/unvalidated-crash1.json +3 -1
- package/src/assets/samples/unvalidated-crashcomponent1.json +3 -1
- package/src/assets/samples/vpn-onboard-1.json +88 -40
- package/src/assets/samples/vpn-onboard-2.json +85 -37
- package/src/assets/samples/vpn-onboard-3.json +93 -45
- package/src/assets/samples/vpn-onboard-4.json +93 -45
- package/src/assets/samples/vpn-onboard-5.json +121 -53
- package/src/assets/samples/vpn-onboard-6.json +93 -45
- package/src/attributes-editor/AttributesEditorView.tsx +39 -1
- package/src/attributes-editor/Field.tsx +30 -0
- package/src/build-components/BIcon/BIconProps.generated.ts +2 -0
- package/src/build-components/BIcon/pattern.json +2 -0
- package/src/build-components/BackgroundImage/BackgroundImage.tsx +0 -1
- package/src/build-components/BackgroundImage/BackgroundImageProps.generated.ts +2 -0
- package/src/build-components/BackgroundImage/pattern.json +2 -0
- package/src/build-components/Button/ButtonProps.generated.ts +2 -0
- package/src/build-components/Button/pattern.json +2 -0
- package/src/build-components/Carousel/CarouselProps.generated.ts +2 -0
- package/src/build-components/Carousel/pattern.json +2 -0
- package/src/build-components/CarouselButtons/CarouselButtonsProps.generated.ts +2 -0
- package/src/build-components/CarouselButtons/pattern.json +2 -0
- package/src/build-components/CarouselDots/CarouselDotsProps.generated.ts +2 -0
- package/src/build-components/CarouselDots/pattern.json +2 -0
- package/src/build-components/CarouselItem/CarouselItemProps.generated.ts +2 -0
- package/src/build-components/CarouselItem/pattern.json +4 -1
- package/src/build-components/CarouselProvider/CarouselProviderProps.generated.ts +2 -0
- package/src/build-components/CarouselProvider/pattern.json +4 -1
- package/src/build-components/CountDown/CountDown.tsx +73 -0
- package/src/build-components/CountDown/CountDownProps.generated.ts +78 -0
- package/src/build-components/CountDown/formatCountdownTime.ts +10 -0
- package/src/build-components/CountDown/pattern.json +24 -0
- package/src/build-components/Counter/Counter.tsx +44 -0
- package/src/build-components/Counter/CounterProps.generated.ts +78 -0
- package/src/build-components/Counter/pattern.json +26 -0
- package/src/build-components/Image/ImageProps.generated.ts +2 -0
- package/src/build-components/Image/pattern.json +2 -0
- package/src/build-components/Main/MainProps.generated.ts +2 -0
- package/src/build-components/Main/pattern.json +2 -0
- package/src/build-components/Onboard/OnboardProps.generated.ts +2 -0
- package/src/build-components/Onboard/pattern.json +4 -1
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +2 -0
- package/src/build-components/OnboardButton/pattern.json +2 -0
- package/src/build-components/OnboardButtons/OnboardButtonsProps.generated.ts +2 -0
- package/src/build-components/OnboardButtons/pattern.json +2 -0
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +2 -0
- package/src/build-components/OnboardDot/pattern.json +2 -0
- package/src/build-components/OnboardFooter/OnboardFooterProps.generated.ts +2 -0
- package/src/build-components/OnboardFooter/pattern.json +2 -0
- package/src/build-components/OnboardImage/OnboardImageProps.generated.ts +2 -0
- package/src/build-components/OnboardImage/pattern.json +2 -0
- package/src/build-components/OnboardItem/OnboardItemProps.generated.ts +2 -0
- package/src/build-components/OnboardItem/pattern.json +2 -0
- package/src/build-components/OnboardProvider/OnboardProviderProps.generated.ts +2 -0
- package/src/build-components/OnboardProvider/pattern.json +2 -0
- package/src/build-components/OnboardSubtitle/OnboardSubtitleProps.generated.ts +2 -0
- package/src/build-components/OnboardSubtitle/pattern.json +4 -1
- package/src/build-components/OnboardTitle/OnboardTitleProps.generated.ts +2 -0
- package/src/build-components/OnboardTitle/pattern.json +4 -1
- package/src/build-components/PaywallBackground/PaywallBackgroundProps.generated.ts +2 -0
- package/src/build-components/PaywallBackground/pattern.json +4 -1
- package/src/build-components/PaywallCloseButton/PaywallCloseButton.tsx +7 -5
- package/src/build-components/PaywallCloseButton/PaywallCloseButtonProps.generated.ts +2 -0
- package/src/build-components/PaywallCloseButton/pattern.json +4 -1
- package/src/build-components/PaywallCounter/PaywallCounter.tsx +49 -0
- package/src/build-components/PaywallCounter/PaywallCounterProps.generated.ts +78 -0
- package/src/build-components/PaywallCounter/pattern.json +24 -0
- package/src/build-components/PaywallOptions/PaywallOptionsProps.generated.ts +2 -0
- package/src/build-components/PaywallOptions/pattern.json +4 -1
- package/src/build-components/PaywallProvider/PaywallProvider.tsx +8 -16
- package/src/build-components/PaywallProvider/PaywallProviderProps.generated.ts +2 -0
- package/src/build-components/PaywallProvider/pattern.json +4 -1
- package/src/build-components/PaywallSubscribeButton/PaywallSubscribeButtonProps.generated.ts +2 -0
- package/src/build-components/PaywallSubscribeButton/pattern.json +4 -1
- package/src/build-components/RadioButton/RadioButtonProps.generated.ts +2 -0
- package/src/build-components/RadioButton/pattern.json +2 -0
- package/src/build-components/RenderNode.generated.tsx +17 -2
- package/src/build-components/Text/TextProps.generated.ts +2 -0
- package/src/build-components/Text/pattern.json +3 -1
- package/src/build-components/View/View.tsx +1 -1
- package/src/build-components/View/ViewProps.generated.ts +2 -0
- package/src/build-components/View/pattern.json +35 -38
- package/src/build-components/index.ts +15 -0
- package/src/build-components/patterns.generated.ts +3084 -1570
- package/src/components/BuilderButton.tsx +23 -6
- package/src/components/BuilderProvider.tsx +10 -7
- package/src/index.native.ts +7 -0
- package/src/index.ts +1 -0
- package/src/mockOS/context/MockOSContext.tsx +22 -8
- package/src/mockOS/managers/navigationManager.ts +4 -0
- package/src/pages/projectPageUtils.ts +3 -2
- package/src/utils/analyseNodeByPatterns.ts +21 -0
- package/src/utils/getDefaultProject.ts +34 -0
- package/src/utils/patterns.ts +6 -7
|
@@ -37,24 +37,24 @@
|
|
|
37
37
|
"view.onboarding.btnTerms": "Terms"
|
|
38
38
|
},
|
|
39
39
|
"ar": {
|
|
40
|
-
"onboard.title.one-page": "
|
|
41
|
-
"onboard.title.two-page": "
|
|
42
|
-
"onboard.title.three-page": "
|
|
43
|
-
"onboard.title.four-page": "
|
|
44
|
-
"onboard.subtitle.one-page": "
|
|
45
|
-
"onboard.subtitle.two-page": "
|
|
46
|
-
"onboard.subtitle.three-page": "
|
|
47
|
-
"onboard.subtitle.four-page": "
|
|
48
|
-
"onboard.next.one-page": "
|
|
49
|
-
"onboard.next.two-page": "
|
|
50
|
-
"onboard.next.three-page": "
|
|
51
|
-
"onboard.skip.one-page": "
|
|
52
|
-
"onboard.skip.two-page": "
|
|
53
|
-
"onboard.skip.three-page": "
|
|
54
|
-
"onboard.allow.four-page": "
|
|
55
|
-
"view.onboarding.footer.description": "
|
|
56
|
-
"view.onboarding.btnPrivacy": "
|
|
57
|
-
"view.onboarding.btnTerms": "
|
|
40
|
+
"onboard.title.one-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
41
|
+
"onboard.title.two-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
42
|
+
"onboard.title.three-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
43
|
+
"onboard.title.four-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
44
|
+
"onboard.subtitle.one-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
45
|
+
"onboard.subtitle.two-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
46
|
+
"onboard.subtitle.three-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
47
|
+
"onboard.subtitle.four-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
48
|
+
"onboard.next.one-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
49
|
+
"onboard.next.two-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
50
|
+
"onboard.next.three-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
51
|
+
"onboard.skip.one-page": "\u062a\u062e\u0637\u064a",
|
|
52
|
+
"onboard.skip.two-page": "\u062a\u062e\u0637\u064a",
|
|
53
|
+
"onboard.skip.three-page": "\u062a\u062e\u0637\u064a",
|
|
54
|
+
"onboard.allow.four-page": "\u0627\u0644\u0633\u0645\u0627\u062d",
|
|
55
|
+
"view.onboarding.footer.description": "\u0628\u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629 \u0641\u0625\u0646\u0643 \u062a\u0648\u0627\u0641\u0642 \u0639\u0644\u0649",
|
|
56
|
+
"view.onboarding.btnPrivacy": "\u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629",
|
|
57
|
+
"view.onboarding.btnTerms": "\u0627\u0644\u0634\u0631\u0648\u0637"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"defaultLanguage": "en"
|
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
"isMain": true,
|
|
65
65
|
"key": "ckcw0WXRY8sNR2SF",
|
|
66
66
|
"attributes": {
|
|
67
|
-
"useSafeAreaView": true
|
|
67
|
+
"useSafeAreaView": true,
|
|
68
|
+
"description": "Ekran\u0131n ana kapsay\u0131c\u0131s\u0131. (#1)",
|
|
69
|
+
"title": "Main 1"
|
|
68
70
|
},
|
|
69
71
|
"children": [
|
|
70
72
|
{
|
|
@@ -84,7 +86,9 @@
|
|
|
84
86
|
"color": "#12131A",
|
|
85
87
|
"textAlign": "center",
|
|
86
88
|
"marginTop": 40
|
|
87
|
-
}
|
|
89
|
+
},
|
|
90
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#1)",
|
|
91
|
+
"title": "OnboardTitle 1"
|
|
88
92
|
},
|
|
89
93
|
"children": "onboard.title.one-page"
|
|
90
94
|
},
|
|
@@ -105,11 +109,17 @@
|
|
|
105
109
|
"color": "#44454D",
|
|
106
110
|
"fontSize": 16,
|
|
107
111
|
"textAlign": "center"
|
|
108
|
-
}
|
|
112
|
+
},
|
|
113
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#1)",
|
|
114
|
+
"title": "OnboardSubtitle 1"
|
|
109
115
|
},
|
|
110
116
|
"children": "onboard.subtitle.one-page"
|
|
111
117
|
}
|
|
112
|
-
]
|
|
118
|
+
],
|
|
119
|
+
"attributes": {
|
|
120
|
+
"description": "Onboarding sayfas\u0131. (#1)",
|
|
121
|
+
"title": "OnboardItem 1"
|
|
122
|
+
}
|
|
113
123
|
},
|
|
114
124
|
{
|
|
115
125
|
"type": "OnboardItem",
|
|
@@ -122,7 +132,9 @@
|
|
|
122
132
|
"color": "#12131A",
|
|
123
133
|
"textAlign": "center",
|
|
124
134
|
"marginTop": 40
|
|
125
|
-
}
|
|
135
|
+
},
|
|
136
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#2)",
|
|
137
|
+
"title": "OnboardTitle 2"
|
|
126
138
|
},
|
|
127
139
|
"children": "onboard.title.two-page"
|
|
128
140
|
},
|
|
@@ -143,11 +155,17 @@
|
|
|
143
155
|
"color": "#44454D",
|
|
144
156
|
"fontSize": 16,
|
|
145
157
|
"textAlign": "center"
|
|
146
|
-
}
|
|
158
|
+
},
|
|
159
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#2)",
|
|
160
|
+
"title": "OnboardSubtitle 2"
|
|
147
161
|
},
|
|
148
162
|
"children": "onboard.subtitle.two-page"
|
|
149
163
|
}
|
|
150
|
-
]
|
|
164
|
+
],
|
|
165
|
+
"attributes": {
|
|
166
|
+
"description": "Onboarding sayfas\u0131. (#2)",
|
|
167
|
+
"title": "OnboardItem 2"
|
|
168
|
+
}
|
|
151
169
|
},
|
|
152
170
|
{
|
|
153
171
|
"type": "OnboardItem",
|
|
@@ -160,7 +178,9 @@
|
|
|
160
178
|
"color": "#12131A",
|
|
161
179
|
"textAlign": "center",
|
|
162
180
|
"marginTop": 40
|
|
163
|
-
}
|
|
181
|
+
},
|
|
182
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#3)",
|
|
183
|
+
"title": "OnboardTitle 3"
|
|
164
184
|
},
|
|
165
185
|
"children": "onboard.title.three-page"
|
|
166
186
|
},
|
|
@@ -181,11 +201,17 @@
|
|
|
181
201
|
"color": "#44454D",
|
|
182
202
|
"fontSize": 16,
|
|
183
203
|
"textAlign": "center"
|
|
184
|
-
}
|
|
204
|
+
},
|
|
205
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#3)",
|
|
206
|
+
"title": "OnboardSubtitle 3"
|
|
185
207
|
},
|
|
186
208
|
"children": "onboard.subtitle.three-page"
|
|
187
209
|
}
|
|
188
|
-
]
|
|
210
|
+
],
|
|
211
|
+
"attributes": {
|
|
212
|
+
"description": "Onboarding sayfas\u0131. (#3)",
|
|
213
|
+
"title": "OnboardItem 3"
|
|
214
|
+
}
|
|
189
215
|
},
|
|
190
216
|
{
|
|
191
217
|
"type": "OnboardItem",
|
|
@@ -198,7 +224,9 @@
|
|
|
198
224
|
"color": "#12131A",
|
|
199
225
|
"textAlign": "center",
|
|
200
226
|
"marginTop": 40
|
|
201
|
-
}
|
|
227
|
+
},
|
|
228
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#4)",
|
|
229
|
+
"title": "OnboardTitle 4"
|
|
202
230
|
},
|
|
203
231
|
"children": "onboard.title.four-page"
|
|
204
232
|
},
|
|
@@ -219,13 +247,23 @@
|
|
|
219
247
|
"color": "#44454D",
|
|
220
248
|
"fontSize": 16,
|
|
221
249
|
"textAlign": "center"
|
|
222
|
-
}
|
|
250
|
+
},
|
|
251
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#4)",
|
|
252
|
+
"title": "OnboardSubtitle 4"
|
|
223
253
|
},
|
|
224
254
|
"children": "onboard.subtitle.four-page"
|
|
225
255
|
}
|
|
226
|
-
]
|
|
256
|
+
],
|
|
257
|
+
"attributes": {
|
|
258
|
+
"description": "Onboarding sayfas\u0131. (#4)",
|
|
259
|
+
"title": "OnboardItem 4"
|
|
260
|
+
}
|
|
227
261
|
}
|
|
228
|
-
]
|
|
262
|
+
],
|
|
263
|
+
"attributes": {
|
|
264
|
+
"description": "Onboarding ana yap\u0131s\u0131. (#1)",
|
|
265
|
+
"title": "Onboard 1"
|
|
266
|
+
}
|
|
229
267
|
},
|
|
230
268
|
{
|
|
231
269
|
"type": "OnboardDot",
|
|
@@ -240,7 +278,9 @@
|
|
|
240
278
|
"attributes": {
|
|
241
279
|
"buttons_direction": "row",
|
|
242
280
|
"condition": "carousel-index",
|
|
243
|
-
"conditionVariable": 0
|
|
281
|
+
"conditionVariable": 0,
|
|
282
|
+
"description": "Sayfa buton grubu. (#1)",
|
|
283
|
+
"title": "OnboardButtons 1"
|
|
244
284
|
},
|
|
245
285
|
"children": [
|
|
246
286
|
{
|
|
@@ -289,7 +329,9 @@
|
|
|
289
329
|
"attributes": {
|
|
290
330
|
"buttons_direction": "row",
|
|
291
331
|
"condition": "carousel-index",
|
|
292
|
-
"conditionVariable": 1
|
|
332
|
+
"conditionVariable": 1,
|
|
333
|
+
"description": "Sayfa buton grubu. (#2)",
|
|
334
|
+
"title": "OnboardButtons 2"
|
|
293
335
|
},
|
|
294
336
|
"children": [
|
|
295
337
|
{
|
|
@@ -343,7 +385,9 @@
|
|
|
343
385
|
"attributes": {
|
|
344
386
|
"buttons_direction": "row",
|
|
345
387
|
"condition": "carousel-index",
|
|
346
|
-
"conditionVariable": 2
|
|
388
|
+
"conditionVariable": 2,
|
|
389
|
+
"description": "Sayfa buton grubu. (#3)",
|
|
390
|
+
"title": "OnboardButtons 3"
|
|
347
391
|
},
|
|
348
392
|
"children": [
|
|
349
393
|
{
|
|
@@ -393,7 +437,9 @@
|
|
|
393
437
|
"attributes": {
|
|
394
438
|
"buttons_direction": "row",
|
|
395
439
|
"condition": "carousel-index",
|
|
396
|
-
"conditionVariable": 3
|
|
440
|
+
"conditionVariable": 3,
|
|
441
|
+
"description": "Sayfa buton grubu. (#4)",
|
|
442
|
+
"title": "OnboardButtons 4"
|
|
397
443
|
},
|
|
398
444
|
"children": [
|
|
399
445
|
{
|
|
@@ -437,7 +483,9 @@
|
|
|
437
483
|
}
|
|
438
484
|
],
|
|
439
485
|
"attributes": {
|
|
440
|
-
"theme": "light"
|
|
486
|
+
"theme": "light",
|
|
487
|
+
"description": "Onboarding sa\u011flay\u0131c\u0131s\u0131. (#1)",
|
|
488
|
+
"title": "OnboardProvider 1"
|
|
441
489
|
}
|
|
442
490
|
}
|
|
443
491
|
]
|
|
@@ -45,32 +45,32 @@
|
|
|
45
45
|
"view.onboarding.btnTerms": "Terms"
|
|
46
46
|
},
|
|
47
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": "
|
|
48
|
+
"onboard.title.one-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
49
|
+
"onboard.title.one-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
50
|
+
"onboard.title.two-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
51
|
+
"onboard.title.two-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
52
|
+
"onboard.title.three-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
53
|
+
"onboard.title.three-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
54
|
+
"onboard.title.four-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
55
|
+
"onboard.title.four-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
56
|
+
"onboard.subtitle.one-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
57
|
+
"onboard.subtitle.one-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
58
|
+
"onboard.subtitle.two-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
59
|
+
"onboard.subtitle.two-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
60
|
+
"onboard.subtitle.three-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
61
|
+
"onboard.subtitle.three-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
62
|
+
"onboard.subtitle.four-page": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
63
|
+
"onboard.subtitle.four-page2": " \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
|
64
|
+
"onboard.next.one-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
65
|
+
"onboard.next.two-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
66
|
+
"onboard.next.three-page": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
|
67
|
+
"onboard.skip.one-page": "\u062a\u062e\u0637\u064a",
|
|
68
|
+
"onboard.skip.two-page": "\u062a\u062e\u0637\u064a",
|
|
69
|
+
"onboard.skip.three-page": "\u062a\u062e\u0637\u064a",
|
|
70
|
+
"onboard.allow.four-page": "\u0627\u0644\u0633\u0645\u0627\u062d",
|
|
71
|
+
"view.onboarding.footer.description": "\u0628\u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629 \u0641\u0625\u0646\u0643 \u062a\u0648\u0627\u0641\u0642 \u0639\u0644\u0649",
|
|
72
|
+
"view.onboarding.btnPrivacy": "\u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629",
|
|
73
|
+
"view.onboarding.btnTerms": "\u0627\u0644\u0634\u0631\u0648\u0637"
|
|
74
74
|
}
|
|
75
75
|
},
|
|
76
76
|
"defaultLanguage": "en"
|
|
@@ -80,7 +80,9 @@
|
|
|
80
80
|
"isMain": true,
|
|
81
81
|
"key": "ckcw0WXRY8sNR2SF",
|
|
82
82
|
"attributes": {
|
|
83
|
-
"useSafeAreaView": true
|
|
83
|
+
"useSafeAreaView": true,
|
|
84
|
+
"description": "Ekran\u0131n ana kapsay\u0131c\u0131s\u0131. (#1)",
|
|
85
|
+
"title": "Main 1"
|
|
84
86
|
},
|
|
85
87
|
"children": [
|
|
86
88
|
{
|
|
@@ -100,7 +102,9 @@
|
|
|
100
102
|
"color": "#12131A",
|
|
101
103
|
"textAlign": "center",
|
|
102
104
|
"marginTop": 40
|
|
103
|
-
}
|
|
105
|
+
},
|
|
106
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#1)",
|
|
107
|
+
"title": "OnboardTitle 1"
|
|
104
108
|
},
|
|
105
109
|
"children": "onboard.title.one-page2"
|
|
106
110
|
},
|
|
@@ -121,11 +125,17 @@
|
|
|
121
125
|
"color": "#44454D",
|
|
122
126
|
"fontSize": 16,
|
|
123
127
|
"textAlign": "center"
|
|
124
|
-
}
|
|
128
|
+
},
|
|
129
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#1)",
|
|
130
|
+
"title": "OnboardSubtitle 1"
|
|
125
131
|
},
|
|
126
132
|
"children": "onboard.subtitle.one-page2"
|
|
127
133
|
}
|
|
128
|
-
]
|
|
134
|
+
],
|
|
135
|
+
"attributes": {
|
|
136
|
+
"description": "Onboarding sayfas\u0131. (#1)",
|
|
137
|
+
"title": "OnboardItem 1"
|
|
138
|
+
}
|
|
129
139
|
},
|
|
130
140
|
{
|
|
131
141
|
"type": "OnboardItem",
|
|
@@ -138,7 +148,9 @@
|
|
|
138
148
|
"color": "#12131A",
|
|
139
149
|
"textAlign": "center",
|
|
140
150
|
"marginTop": 40
|
|
141
|
-
}
|
|
151
|
+
},
|
|
152
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#2)",
|
|
153
|
+
"title": "OnboardTitle 2"
|
|
142
154
|
},
|
|
143
155
|
"children": "onboard.title.two-page2"
|
|
144
156
|
},
|
|
@@ -149,11 +161,17 @@
|
|
|
149
161
|
"color": "#44454D",
|
|
150
162
|
"fontSize": 16,
|
|
151
163
|
"textAlign": "center"
|
|
152
|
-
}
|
|
164
|
+
},
|
|
165
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#2)",
|
|
166
|
+
"title": "OnboardSubtitle 2"
|
|
153
167
|
},
|
|
154
168
|
"children": "onboard.subtitle.two-page"
|
|
155
169
|
}
|
|
156
|
-
]
|
|
170
|
+
],
|
|
171
|
+
"attributes": {
|
|
172
|
+
"description": "Onboarding sayfas\u0131. (#2)",
|
|
173
|
+
"title": "OnboardItem 2"
|
|
174
|
+
}
|
|
157
175
|
},
|
|
158
176
|
{
|
|
159
177
|
"type": "OnboardItem",
|
|
@@ -166,7 +184,9 @@
|
|
|
166
184
|
"color": "#12131A",
|
|
167
185
|
"textAlign": "center",
|
|
168
186
|
"marginTop": 40
|
|
169
|
-
}
|
|
187
|
+
},
|
|
188
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#3)",
|
|
189
|
+
"title": "OnboardTitle 3"
|
|
170
190
|
},
|
|
171
191
|
"children": "onboard.title.three-page2"
|
|
172
192
|
},
|
|
@@ -177,11 +197,17 @@
|
|
|
177
197
|
"color": "#44454D",
|
|
178
198
|
"fontSize": 16,
|
|
179
199
|
"textAlign": "center"
|
|
180
|
-
}
|
|
200
|
+
},
|
|
201
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#3)",
|
|
202
|
+
"title": "OnboardSubtitle 3"
|
|
181
203
|
},
|
|
182
204
|
"children": "onboard.subtitle.three-page2"
|
|
183
205
|
}
|
|
184
|
-
]
|
|
206
|
+
],
|
|
207
|
+
"attributes": {
|
|
208
|
+
"description": "Onboarding sayfas\u0131. (#3)",
|
|
209
|
+
"title": "OnboardItem 3"
|
|
210
|
+
}
|
|
185
211
|
},
|
|
186
212
|
{
|
|
187
213
|
"type": "OnboardItem",
|
|
@@ -194,7 +220,9 @@
|
|
|
194
220
|
"color": "#12131A",
|
|
195
221
|
"textAlign": "center",
|
|
196
222
|
"marginTop": 40
|
|
197
|
-
}
|
|
223
|
+
},
|
|
224
|
+
"description": "Sayfa ba\u015fl\u0131\u011f\u0131. (#4)",
|
|
225
|
+
"title": "OnboardTitle 4"
|
|
198
226
|
},
|
|
199
227
|
"children": "onboard.title.four-page2"
|
|
200
228
|
},
|
|
@@ -205,13 +233,23 @@
|
|
|
205
233
|
"color": "#44454D",
|
|
206
234
|
"fontSize": 16,
|
|
207
235
|
"textAlign": "center"
|
|
208
|
-
}
|
|
236
|
+
},
|
|
237
|
+
"description": "Sayfa alt ba\u015fl\u0131\u011f\u0131. (#4)",
|
|
238
|
+
"title": "OnboardSubtitle 4"
|
|
209
239
|
},
|
|
210
240
|
"children": "onboard.subtitle.four-page2"
|
|
211
241
|
}
|
|
212
|
-
]
|
|
242
|
+
],
|
|
243
|
+
"attributes": {
|
|
244
|
+
"description": "Onboarding sayfas\u0131. (#4)",
|
|
245
|
+
"title": "OnboardItem 4"
|
|
246
|
+
}
|
|
213
247
|
}
|
|
214
|
-
]
|
|
248
|
+
],
|
|
249
|
+
"attributes": {
|
|
250
|
+
"description": "Onboarding ana yap\u0131s\u0131. (#1)",
|
|
251
|
+
"title": "Onboard 1"
|
|
252
|
+
}
|
|
215
253
|
},
|
|
216
254
|
{
|
|
217
255
|
"type": "OnboardDot",
|
|
@@ -224,7 +262,9 @@
|
|
|
224
262
|
"attributes": {
|
|
225
263
|
"buttons_direction": "row",
|
|
226
264
|
"condition": "carousel-index",
|
|
227
|
-
"conditionVariable": 0
|
|
265
|
+
"conditionVariable": 0,
|
|
266
|
+
"description": "Sayfa buton grubu. (#1)",
|
|
267
|
+
"title": "OnboardButtons 1"
|
|
228
268
|
},
|
|
229
269
|
"children": [
|
|
230
270
|
{
|
|
@@ -270,7 +310,9 @@
|
|
|
270
310
|
"attributes": {
|
|
271
311
|
"buttons_direction": "row",
|
|
272
312
|
"condition": "carousel-index",
|
|
273
|
-
"conditionVariable": 1
|
|
313
|
+
"conditionVariable": 1,
|
|
314
|
+
"description": "Sayfa buton grubu. (#2)",
|
|
315
|
+
"title": "OnboardButtons 2"
|
|
274
316
|
},
|
|
275
317
|
"children": [
|
|
276
318
|
{
|
|
@@ -324,7 +366,9 @@
|
|
|
324
366
|
"attributes": {
|
|
325
367
|
"buttons_direction": "row",
|
|
326
368
|
"condition": "carousel-index",
|
|
327
|
-
"conditionVariable": 2
|
|
369
|
+
"conditionVariable": 2,
|
|
370
|
+
"description": "Sayfa buton grubu. (#3)",
|
|
371
|
+
"title": "OnboardButtons 3"
|
|
328
372
|
},
|
|
329
373
|
"children": [
|
|
330
374
|
{
|
|
@@ -374,7 +418,9 @@
|
|
|
374
418
|
"attributes": {
|
|
375
419
|
"buttons_direction": "row",
|
|
376
420
|
"condition": "carousel-index",
|
|
377
|
-
"conditionVariable": 3
|
|
421
|
+
"conditionVariable": 3,
|
|
422
|
+
"description": "Sayfa buton grubu. (#4)",
|
|
423
|
+
"title": "OnboardButtons 4"
|
|
378
424
|
},
|
|
379
425
|
"children": [
|
|
380
426
|
{
|
|
@@ -418,7 +464,9 @@
|
|
|
418
464
|
}
|
|
419
465
|
],
|
|
420
466
|
"attributes": {
|
|
421
|
-
"theme": "light"
|
|
467
|
+
"theme": "light",
|
|
468
|
+
"description": "Onboarding sa\u011flay\u0131c\u0131s\u0131. (#1)",
|
|
469
|
+
"title": "OnboardProvider 1"
|
|
422
470
|
}
|
|
423
471
|
}
|
|
424
472
|
]
|