@rocapine/react-native-onboarding 1.32.0 → 1.34.0
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/onboarding-example.d.ts +474 -29
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +78 -0
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts +303 -0
- package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/RichTextElement.js +20 -0
- package/dist/steps/ComposableScreen/elements/RichTextElement.js.map +1 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts +16 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.js +2 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.js.map +1 -1
- package/dist/steps/ComposableScreen/types.d.ts +11 -0
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +15 -2
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/onboarding-example.ts +78 -0
- package/src/steps/ComposableScreen/elements/RichTextElement.ts +55 -0
- package/src/steps/ComposableScreen/elements/ScrollViewElement.ts +4 -0
- package/src/steps/ComposableScreen/types.ts +25 -2
|
@@ -196,10 +196,12 @@ export declare const onboardingExample: {
|
|
|
196
196
|
fontSize?: undefined;
|
|
197
197
|
textAlign?: undefined;
|
|
198
198
|
opacity?: undefined;
|
|
199
|
+
alignItems?: undefined;
|
|
200
|
+
justifyContent?: undefined;
|
|
201
|
+
fontWeight?: undefined;
|
|
199
202
|
horizontal?: undefined;
|
|
200
203
|
showsHorizontalScrollIndicator?: undefined;
|
|
201
204
|
contentContainerPadding?: undefined;
|
|
202
|
-
fontWeight?: undefined;
|
|
203
205
|
fontFamily?: undefined;
|
|
204
206
|
fontStyle?: undefined;
|
|
205
207
|
lineHeight?: undefined;
|
|
@@ -273,10 +275,12 @@ export declare const onboardingExample: {
|
|
|
273
275
|
fontSize?: undefined;
|
|
274
276
|
textAlign?: undefined;
|
|
275
277
|
opacity?: undefined;
|
|
278
|
+
alignItems?: undefined;
|
|
279
|
+
justifyContent?: undefined;
|
|
280
|
+
fontWeight?: undefined;
|
|
276
281
|
horizontal?: undefined;
|
|
277
282
|
showsHorizontalScrollIndicator?: undefined;
|
|
278
283
|
contentContainerPadding?: undefined;
|
|
279
|
-
fontWeight?: undefined;
|
|
280
284
|
fontFamily?: undefined;
|
|
281
285
|
fontStyle?: undefined;
|
|
282
286
|
lineHeight?: undefined;
|
|
@@ -359,10 +363,170 @@ export declare const onboardingExample: {
|
|
|
359
363
|
fontSize?: undefined;
|
|
360
364
|
textAlign?: undefined;
|
|
361
365
|
opacity?: undefined;
|
|
366
|
+
alignItems?: undefined;
|
|
367
|
+
justifyContent?: undefined;
|
|
368
|
+
fontWeight?: undefined;
|
|
369
|
+
horizontal?: undefined;
|
|
370
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
371
|
+
contentContainerPadding?: undefined;
|
|
372
|
+
fontFamily?: undefined;
|
|
373
|
+
fontStyle?: undefined;
|
|
374
|
+
lineHeight?: undefined;
|
|
375
|
+
variableName?: undefined;
|
|
376
|
+
defaultValue?: undefined;
|
|
377
|
+
showTick?: undefined;
|
|
378
|
+
gap?: undefined;
|
|
379
|
+
items?: undefined;
|
|
380
|
+
defaultValues?: undefined;
|
|
381
|
+
display?: undefined;
|
|
382
|
+
maximumDate?: undefined;
|
|
383
|
+
range?: undefined;
|
|
384
|
+
carouselType?: undefined;
|
|
385
|
+
showDots?: undefined;
|
|
386
|
+
defaultIndex?: undefined;
|
|
387
|
+
overflow?: undefined;
|
|
388
|
+
label?: undefined;
|
|
389
|
+
actions?: undefined;
|
|
390
|
+
padding?: undefined;
|
|
391
|
+
backgroundGradient?: undefined;
|
|
392
|
+
backgroundColor?: undefined;
|
|
393
|
+
shadowColor?: undefined;
|
|
394
|
+
shadowOffset?: undefined;
|
|
395
|
+
shadowOpacity?: undefined;
|
|
396
|
+
shadowRadius?: undefined;
|
|
397
|
+
elevation?: undefined;
|
|
398
|
+
transitionDurationMs?: undefined;
|
|
399
|
+
pressedStyle?: undefined;
|
|
400
|
+
disabledWhen?: undefined;
|
|
401
|
+
disabledStyle?: undefined;
|
|
402
|
+
};
|
|
403
|
+
children?: undefined;
|
|
404
|
+
renderWhen?: undefined;
|
|
405
|
+
} | {
|
|
406
|
+
id: string;
|
|
407
|
+
type: string;
|
|
408
|
+
props: {
|
|
409
|
+
url: string;
|
|
410
|
+
width: number;
|
|
411
|
+
height: number;
|
|
412
|
+
resizeMode: string;
|
|
413
|
+
source?: undefined;
|
|
414
|
+
autoPlay?: undefined;
|
|
415
|
+
loop?: undefined;
|
|
416
|
+
aspectRatio?: undefined;
|
|
417
|
+
fit?: undefined;
|
|
418
|
+
borderRadius?: undefined;
|
|
419
|
+
animation?: undefined;
|
|
420
|
+
name?: undefined;
|
|
421
|
+
size?: undefined;
|
|
422
|
+
color?: undefined;
|
|
423
|
+
fill?: undefined;
|
|
424
|
+
fillOpacity?: undefined;
|
|
425
|
+
marginVertical?: undefined;
|
|
426
|
+
transform?: undefined;
|
|
427
|
+
variant?: undefined;
|
|
428
|
+
autoplay?: undefined;
|
|
429
|
+
initialValue?: undefined;
|
|
430
|
+
duration?: undefined;
|
|
431
|
+
easing?: undefined;
|
|
432
|
+
thickness?: undefined;
|
|
433
|
+
showLabel?: undefined;
|
|
434
|
+
delay?: undefined;
|
|
435
|
+
alignSelf?: undefined;
|
|
436
|
+
controls?: undefined;
|
|
437
|
+
muted?: undefined;
|
|
438
|
+
contentFit?: undefined;
|
|
439
|
+
keyboardVerticalOffset?: undefined;
|
|
440
|
+
content?: undefined;
|
|
441
|
+
mode?: undefined;
|
|
442
|
+
fontSize?: undefined;
|
|
443
|
+
textAlign?: undefined;
|
|
444
|
+
opacity?: undefined;
|
|
445
|
+
alignItems?: undefined;
|
|
446
|
+
justifyContent?: undefined;
|
|
447
|
+
fontWeight?: undefined;
|
|
362
448
|
horizontal?: undefined;
|
|
363
449
|
showsHorizontalScrollIndicator?: undefined;
|
|
364
450
|
contentContainerPadding?: undefined;
|
|
451
|
+
fontFamily?: undefined;
|
|
452
|
+
fontStyle?: undefined;
|
|
453
|
+
lineHeight?: undefined;
|
|
454
|
+
variableName?: undefined;
|
|
455
|
+
defaultValue?: undefined;
|
|
456
|
+
showTick?: undefined;
|
|
457
|
+
gap?: undefined;
|
|
458
|
+
items?: undefined;
|
|
459
|
+
defaultValues?: undefined;
|
|
460
|
+
display?: undefined;
|
|
461
|
+
maximumDate?: undefined;
|
|
462
|
+
range?: undefined;
|
|
463
|
+
carouselType?: undefined;
|
|
464
|
+
showDots?: undefined;
|
|
465
|
+
defaultIndex?: undefined;
|
|
466
|
+
overflow?: undefined;
|
|
467
|
+
label?: undefined;
|
|
468
|
+
actions?: undefined;
|
|
469
|
+
padding?: undefined;
|
|
470
|
+
backgroundGradient?: undefined;
|
|
471
|
+
backgroundColor?: undefined;
|
|
472
|
+
shadowColor?: undefined;
|
|
473
|
+
shadowOffset?: undefined;
|
|
474
|
+
shadowOpacity?: undefined;
|
|
475
|
+
shadowRadius?: undefined;
|
|
476
|
+
elevation?: undefined;
|
|
477
|
+
transitionDurationMs?: undefined;
|
|
478
|
+
pressedStyle?: undefined;
|
|
479
|
+
disabledWhen?: undefined;
|
|
480
|
+
disabledStyle?: undefined;
|
|
481
|
+
};
|
|
482
|
+
children?: undefined;
|
|
483
|
+
renderWhen?: undefined;
|
|
484
|
+
} | {
|
|
485
|
+
id: string;
|
|
486
|
+
type: string;
|
|
487
|
+
props: {
|
|
488
|
+
url: string;
|
|
489
|
+
width: string;
|
|
490
|
+
aspectRatio: number;
|
|
491
|
+
resizeMode: string;
|
|
492
|
+
borderRadius: number;
|
|
493
|
+
source?: undefined;
|
|
494
|
+
height?: undefined;
|
|
495
|
+
autoPlay?: undefined;
|
|
496
|
+
loop?: undefined;
|
|
497
|
+
fit?: undefined;
|
|
498
|
+
animation?: undefined;
|
|
499
|
+
name?: undefined;
|
|
500
|
+
size?: undefined;
|
|
501
|
+
color?: undefined;
|
|
502
|
+
fill?: undefined;
|
|
503
|
+
fillOpacity?: undefined;
|
|
504
|
+
marginVertical?: undefined;
|
|
505
|
+
transform?: undefined;
|
|
506
|
+
variant?: undefined;
|
|
507
|
+
autoplay?: undefined;
|
|
508
|
+
initialValue?: undefined;
|
|
509
|
+
duration?: undefined;
|
|
510
|
+
easing?: undefined;
|
|
511
|
+
thickness?: undefined;
|
|
512
|
+
showLabel?: undefined;
|
|
513
|
+
delay?: undefined;
|
|
514
|
+
alignSelf?: undefined;
|
|
515
|
+
controls?: undefined;
|
|
516
|
+
muted?: undefined;
|
|
517
|
+
contentFit?: undefined;
|
|
518
|
+
keyboardVerticalOffset?: undefined;
|
|
519
|
+
content?: undefined;
|
|
520
|
+
mode?: undefined;
|
|
521
|
+
fontSize?: undefined;
|
|
522
|
+
textAlign?: undefined;
|
|
523
|
+
opacity?: undefined;
|
|
524
|
+
alignItems?: undefined;
|
|
525
|
+
justifyContent?: undefined;
|
|
365
526
|
fontWeight?: undefined;
|
|
527
|
+
horizontal?: undefined;
|
|
528
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
529
|
+
contentContainerPadding?: undefined;
|
|
366
530
|
fontFamily?: undefined;
|
|
367
531
|
fontStyle?: undefined;
|
|
368
532
|
lineHeight?: undefined;
|
|
@@ -455,10 +619,12 @@ export declare const onboardingExample: {
|
|
|
455
619
|
fontSize?: undefined;
|
|
456
620
|
textAlign?: undefined;
|
|
457
621
|
opacity?: undefined;
|
|
622
|
+
alignItems?: undefined;
|
|
623
|
+
justifyContent?: undefined;
|
|
624
|
+
fontWeight?: undefined;
|
|
458
625
|
horizontal?: undefined;
|
|
459
626
|
showsHorizontalScrollIndicator?: undefined;
|
|
460
627
|
contentContainerPadding?: undefined;
|
|
461
|
-
fontWeight?: undefined;
|
|
462
628
|
fontFamily?: undefined;
|
|
463
629
|
fontStyle?: undefined;
|
|
464
630
|
lineHeight?: undefined;
|
|
@@ -532,10 +698,12 @@ export declare const onboardingExample: {
|
|
|
532
698
|
fontSize?: undefined;
|
|
533
699
|
textAlign?: undefined;
|
|
534
700
|
opacity?: undefined;
|
|
701
|
+
alignItems?: undefined;
|
|
702
|
+
justifyContent?: undefined;
|
|
703
|
+
fontWeight?: undefined;
|
|
535
704
|
horizontal?: undefined;
|
|
536
705
|
showsHorizontalScrollIndicator?: undefined;
|
|
537
706
|
contentContainerPadding?: undefined;
|
|
538
|
-
fontWeight?: undefined;
|
|
539
707
|
fontFamily?: undefined;
|
|
540
708
|
fontStyle?: undefined;
|
|
541
709
|
lineHeight?: undefined;
|
|
@@ -609,10 +777,12 @@ export declare const onboardingExample: {
|
|
|
609
777
|
fontSize?: undefined;
|
|
610
778
|
textAlign?: undefined;
|
|
611
779
|
opacity?: undefined;
|
|
780
|
+
alignItems?: undefined;
|
|
781
|
+
justifyContent?: undefined;
|
|
782
|
+
fontWeight?: undefined;
|
|
612
783
|
horizontal?: undefined;
|
|
613
784
|
showsHorizontalScrollIndicator?: undefined;
|
|
614
785
|
contentContainerPadding?: undefined;
|
|
615
|
-
fontWeight?: undefined;
|
|
616
786
|
fontFamily?: undefined;
|
|
617
787
|
fontStyle?: undefined;
|
|
618
788
|
lineHeight?: undefined;
|
|
@@ -686,10 +856,12 @@ export declare const onboardingExample: {
|
|
|
686
856
|
fontSize?: undefined;
|
|
687
857
|
textAlign?: undefined;
|
|
688
858
|
opacity?: undefined;
|
|
859
|
+
alignItems?: undefined;
|
|
860
|
+
justifyContent?: undefined;
|
|
861
|
+
fontWeight?: undefined;
|
|
689
862
|
horizontal?: undefined;
|
|
690
863
|
showsHorizontalScrollIndicator?: undefined;
|
|
691
864
|
contentContainerPadding?: undefined;
|
|
692
|
-
fontWeight?: undefined;
|
|
693
865
|
fontFamily?: undefined;
|
|
694
866
|
fontStyle?: undefined;
|
|
695
867
|
lineHeight?: undefined;
|
|
@@ -763,10 +935,12 @@ export declare const onboardingExample: {
|
|
|
763
935
|
fontSize?: undefined;
|
|
764
936
|
textAlign?: undefined;
|
|
765
937
|
opacity?: undefined;
|
|
938
|
+
alignItems?: undefined;
|
|
939
|
+
justifyContent?: undefined;
|
|
940
|
+
fontWeight?: undefined;
|
|
766
941
|
horizontal?: undefined;
|
|
767
942
|
showsHorizontalScrollIndicator?: undefined;
|
|
768
943
|
contentContainerPadding?: undefined;
|
|
769
|
-
fontWeight?: undefined;
|
|
770
944
|
fontFamily?: undefined;
|
|
771
945
|
fontStyle?: undefined;
|
|
772
946
|
lineHeight?: undefined;
|
|
@@ -856,10 +1030,12 @@ export declare const onboardingExample: {
|
|
|
856
1030
|
muted?: undefined;
|
|
857
1031
|
contentFit?: undefined;
|
|
858
1032
|
keyboardVerticalOffset?: undefined;
|
|
1033
|
+
alignItems?: undefined;
|
|
1034
|
+
justifyContent?: undefined;
|
|
1035
|
+
fontWeight?: undefined;
|
|
859
1036
|
horizontal?: undefined;
|
|
860
1037
|
showsHorizontalScrollIndicator?: undefined;
|
|
861
1038
|
contentContainerPadding?: undefined;
|
|
862
|
-
fontWeight?: undefined;
|
|
863
1039
|
fontFamily?: undefined;
|
|
864
1040
|
fontStyle?: undefined;
|
|
865
1041
|
lineHeight?: undefined;
|
|
@@ -950,10 +1126,12 @@ export declare const onboardingExample: {
|
|
|
950
1126
|
keyboardVerticalOffset?: undefined;
|
|
951
1127
|
mode?: undefined;
|
|
952
1128
|
opacity?: undefined;
|
|
1129
|
+
alignItems?: undefined;
|
|
1130
|
+
justifyContent?: undefined;
|
|
1131
|
+
fontWeight?: undefined;
|
|
953
1132
|
horizontal?: undefined;
|
|
954
1133
|
showsHorizontalScrollIndicator?: undefined;
|
|
955
1134
|
contentContainerPadding?: undefined;
|
|
956
|
-
fontWeight?: undefined;
|
|
957
1135
|
fontFamily?: undefined;
|
|
958
1136
|
fontStyle?: undefined;
|
|
959
1137
|
lineHeight?: undefined;
|
|
@@ -987,6 +1165,223 @@ export declare const onboardingExample: {
|
|
|
987
1165
|
};
|
|
988
1166
|
children?: undefined;
|
|
989
1167
|
renderWhen?: undefined;
|
|
1168
|
+
} | {
|
|
1169
|
+
id: string;
|
|
1170
|
+
type: string;
|
|
1171
|
+
props: {
|
|
1172
|
+
alignItems: string;
|
|
1173
|
+
justifyContent: string;
|
|
1174
|
+
marginVertical: number;
|
|
1175
|
+
fontSize: number;
|
|
1176
|
+
fontWeight: string;
|
|
1177
|
+
source?: undefined;
|
|
1178
|
+
height?: undefined;
|
|
1179
|
+
autoPlay?: undefined;
|
|
1180
|
+
loop?: undefined;
|
|
1181
|
+
url?: undefined;
|
|
1182
|
+
width?: undefined;
|
|
1183
|
+
aspectRatio?: undefined;
|
|
1184
|
+
fit?: undefined;
|
|
1185
|
+
resizeMode?: undefined;
|
|
1186
|
+
borderRadius?: undefined;
|
|
1187
|
+
animation?: undefined;
|
|
1188
|
+
name?: undefined;
|
|
1189
|
+
size?: undefined;
|
|
1190
|
+
color?: undefined;
|
|
1191
|
+
fill?: undefined;
|
|
1192
|
+
fillOpacity?: undefined;
|
|
1193
|
+
transform?: undefined;
|
|
1194
|
+
variant?: undefined;
|
|
1195
|
+
autoplay?: undefined;
|
|
1196
|
+
initialValue?: undefined;
|
|
1197
|
+
duration?: undefined;
|
|
1198
|
+
easing?: undefined;
|
|
1199
|
+
thickness?: undefined;
|
|
1200
|
+
showLabel?: undefined;
|
|
1201
|
+
delay?: undefined;
|
|
1202
|
+
alignSelf?: undefined;
|
|
1203
|
+
controls?: undefined;
|
|
1204
|
+
muted?: undefined;
|
|
1205
|
+
contentFit?: undefined;
|
|
1206
|
+
keyboardVerticalOffset?: undefined;
|
|
1207
|
+
content?: undefined;
|
|
1208
|
+
mode?: undefined;
|
|
1209
|
+
textAlign?: undefined;
|
|
1210
|
+
opacity?: undefined;
|
|
1211
|
+
horizontal?: undefined;
|
|
1212
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1213
|
+
contentContainerPadding?: undefined;
|
|
1214
|
+
fontFamily?: undefined;
|
|
1215
|
+
fontStyle?: undefined;
|
|
1216
|
+
lineHeight?: undefined;
|
|
1217
|
+
variableName?: undefined;
|
|
1218
|
+
defaultValue?: undefined;
|
|
1219
|
+
showTick?: undefined;
|
|
1220
|
+
gap?: undefined;
|
|
1221
|
+
items?: undefined;
|
|
1222
|
+
defaultValues?: undefined;
|
|
1223
|
+
display?: undefined;
|
|
1224
|
+
maximumDate?: undefined;
|
|
1225
|
+
range?: undefined;
|
|
1226
|
+
carouselType?: undefined;
|
|
1227
|
+
showDots?: undefined;
|
|
1228
|
+
defaultIndex?: undefined;
|
|
1229
|
+
overflow?: undefined;
|
|
1230
|
+
label?: undefined;
|
|
1231
|
+
actions?: undefined;
|
|
1232
|
+
padding?: undefined;
|
|
1233
|
+
backgroundGradient?: undefined;
|
|
1234
|
+
backgroundColor?: undefined;
|
|
1235
|
+
shadowColor?: undefined;
|
|
1236
|
+
shadowOffset?: undefined;
|
|
1237
|
+
shadowOpacity?: undefined;
|
|
1238
|
+
shadowRadius?: undefined;
|
|
1239
|
+
elevation?: undefined;
|
|
1240
|
+
transitionDurationMs?: undefined;
|
|
1241
|
+
pressedStyle?: undefined;
|
|
1242
|
+
disabledWhen?: undefined;
|
|
1243
|
+
disabledStyle?: undefined;
|
|
1244
|
+
};
|
|
1245
|
+
children: ({
|
|
1246
|
+
id: string;
|
|
1247
|
+
type: string;
|
|
1248
|
+
props: {
|
|
1249
|
+
content: string;
|
|
1250
|
+
fontWeight?: undefined;
|
|
1251
|
+
color?: undefined;
|
|
1252
|
+
backgroundColor?: undefined;
|
|
1253
|
+
paddingHorizontal?: undefined;
|
|
1254
|
+
paddingVertical?: undefined;
|
|
1255
|
+
borderRadius?: undefined;
|
|
1256
|
+
marginHorizontal?: undefined;
|
|
1257
|
+
transform?: undefined;
|
|
1258
|
+
mode?: undefined;
|
|
1259
|
+
};
|
|
1260
|
+
renderWhen?: undefined;
|
|
1261
|
+
} | {
|
|
1262
|
+
id: string;
|
|
1263
|
+
type: string;
|
|
1264
|
+
props: {
|
|
1265
|
+
content: string;
|
|
1266
|
+
fontWeight: string;
|
|
1267
|
+
color: string;
|
|
1268
|
+
backgroundColor: string;
|
|
1269
|
+
paddingHorizontal: number;
|
|
1270
|
+
paddingVertical: number;
|
|
1271
|
+
borderRadius: number;
|
|
1272
|
+
marginHorizontal: number;
|
|
1273
|
+
transform: {
|
|
1274
|
+
rotate: number;
|
|
1275
|
+
};
|
|
1276
|
+
mode?: undefined;
|
|
1277
|
+
};
|
|
1278
|
+
renderWhen?: undefined;
|
|
1279
|
+
} | {
|
|
1280
|
+
id: string;
|
|
1281
|
+
type: string;
|
|
1282
|
+
renderWhen: {
|
|
1283
|
+
variable: string;
|
|
1284
|
+
operator: string;
|
|
1285
|
+
};
|
|
1286
|
+
props: {
|
|
1287
|
+
content: string;
|
|
1288
|
+
mode: string;
|
|
1289
|
+
fontWeight?: undefined;
|
|
1290
|
+
color?: undefined;
|
|
1291
|
+
backgroundColor?: undefined;
|
|
1292
|
+
paddingHorizontal?: undefined;
|
|
1293
|
+
paddingVertical?: undefined;
|
|
1294
|
+
borderRadius?: undefined;
|
|
1295
|
+
marginHorizontal?: undefined;
|
|
1296
|
+
transform?: undefined;
|
|
1297
|
+
};
|
|
1298
|
+
})[];
|
|
1299
|
+
renderWhen?: undefined;
|
|
1300
|
+
} | {
|
|
1301
|
+
id: string;
|
|
1302
|
+
type: string;
|
|
1303
|
+
props: {
|
|
1304
|
+
textAlign: string;
|
|
1305
|
+
fontSize: number;
|
|
1306
|
+
marginVertical: number;
|
|
1307
|
+
source?: undefined;
|
|
1308
|
+
height?: undefined;
|
|
1309
|
+
autoPlay?: undefined;
|
|
1310
|
+
loop?: undefined;
|
|
1311
|
+
url?: undefined;
|
|
1312
|
+
width?: undefined;
|
|
1313
|
+
aspectRatio?: undefined;
|
|
1314
|
+
fit?: undefined;
|
|
1315
|
+
resizeMode?: undefined;
|
|
1316
|
+
borderRadius?: undefined;
|
|
1317
|
+
animation?: undefined;
|
|
1318
|
+
name?: undefined;
|
|
1319
|
+
size?: undefined;
|
|
1320
|
+
color?: undefined;
|
|
1321
|
+
fill?: undefined;
|
|
1322
|
+
fillOpacity?: undefined;
|
|
1323
|
+
transform?: undefined;
|
|
1324
|
+
variant?: undefined;
|
|
1325
|
+
autoplay?: undefined;
|
|
1326
|
+
initialValue?: undefined;
|
|
1327
|
+
duration?: undefined;
|
|
1328
|
+
easing?: undefined;
|
|
1329
|
+
thickness?: undefined;
|
|
1330
|
+
showLabel?: undefined;
|
|
1331
|
+
delay?: undefined;
|
|
1332
|
+
alignSelf?: undefined;
|
|
1333
|
+
controls?: undefined;
|
|
1334
|
+
muted?: undefined;
|
|
1335
|
+
contentFit?: undefined;
|
|
1336
|
+
keyboardVerticalOffset?: undefined;
|
|
1337
|
+
content?: undefined;
|
|
1338
|
+
mode?: undefined;
|
|
1339
|
+
opacity?: undefined;
|
|
1340
|
+
alignItems?: undefined;
|
|
1341
|
+
justifyContent?: undefined;
|
|
1342
|
+
fontWeight?: undefined;
|
|
1343
|
+
horizontal?: undefined;
|
|
1344
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1345
|
+
contentContainerPadding?: undefined;
|
|
1346
|
+
fontFamily?: undefined;
|
|
1347
|
+
fontStyle?: undefined;
|
|
1348
|
+
lineHeight?: undefined;
|
|
1349
|
+
variableName?: undefined;
|
|
1350
|
+
defaultValue?: undefined;
|
|
1351
|
+
showTick?: undefined;
|
|
1352
|
+
gap?: undefined;
|
|
1353
|
+
items?: undefined;
|
|
1354
|
+
defaultValues?: undefined;
|
|
1355
|
+
display?: undefined;
|
|
1356
|
+
maximumDate?: undefined;
|
|
1357
|
+
range?: undefined;
|
|
1358
|
+
carouselType?: undefined;
|
|
1359
|
+
showDots?: undefined;
|
|
1360
|
+
defaultIndex?: undefined;
|
|
1361
|
+
overflow?: undefined;
|
|
1362
|
+
label?: undefined;
|
|
1363
|
+
actions?: undefined;
|
|
1364
|
+
padding?: undefined;
|
|
1365
|
+
backgroundGradient?: undefined;
|
|
1366
|
+
backgroundColor?: undefined;
|
|
1367
|
+
shadowColor?: undefined;
|
|
1368
|
+
shadowOffset?: undefined;
|
|
1369
|
+
shadowOpacity?: undefined;
|
|
1370
|
+
shadowRadius?: undefined;
|
|
1371
|
+
elevation?: undefined;
|
|
1372
|
+
transitionDurationMs?: undefined;
|
|
1373
|
+
pressedStyle?: undefined;
|
|
1374
|
+
disabledWhen?: undefined;
|
|
1375
|
+
disabledStyle?: undefined;
|
|
1376
|
+
};
|
|
1377
|
+
children: {
|
|
1378
|
+
id: string;
|
|
1379
|
+
type: string;
|
|
1380
|
+
props: {
|
|
1381
|
+
content: string;
|
|
1382
|
+
};
|
|
1383
|
+
}[];
|
|
1384
|
+
renderWhen?: undefined;
|
|
990
1385
|
} | {
|
|
991
1386
|
id: string;
|
|
992
1387
|
type: string;
|
|
@@ -994,6 +1389,7 @@ export declare const onboardingExample: {
|
|
|
994
1389
|
horizontal: boolean;
|
|
995
1390
|
showsHorizontalScrollIndicator: boolean;
|
|
996
1391
|
contentContainerPadding: number;
|
|
1392
|
+
alignItems: string;
|
|
997
1393
|
source?: undefined;
|
|
998
1394
|
height?: undefined;
|
|
999
1395
|
autoPlay?: undefined;
|
|
@@ -1030,6 +1426,7 @@ export declare const onboardingExample: {
|
|
|
1030
1426
|
fontSize?: undefined;
|
|
1031
1427
|
textAlign?: undefined;
|
|
1032
1428
|
opacity?: undefined;
|
|
1429
|
+
justifyContent?: undefined;
|
|
1033
1430
|
fontWeight?: undefined;
|
|
1034
1431
|
fontFamily?: undefined;
|
|
1035
1432
|
fontStyle?: undefined;
|
|
@@ -1121,6 +1518,8 @@ export declare const onboardingExample: {
|
|
|
1121
1518
|
contentFit?: undefined;
|
|
1122
1519
|
keyboardVerticalOffset?: undefined;
|
|
1123
1520
|
opacity?: undefined;
|
|
1521
|
+
alignItems?: undefined;
|
|
1522
|
+
justifyContent?: undefined;
|
|
1124
1523
|
horizontal?: undefined;
|
|
1125
1524
|
showsHorizontalScrollIndicator?: undefined;
|
|
1126
1525
|
contentContainerPadding?: undefined;
|
|
@@ -1199,6 +1598,8 @@ export declare const onboardingExample: {
|
|
|
1199
1598
|
keyboardVerticalOffset?: undefined;
|
|
1200
1599
|
mode?: undefined;
|
|
1201
1600
|
opacity?: undefined;
|
|
1601
|
+
alignItems?: undefined;
|
|
1602
|
+
justifyContent?: undefined;
|
|
1202
1603
|
horizontal?: undefined;
|
|
1203
1604
|
showsHorizontalScrollIndicator?: undefined;
|
|
1204
1605
|
contentContainerPadding?: undefined;
|
|
@@ -1276,10 +1677,12 @@ export declare const onboardingExample: {
|
|
|
1276
1677
|
keyboardVerticalOffset?: undefined;
|
|
1277
1678
|
mode?: undefined;
|
|
1278
1679
|
opacity?: undefined;
|
|
1680
|
+
alignItems?: undefined;
|
|
1681
|
+
justifyContent?: undefined;
|
|
1682
|
+
fontWeight?: undefined;
|
|
1279
1683
|
horizontal?: undefined;
|
|
1280
1684
|
showsHorizontalScrollIndicator?: undefined;
|
|
1281
1685
|
contentContainerPadding?: undefined;
|
|
1282
|
-
fontWeight?: undefined;
|
|
1283
1686
|
lineHeight?: undefined;
|
|
1284
1687
|
variableName?: undefined;
|
|
1285
1688
|
defaultValue?: undefined;
|
|
@@ -1351,10 +1754,12 @@ export declare const onboardingExample: {
|
|
|
1351
1754
|
contentFit?: undefined;
|
|
1352
1755
|
keyboardVerticalOffset?: undefined;
|
|
1353
1756
|
mode?: undefined;
|
|
1757
|
+
alignItems?: undefined;
|
|
1758
|
+
justifyContent?: undefined;
|
|
1759
|
+
fontWeight?: undefined;
|
|
1354
1760
|
horizontal?: undefined;
|
|
1355
1761
|
showsHorizontalScrollIndicator?: undefined;
|
|
1356
1762
|
contentContainerPadding?: undefined;
|
|
1357
|
-
fontWeight?: undefined;
|
|
1358
1763
|
fontFamily?: undefined;
|
|
1359
1764
|
fontStyle?: undefined;
|
|
1360
1765
|
lineHeight?: undefined;
|
|
@@ -1429,10 +1834,12 @@ export declare const onboardingExample: {
|
|
|
1429
1834
|
contentFit?: undefined;
|
|
1430
1835
|
keyboardVerticalOffset?: undefined;
|
|
1431
1836
|
mode?: undefined;
|
|
1837
|
+
alignItems?: undefined;
|
|
1838
|
+
justifyContent?: undefined;
|
|
1839
|
+
fontWeight?: undefined;
|
|
1432
1840
|
horizontal?: undefined;
|
|
1433
1841
|
showsHorizontalScrollIndicator?: undefined;
|
|
1434
1842
|
contentContainerPadding?: undefined;
|
|
1435
|
-
fontWeight?: undefined;
|
|
1436
1843
|
fontStyle?: undefined;
|
|
1437
1844
|
lineHeight?: undefined;
|
|
1438
1845
|
variableName?: undefined;
|
|
@@ -1506,10 +1913,12 @@ export declare const onboardingExample: {
|
|
|
1506
1913
|
contentFit?: undefined;
|
|
1507
1914
|
keyboardVerticalOffset?: undefined;
|
|
1508
1915
|
mode?: undefined;
|
|
1916
|
+
alignItems?: undefined;
|
|
1917
|
+
justifyContent?: undefined;
|
|
1918
|
+
fontWeight?: undefined;
|
|
1509
1919
|
horizontal?: undefined;
|
|
1510
1920
|
showsHorizontalScrollIndicator?: undefined;
|
|
1511
1921
|
contentContainerPadding?: undefined;
|
|
1512
|
-
fontWeight?: undefined;
|
|
1513
1922
|
fontFamily?: undefined;
|
|
1514
1923
|
fontStyle?: undefined;
|
|
1515
1924
|
variableName?: undefined;
|
|
@@ -1590,10 +1999,12 @@ export declare const onboardingExample: {
|
|
|
1590
1999
|
fontSize?: undefined;
|
|
1591
2000
|
textAlign?: undefined;
|
|
1592
2001
|
opacity?: undefined;
|
|
2002
|
+
alignItems?: undefined;
|
|
2003
|
+
justifyContent?: undefined;
|
|
2004
|
+
fontWeight?: undefined;
|
|
1593
2005
|
horizontal?: undefined;
|
|
1594
2006
|
showsHorizontalScrollIndicator?: undefined;
|
|
1595
2007
|
contentContainerPadding?: undefined;
|
|
1596
|
-
fontWeight?: undefined;
|
|
1597
2008
|
fontFamily?: undefined;
|
|
1598
2009
|
fontStyle?: undefined;
|
|
1599
2010
|
lineHeight?: undefined;
|
|
@@ -1662,10 +2073,12 @@ export declare const onboardingExample: {
|
|
|
1662
2073
|
muted?: undefined;
|
|
1663
2074
|
contentFit?: undefined;
|
|
1664
2075
|
keyboardVerticalOffset?: undefined;
|
|
2076
|
+
alignItems?: undefined;
|
|
2077
|
+
justifyContent?: undefined;
|
|
2078
|
+
fontWeight?: undefined;
|
|
1665
2079
|
horizontal?: undefined;
|
|
1666
2080
|
showsHorizontalScrollIndicator?: undefined;
|
|
1667
2081
|
contentContainerPadding?: undefined;
|
|
1668
|
-
fontWeight?: undefined;
|
|
1669
2082
|
fontFamily?: undefined;
|
|
1670
2083
|
fontStyle?: undefined;
|
|
1671
2084
|
lineHeight?: undefined;
|
|
@@ -1745,6 +2158,8 @@ export declare const onboardingExample: {
|
|
|
1745
2158
|
keyboardVerticalOffset?: undefined;
|
|
1746
2159
|
mode?: undefined;
|
|
1747
2160
|
opacity?: undefined;
|
|
2161
|
+
alignItems?: undefined;
|
|
2162
|
+
justifyContent?: undefined;
|
|
1748
2163
|
horizontal?: undefined;
|
|
1749
2164
|
showsHorizontalScrollIndicator?: undefined;
|
|
1750
2165
|
contentContainerPadding?: undefined;
|
|
@@ -1828,10 +2243,12 @@ export declare const onboardingExample: {
|
|
|
1828
2243
|
fontSize?: undefined;
|
|
1829
2244
|
textAlign?: undefined;
|
|
1830
2245
|
opacity?: undefined;
|
|
2246
|
+
alignItems?: undefined;
|
|
2247
|
+
justifyContent?: undefined;
|
|
2248
|
+
fontWeight?: undefined;
|
|
1831
2249
|
horizontal?: undefined;
|
|
1832
2250
|
showsHorizontalScrollIndicator?: undefined;
|
|
1833
2251
|
contentContainerPadding?: undefined;
|
|
1834
|
-
fontWeight?: undefined;
|
|
1835
2252
|
fontFamily?: undefined;
|
|
1836
2253
|
fontStyle?: undefined;
|
|
1837
2254
|
lineHeight?: undefined;
|
|
@@ -1904,10 +2321,12 @@ export declare const onboardingExample: {
|
|
|
1904
2321
|
fontSize?: undefined;
|
|
1905
2322
|
textAlign?: undefined;
|
|
1906
2323
|
opacity?: undefined;
|
|
2324
|
+
alignItems?: undefined;
|
|
2325
|
+
justifyContent?: undefined;
|
|
2326
|
+
fontWeight?: undefined;
|
|
1907
2327
|
horizontal?: undefined;
|
|
1908
2328
|
showsHorizontalScrollIndicator?: undefined;
|
|
1909
2329
|
contentContainerPadding?: undefined;
|
|
1910
|
-
fontWeight?: undefined;
|
|
1911
2330
|
fontFamily?: undefined;
|
|
1912
2331
|
fontStyle?: undefined;
|
|
1913
2332
|
lineHeight?: undefined;
|
|
@@ -1985,10 +2404,12 @@ export declare const onboardingExample: {
|
|
|
1985
2404
|
fontSize?: undefined;
|
|
1986
2405
|
textAlign?: undefined;
|
|
1987
2406
|
opacity?: undefined;
|
|
2407
|
+
alignItems?: undefined;
|
|
2408
|
+
justifyContent?: undefined;
|
|
2409
|
+
fontWeight?: undefined;
|
|
1988
2410
|
horizontal?: undefined;
|
|
1989
2411
|
showsHorizontalScrollIndicator?: undefined;
|
|
1990
2412
|
contentContainerPadding?: undefined;
|
|
1991
|
-
fontWeight?: undefined;
|
|
1992
2413
|
fontFamily?: undefined;
|
|
1993
2414
|
fontStyle?: undefined;
|
|
1994
2415
|
lineHeight?: undefined;
|
|
@@ -2063,10 +2484,12 @@ export declare const onboardingExample: {
|
|
|
2063
2484
|
fontSize?: undefined;
|
|
2064
2485
|
textAlign?: undefined;
|
|
2065
2486
|
opacity?: undefined;
|
|
2487
|
+
alignItems?: undefined;
|
|
2488
|
+
justifyContent?: undefined;
|
|
2489
|
+
fontWeight?: undefined;
|
|
2066
2490
|
horizontal?: undefined;
|
|
2067
2491
|
showsHorizontalScrollIndicator?: undefined;
|
|
2068
2492
|
contentContainerPadding?: undefined;
|
|
2069
|
-
fontWeight?: undefined;
|
|
2070
2493
|
fontFamily?: undefined;
|
|
2071
2494
|
fontStyle?: undefined;
|
|
2072
2495
|
lineHeight?: undefined;
|
|
@@ -2145,10 +2568,12 @@ export declare const onboardingExample: {
|
|
|
2145
2568
|
fontSize?: undefined;
|
|
2146
2569
|
textAlign?: undefined;
|
|
2147
2570
|
opacity?: undefined;
|
|
2571
|
+
alignItems?: undefined;
|
|
2572
|
+
justifyContent?: undefined;
|
|
2573
|
+
fontWeight?: undefined;
|
|
2148
2574
|
horizontal?: undefined;
|
|
2149
2575
|
showsHorizontalScrollIndicator?: undefined;
|
|
2150
2576
|
contentContainerPadding?: undefined;
|
|
2151
|
-
fontWeight?: undefined;
|
|
2152
2577
|
fontFamily?: undefined;
|
|
2153
2578
|
fontStyle?: undefined;
|
|
2154
2579
|
lineHeight?: undefined;
|
|
@@ -2236,10 +2661,12 @@ export declare const onboardingExample: {
|
|
|
2236
2661
|
fontSize?: undefined;
|
|
2237
2662
|
textAlign?: undefined;
|
|
2238
2663
|
opacity?: undefined;
|
|
2664
|
+
alignItems?: undefined;
|
|
2665
|
+
justifyContent?: undefined;
|
|
2666
|
+
fontWeight?: undefined;
|
|
2239
2667
|
horizontal?: undefined;
|
|
2240
2668
|
showsHorizontalScrollIndicator?: undefined;
|
|
2241
2669
|
contentContainerPadding?: undefined;
|
|
2242
|
-
fontWeight?: undefined;
|
|
2243
2670
|
fontFamily?: undefined;
|
|
2244
2671
|
fontStyle?: undefined;
|
|
2245
2672
|
lineHeight?: undefined;
|
|
@@ -2353,10 +2780,12 @@ export declare const onboardingExample: {
|
|
|
2353
2780
|
fontSize?: undefined;
|
|
2354
2781
|
textAlign?: undefined;
|
|
2355
2782
|
opacity?: undefined;
|
|
2783
|
+
alignItems?: undefined;
|
|
2784
|
+
justifyContent?: undefined;
|
|
2785
|
+
fontWeight?: undefined;
|
|
2356
2786
|
horizontal?: undefined;
|
|
2357
2787
|
showsHorizontalScrollIndicator?: undefined;
|
|
2358
2788
|
contentContainerPadding?: undefined;
|
|
2359
|
-
fontWeight?: undefined;
|
|
2360
2789
|
fontFamily?: undefined;
|
|
2361
2790
|
fontStyle?: undefined;
|
|
2362
2791
|
lineHeight?: undefined;
|
|
@@ -2439,10 +2868,12 @@ export declare const onboardingExample: {
|
|
|
2439
2868
|
fontSize?: undefined;
|
|
2440
2869
|
textAlign?: undefined;
|
|
2441
2870
|
opacity?: undefined;
|
|
2871
|
+
alignItems?: undefined;
|
|
2872
|
+
justifyContent?: undefined;
|
|
2873
|
+
fontWeight?: undefined;
|
|
2442
2874
|
horizontal?: undefined;
|
|
2443
2875
|
showsHorizontalScrollIndicator?: undefined;
|
|
2444
2876
|
contentContainerPadding?: undefined;
|
|
2445
|
-
fontWeight?: undefined;
|
|
2446
2877
|
fontFamily?: undefined;
|
|
2447
2878
|
fontStyle?: undefined;
|
|
2448
2879
|
lineHeight?: undefined;
|
|
@@ -2542,10 +2973,12 @@ export declare const onboardingExample: {
|
|
|
2542
2973
|
fontSize?: undefined;
|
|
2543
2974
|
textAlign?: undefined;
|
|
2544
2975
|
opacity?: undefined;
|
|
2976
|
+
alignItems?: undefined;
|
|
2977
|
+
justifyContent?: undefined;
|
|
2978
|
+
fontWeight?: undefined;
|
|
2545
2979
|
horizontal?: undefined;
|
|
2546
2980
|
showsHorizontalScrollIndicator?: undefined;
|
|
2547
2981
|
contentContainerPadding?: undefined;
|
|
2548
|
-
fontWeight?: undefined;
|
|
2549
2982
|
fontFamily?: undefined;
|
|
2550
2983
|
fontStyle?: undefined;
|
|
2551
2984
|
lineHeight?: undefined;
|
|
@@ -2618,6 +3051,8 @@ export declare const onboardingExample: {
|
|
|
2618
3051
|
keyboardVerticalOffset?: undefined;
|
|
2619
3052
|
mode?: undefined;
|
|
2620
3053
|
textAlign?: undefined;
|
|
3054
|
+
alignItems?: undefined;
|
|
3055
|
+
justifyContent?: undefined;
|
|
2621
3056
|
horizontal?: undefined;
|
|
2622
3057
|
showsHorizontalScrollIndicator?: undefined;
|
|
2623
3058
|
contentContainerPadding?: undefined;
|
|
@@ -2704,10 +3139,12 @@ export declare const onboardingExample: {
|
|
|
2704
3139
|
fontSize?: undefined;
|
|
2705
3140
|
textAlign?: undefined;
|
|
2706
3141
|
opacity?: undefined;
|
|
3142
|
+
alignItems?: undefined;
|
|
3143
|
+
justifyContent?: undefined;
|
|
3144
|
+
fontWeight?: undefined;
|
|
2707
3145
|
horizontal?: undefined;
|
|
2708
3146
|
showsHorizontalScrollIndicator?: undefined;
|
|
2709
3147
|
contentContainerPadding?: undefined;
|
|
2710
|
-
fontWeight?: undefined;
|
|
2711
3148
|
fontFamily?: undefined;
|
|
2712
3149
|
fontStyle?: undefined;
|
|
2713
3150
|
lineHeight?: undefined;
|
|
@@ -2781,10 +3218,12 @@ export declare const onboardingExample: {
|
|
|
2781
3218
|
fontSize?: undefined;
|
|
2782
3219
|
textAlign?: undefined;
|
|
2783
3220
|
opacity?: undefined;
|
|
3221
|
+
alignItems?: undefined;
|
|
3222
|
+
justifyContent?: undefined;
|
|
3223
|
+
fontWeight?: undefined;
|
|
2784
3224
|
horizontal?: undefined;
|
|
2785
3225
|
showsHorizontalScrollIndicator?: undefined;
|
|
2786
3226
|
contentContainerPadding?: undefined;
|
|
2787
|
-
fontWeight?: undefined;
|
|
2788
3227
|
fontFamily?: undefined;
|
|
2789
3228
|
fontStyle?: undefined;
|
|
2790
3229
|
lineHeight?: undefined;
|
|
@@ -2868,10 +3307,12 @@ export declare const onboardingExample: {
|
|
|
2868
3307
|
fontSize?: undefined;
|
|
2869
3308
|
textAlign?: undefined;
|
|
2870
3309
|
opacity?: undefined;
|
|
3310
|
+
alignItems?: undefined;
|
|
3311
|
+
justifyContent?: undefined;
|
|
3312
|
+
fontWeight?: undefined;
|
|
2871
3313
|
horizontal?: undefined;
|
|
2872
3314
|
showsHorizontalScrollIndicator?: undefined;
|
|
2873
3315
|
contentContainerPadding?: undefined;
|
|
2874
|
-
fontWeight?: undefined;
|
|
2875
3316
|
fontFamily?: undefined;
|
|
2876
3317
|
fontStyle?: undefined;
|
|
2877
3318
|
lineHeight?: undefined;
|
|
@@ -2948,10 +3389,12 @@ export declare const onboardingExample: {
|
|
|
2948
3389
|
fontSize?: undefined;
|
|
2949
3390
|
textAlign?: undefined;
|
|
2950
3391
|
opacity?: undefined;
|
|
3392
|
+
alignItems?: undefined;
|
|
3393
|
+
justifyContent?: undefined;
|
|
3394
|
+
fontWeight?: undefined;
|
|
2951
3395
|
horizontal?: undefined;
|
|
2952
3396
|
showsHorizontalScrollIndicator?: undefined;
|
|
2953
3397
|
contentContainerPadding?: undefined;
|
|
2954
|
-
fontWeight?: undefined;
|
|
2955
3398
|
fontFamily?: undefined;
|
|
2956
3399
|
fontStyle?: undefined;
|
|
2957
3400
|
lineHeight?: undefined;
|
|
@@ -3050,10 +3493,12 @@ export declare const onboardingExample: {
|
|
|
3050
3493
|
fontSize?: undefined;
|
|
3051
3494
|
textAlign?: undefined;
|
|
3052
3495
|
opacity?: undefined;
|
|
3496
|
+
alignItems?: undefined;
|
|
3497
|
+
justifyContent?: undefined;
|
|
3498
|
+
fontWeight?: undefined;
|
|
3053
3499
|
horizontal?: undefined;
|
|
3054
3500
|
showsHorizontalScrollIndicator?: undefined;
|
|
3055
3501
|
contentContainerPadding?: undefined;
|
|
3056
|
-
fontWeight?: undefined;
|
|
3057
3502
|
fontFamily?: undefined;
|
|
3058
3503
|
fontStyle?: undefined;
|
|
3059
3504
|
lineHeight?: undefined;
|