@rocapine/react-native-onboarding 1.29.0 → 1.30.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 +431 -25
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +32 -0
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts +139 -0
- package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.js +24 -0
- package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.js.map +1 -0
- package/dist/steps/ComposableScreen/types.d.ts +8 -0
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +8 -0
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/onboarding-example.ts +32 -0
- package/src/steps/ComposableScreen/elements/ProgressIndicatorElement.ts +66 -0
- package/src/steps/ComposableScreen/types.ts +16 -0
|
@@ -176,6 +176,15 @@ export declare const onboardingExample: {
|
|
|
176
176
|
fill?: undefined;
|
|
177
177
|
fillOpacity?: undefined;
|
|
178
178
|
marginVertical?: undefined;
|
|
179
|
+
variant?: undefined;
|
|
180
|
+
autoplay?: undefined;
|
|
181
|
+
initialValue?: undefined;
|
|
182
|
+
duration?: undefined;
|
|
183
|
+
easing?: undefined;
|
|
184
|
+
thickness?: undefined;
|
|
185
|
+
showLabel?: undefined;
|
|
186
|
+
delay?: undefined;
|
|
187
|
+
alignSelf?: undefined;
|
|
179
188
|
controls?: undefined;
|
|
180
189
|
muted?: undefined;
|
|
181
190
|
contentFit?: undefined;
|
|
@@ -206,7 +215,6 @@ export declare const onboardingExample: {
|
|
|
206
215
|
defaultIndex?: undefined;
|
|
207
216
|
overflow?: undefined;
|
|
208
217
|
label?: undefined;
|
|
209
|
-
variant?: undefined;
|
|
210
218
|
actions?: undefined;
|
|
211
219
|
padding?: undefined;
|
|
212
220
|
backgroundGradient?: undefined;
|
|
@@ -243,6 +251,15 @@ export declare const onboardingExample: {
|
|
|
243
251
|
fill?: undefined;
|
|
244
252
|
fillOpacity?: undefined;
|
|
245
253
|
marginVertical?: undefined;
|
|
254
|
+
variant?: undefined;
|
|
255
|
+
autoplay?: undefined;
|
|
256
|
+
initialValue?: undefined;
|
|
257
|
+
duration?: undefined;
|
|
258
|
+
easing?: undefined;
|
|
259
|
+
thickness?: undefined;
|
|
260
|
+
showLabel?: undefined;
|
|
261
|
+
delay?: undefined;
|
|
262
|
+
alignSelf?: undefined;
|
|
246
263
|
controls?: undefined;
|
|
247
264
|
muted?: undefined;
|
|
248
265
|
contentFit?: undefined;
|
|
@@ -273,7 +290,6 @@ export declare const onboardingExample: {
|
|
|
273
290
|
defaultIndex?: undefined;
|
|
274
291
|
overflow?: undefined;
|
|
275
292
|
label?: undefined;
|
|
276
|
-
variant?: undefined;
|
|
277
293
|
actions?: undefined;
|
|
278
294
|
padding?: undefined;
|
|
279
295
|
backgroundGradient?: undefined;
|
|
@@ -310,6 +326,15 @@ export declare const onboardingExample: {
|
|
|
310
326
|
fill?: undefined;
|
|
311
327
|
fillOpacity?: undefined;
|
|
312
328
|
marginVertical?: undefined;
|
|
329
|
+
variant?: undefined;
|
|
330
|
+
autoplay?: undefined;
|
|
331
|
+
initialValue?: undefined;
|
|
332
|
+
duration?: undefined;
|
|
333
|
+
easing?: undefined;
|
|
334
|
+
thickness?: undefined;
|
|
335
|
+
showLabel?: undefined;
|
|
336
|
+
delay?: undefined;
|
|
337
|
+
alignSelf?: undefined;
|
|
313
338
|
controls?: undefined;
|
|
314
339
|
muted?: undefined;
|
|
315
340
|
contentFit?: undefined;
|
|
@@ -340,7 +365,6 @@ export declare const onboardingExample: {
|
|
|
340
365
|
defaultIndex?: undefined;
|
|
341
366
|
overflow?: undefined;
|
|
342
367
|
label?: undefined;
|
|
343
|
-
variant?: undefined;
|
|
344
368
|
actions?: undefined;
|
|
345
369
|
padding?: undefined;
|
|
346
370
|
backgroundGradient?: undefined;
|
|
@@ -377,6 +401,165 @@ export declare const onboardingExample: {
|
|
|
377
401
|
fit?: undefined;
|
|
378
402
|
resizeMode?: undefined;
|
|
379
403
|
borderRadius?: undefined;
|
|
404
|
+
variant?: undefined;
|
|
405
|
+
autoplay?: undefined;
|
|
406
|
+
initialValue?: undefined;
|
|
407
|
+
duration?: undefined;
|
|
408
|
+
easing?: undefined;
|
|
409
|
+
thickness?: undefined;
|
|
410
|
+
showLabel?: undefined;
|
|
411
|
+
delay?: undefined;
|
|
412
|
+
alignSelf?: undefined;
|
|
413
|
+
controls?: undefined;
|
|
414
|
+
muted?: undefined;
|
|
415
|
+
contentFit?: undefined;
|
|
416
|
+
keyboardVerticalOffset?: undefined;
|
|
417
|
+
content?: undefined;
|
|
418
|
+
mode?: undefined;
|
|
419
|
+
fontSize?: undefined;
|
|
420
|
+
textAlign?: undefined;
|
|
421
|
+
opacity?: undefined;
|
|
422
|
+
horizontal?: undefined;
|
|
423
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
424
|
+
contentContainerPadding?: undefined;
|
|
425
|
+
fontWeight?: undefined;
|
|
426
|
+
fontFamily?: undefined;
|
|
427
|
+
fontStyle?: undefined;
|
|
428
|
+
lineHeight?: undefined;
|
|
429
|
+
variableName?: undefined;
|
|
430
|
+
defaultValue?: undefined;
|
|
431
|
+
showTick?: undefined;
|
|
432
|
+
gap?: undefined;
|
|
433
|
+
items?: undefined;
|
|
434
|
+
defaultValues?: undefined;
|
|
435
|
+
display?: undefined;
|
|
436
|
+
maximumDate?: undefined;
|
|
437
|
+
range?: undefined;
|
|
438
|
+
carouselType?: undefined;
|
|
439
|
+
showDots?: undefined;
|
|
440
|
+
defaultIndex?: undefined;
|
|
441
|
+
overflow?: undefined;
|
|
442
|
+
label?: undefined;
|
|
443
|
+
actions?: undefined;
|
|
444
|
+
padding?: undefined;
|
|
445
|
+
backgroundGradient?: undefined;
|
|
446
|
+
backgroundColor?: undefined;
|
|
447
|
+
shadowColor?: undefined;
|
|
448
|
+
shadowOffset?: undefined;
|
|
449
|
+
shadowOpacity?: undefined;
|
|
450
|
+
shadowRadius?: undefined;
|
|
451
|
+
elevation?: undefined;
|
|
452
|
+
transitionDurationMs?: undefined;
|
|
453
|
+
pressedStyle?: undefined;
|
|
454
|
+
disabledWhen?: undefined;
|
|
455
|
+
disabledStyle?: undefined;
|
|
456
|
+
};
|
|
457
|
+
children?: undefined;
|
|
458
|
+
renderWhen?: undefined;
|
|
459
|
+
} | {
|
|
460
|
+
id: string;
|
|
461
|
+
type: string;
|
|
462
|
+
props: {
|
|
463
|
+
variant: string;
|
|
464
|
+
autoplay: boolean;
|
|
465
|
+
loop: boolean;
|
|
466
|
+
initialValue: number;
|
|
467
|
+
duration: number;
|
|
468
|
+
easing: string;
|
|
469
|
+
thickness: number;
|
|
470
|
+
showLabel: boolean;
|
|
471
|
+
marginVertical: number;
|
|
472
|
+
source?: undefined;
|
|
473
|
+
height?: undefined;
|
|
474
|
+
autoPlay?: undefined;
|
|
475
|
+
url?: undefined;
|
|
476
|
+
width?: undefined;
|
|
477
|
+
aspectRatio?: undefined;
|
|
478
|
+
fit?: undefined;
|
|
479
|
+
resizeMode?: undefined;
|
|
480
|
+
borderRadius?: undefined;
|
|
481
|
+
name?: undefined;
|
|
482
|
+
size?: undefined;
|
|
483
|
+
color?: undefined;
|
|
484
|
+
fill?: undefined;
|
|
485
|
+
fillOpacity?: undefined;
|
|
486
|
+
delay?: undefined;
|
|
487
|
+
alignSelf?: undefined;
|
|
488
|
+
controls?: undefined;
|
|
489
|
+
muted?: undefined;
|
|
490
|
+
contentFit?: undefined;
|
|
491
|
+
keyboardVerticalOffset?: undefined;
|
|
492
|
+
content?: undefined;
|
|
493
|
+
mode?: undefined;
|
|
494
|
+
fontSize?: undefined;
|
|
495
|
+
textAlign?: undefined;
|
|
496
|
+
opacity?: undefined;
|
|
497
|
+
horizontal?: undefined;
|
|
498
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
499
|
+
contentContainerPadding?: undefined;
|
|
500
|
+
fontWeight?: undefined;
|
|
501
|
+
fontFamily?: undefined;
|
|
502
|
+
fontStyle?: undefined;
|
|
503
|
+
lineHeight?: undefined;
|
|
504
|
+
variableName?: undefined;
|
|
505
|
+
defaultValue?: undefined;
|
|
506
|
+
showTick?: undefined;
|
|
507
|
+
gap?: undefined;
|
|
508
|
+
items?: undefined;
|
|
509
|
+
defaultValues?: undefined;
|
|
510
|
+
display?: undefined;
|
|
511
|
+
maximumDate?: undefined;
|
|
512
|
+
range?: undefined;
|
|
513
|
+
carouselType?: undefined;
|
|
514
|
+
showDots?: undefined;
|
|
515
|
+
defaultIndex?: undefined;
|
|
516
|
+
overflow?: undefined;
|
|
517
|
+
label?: undefined;
|
|
518
|
+
actions?: undefined;
|
|
519
|
+
padding?: undefined;
|
|
520
|
+
backgroundGradient?: undefined;
|
|
521
|
+
backgroundColor?: undefined;
|
|
522
|
+
shadowColor?: undefined;
|
|
523
|
+
shadowOffset?: undefined;
|
|
524
|
+
shadowOpacity?: undefined;
|
|
525
|
+
shadowRadius?: undefined;
|
|
526
|
+
elevation?: undefined;
|
|
527
|
+
transitionDurationMs?: undefined;
|
|
528
|
+
pressedStyle?: undefined;
|
|
529
|
+
disabledWhen?: undefined;
|
|
530
|
+
disabledStyle?: undefined;
|
|
531
|
+
};
|
|
532
|
+
children?: undefined;
|
|
533
|
+
renderWhen?: undefined;
|
|
534
|
+
} | {
|
|
535
|
+
id: string;
|
|
536
|
+
type: string;
|
|
537
|
+
props: {
|
|
538
|
+
variant: string;
|
|
539
|
+
autoplay: boolean;
|
|
540
|
+
loop: boolean;
|
|
541
|
+
initialValue: number;
|
|
542
|
+
duration: number;
|
|
543
|
+
delay: number;
|
|
544
|
+
easing: string;
|
|
545
|
+
size: number;
|
|
546
|
+
thickness: number;
|
|
547
|
+
showLabel: boolean;
|
|
548
|
+
alignSelf: string;
|
|
549
|
+
source?: undefined;
|
|
550
|
+
height?: undefined;
|
|
551
|
+
autoPlay?: undefined;
|
|
552
|
+
url?: undefined;
|
|
553
|
+
width?: undefined;
|
|
554
|
+
aspectRatio?: undefined;
|
|
555
|
+
fit?: undefined;
|
|
556
|
+
resizeMode?: undefined;
|
|
557
|
+
borderRadius?: undefined;
|
|
558
|
+
name?: undefined;
|
|
559
|
+
color?: undefined;
|
|
560
|
+
fill?: undefined;
|
|
561
|
+
fillOpacity?: undefined;
|
|
562
|
+
marginVertical?: undefined;
|
|
380
563
|
controls?: undefined;
|
|
381
564
|
muted?: undefined;
|
|
382
565
|
contentFit?: undefined;
|
|
@@ -407,7 +590,6 @@ export declare const onboardingExample: {
|
|
|
407
590
|
defaultIndex?: undefined;
|
|
408
591
|
overflow?: undefined;
|
|
409
592
|
label?: undefined;
|
|
410
|
-
variant?: undefined;
|
|
411
593
|
actions?: undefined;
|
|
412
594
|
padding?: undefined;
|
|
413
595
|
backgroundGradient?: undefined;
|
|
@@ -447,6 +629,15 @@ export declare const onboardingExample: {
|
|
|
447
629
|
fill?: undefined;
|
|
448
630
|
fillOpacity?: undefined;
|
|
449
631
|
marginVertical?: undefined;
|
|
632
|
+
variant?: undefined;
|
|
633
|
+
autoplay?: undefined;
|
|
634
|
+
initialValue?: undefined;
|
|
635
|
+
duration?: undefined;
|
|
636
|
+
easing?: undefined;
|
|
637
|
+
thickness?: undefined;
|
|
638
|
+
showLabel?: undefined;
|
|
639
|
+
delay?: undefined;
|
|
640
|
+
alignSelf?: undefined;
|
|
450
641
|
keyboardVerticalOffset?: undefined;
|
|
451
642
|
content?: undefined;
|
|
452
643
|
mode?: undefined;
|
|
@@ -474,7 +665,6 @@ export declare const onboardingExample: {
|
|
|
474
665
|
defaultIndex?: undefined;
|
|
475
666
|
overflow?: undefined;
|
|
476
667
|
label?: undefined;
|
|
477
|
-
variant?: undefined;
|
|
478
668
|
actions?: undefined;
|
|
479
669
|
padding?: undefined;
|
|
480
670
|
backgroundGradient?: undefined;
|
|
@@ -512,6 +702,15 @@ export declare const onboardingExample: {
|
|
|
512
702
|
fill?: undefined;
|
|
513
703
|
fillOpacity?: undefined;
|
|
514
704
|
marginVertical?: undefined;
|
|
705
|
+
variant?: undefined;
|
|
706
|
+
autoplay?: undefined;
|
|
707
|
+
initialValue?: undefined;
|
|
708
|
+
duration?: undefined;
|
|
709
|
+
easing?: undefined;
|
|
710
|
+
thickness?: undefined;
|
|
711
|
+
showLabel?: undefined;
|
|
712
|
+
delay?: undefined;
|
|
713
|
+
alignSelf?: undefined;
|
|
515
714
|
controls?: undefined;
|
|
516
715
|
muted?: undefined;
|
|
517
716
|
contentFit?: undefined;
|
|
@@ -541,7 +740,6 @@ export declare const onboardingExample: {
|
|
|
541
740
|
defaultIndex?: undefined;
|
|
542
741
|
overflow?: undefined;
|
|
543
742
|
label?: undefined;
|
|
544
|
-
variant?: undefined;
|
|
545
743
|
actions?: undefined;
|
|
546
744
|
padding?: undefined;
|
|
547
745
|
backgroundGradient?: undefined;
|
|
@@ -599,6 +797,15 @@ export declare const onboardingExample: {
|
|
|
599
797
|
color?: undefined;
|
|
600
798
|
fill?: undefined;
|
|
601
799
|
fillOpacity?: undefined;
|
|
800
|
+
variant?: undefined;
|
|
801
|
+
autoplay?: undefined;
|
|
802
|
+
initialValue?: undefined;
|
|
803
|
+
duration?: undefined;
|
|
804
|
+
easing?: undefined;
|
|
805
|
+
thickness?: undefined;
|
|
806
|
+
showLabel?: undefined;
|
|
807
|
+
delay?: undefined;
|
|
808
|
+
alignSelf?: undefined;
|
|
602
809
|
controls?: undefined;
|
|
603
810
|
muted?: undefined;
|
|
604
811
|
contentFit?: undefined;
|
|
@@ -624,7 +831,6 @@ export declare const onboardingExample: {
|
|
|
624
831
|
defaultIndex?: undefined;
|
|
625
832
|
overflow?: undefined;
|
|
626
833
|
label?: undefined;
|
|
627
|
-
variant?: undefined;
|
|
628
834
|
actions?: undefined;
|
|
629
835
|
padding?: undefined;
|
|
630
836
|
backgroundGradient?: undefined;
|
|
@@ -663,6 +869,15 @@ export declare const onboardingExample: {
|
|
|
663
869
|
fill?: undefined;
|
|
664
870
|
fillOpacity?: undefined;
|
|
665
871
|
marginVertical?: undefined;
|
|
872
|
+
variant?: undefined;
|
|
873
|
+
autoplay?: undefined;
|
|
874
|
+
initialValue?: undefined;
|
|
875
|
+
duration?: undefined;
|
|
876
|
+
easing?: undefined;
|
|
877
|
+
thickness?: undefined;
|
|
878
|
+
showLabel?: undefined;
|
|
879
|
+
delay?: undefined;
|
|
880
|
+
alignSelf?: undefined;
|
|
666
881
|
controls?: undefined;
|
|
667
882
|
muted?: undefined;
|
|
668
883
|
contentFit?: undefined;
|
|
@@ -690,7 +905,6 @@ export declare const onboardingExample: {
|
|
|
690
905
|
defaultIndex?: undefined;
|
|
691
906
|
overflow?: undefined;
|
|
692
907
|
label?: undefined;
|
|
693
|
-
variant?: undefined;
|
|
694
908
|
actions?: undefined;
|
|
695
909
|
padding?: undefined;
|
|
696
910
|
backgroundGradient?: undefined;
|
|
@@ -748,6 +962,15 @@ export declare const onboardingExample: {
|
|
|
748
962
|
color?: undefined;
|
|
749
963
|
fill?: undefined;
|
|
750
964
|
fillOpacity?: undefined;
|
|
965
|
+
variant?: undefined;
|
|
966
|
+
autoplay?: undefined;
|
|
967
|
+
initialValue?: undefined;
|
|
968
|
+
duration?: undefined;
|
|
969
|
+
easing?: undefined;
|
|
970
|
+
thickness?: undefined;
|
|
971
|
+
showLabel?: undefined;
|
|
972
|
+
delay?: undefined;
|
|
973
|
+
alignSelf?: undefined;
|
|
751
974
|
controls?: undefined;
|
|
752
975
|
muted?: undefined;
|
|
753
976
|
contentFit?: undefined;
|
|
@@ -773,7 +996,6 @@ export declare const onboardingExample: {
|
|
|
773
996
|
defaultIndex?: undefined;
|
|
774
997
|
overflow?: undefined;
|
|
775
998
|
label?: undefined;
|
|
776
|
-
variant?: undefined;
|
|
777
999
|
actions?: undefined;
|
|
778
1000
|
padding?: undefined;
|
|
779
1001
|
backgroundGradient?: undefined;
|
|
@@ -815,6 +1037,15 @@ export declare const onboardingExample: {
|
|
|
815
1037
|
fill?: undefined;
|
|
816
1038
|
fillOpacity?: undefined;
|
|
817
1039
|
marginVertical?: undefined;
|
|
1040
|
+
variant?: undefined;
|
|
1041
|
+
autoplay?: undefined;
|
|
1042
|
+
initialValue?: undefined;
|
|
1043
|
+
duration?: undefined;
|
|
1044
|
+
easing?: undefined;
|
|
1045
|
+
thickness?: undefined;
|
|
1046
|
+
showLabel?: undefined;
|
|
1047
|
+
delay?: undefined;
|
|
1048
|
+
alignSelf?: undefined;
|
|
818
1049
|
controls?: undefined;
|
|
819
1050
|
muted?: undefined;
|
|
820
1051
|
contentFit?: undefined;
|
|
@@ -840,7 +1071,6 @@ export declare const onboardingExample: {
|
|
|
840
1071
|
defaultIndex?: undefined;
|
|
841
1072
|
overflow?: undefined;
|
|
842
1073
|
label?: undefined;
|
|
843
|
-
variant?: undefined;
|
|
844
1074
|
actions?: undefined;
|
|
845
1075
|
padding?: undefined;
|
|
846
1076
|
backgroundGradient?: undefined;
|
|
@@ -882,6 +1112,15 @@ export declare const onboardingExample: {
|
|
|
882
1112
|
color?: undefined;
|
|
883
1113
|
fill?: undefined;
|
|
884
1114
|
fillOpacity?: undefined;
|
|
1115
|
+
variant?: undefined;
|
|
1116
|
+
autoplay?: undefined;
|
|
1117
|
+
initialValue?: undefined;
|
|
1118
|
+
duration?: undefined;
|
|
1119
|
+
easing?: undefined;
|
|
1120
|
+
thickness?: undefined;
|
|
1121
|
+
showLabel?: undefined;
|
|
1122
|
+
delay?: undefined;
|
|
1123
|
+
alignSelf?: undefined;
|
|
885
1124
|
controls?: undefined;
|
|
886
1125
|
muted?: undefined;
|
|
887
1126
|
contentFit?: undefined;
|
|
@@ -907,7 +1146,6 @@ export declare const onboardingExample: {
|
|
|
907
1146
|
defaultIndex?: undefined;
|
|
908
1147
|
overflow?: undefined;
|
|
909
1148
|
label?: undefined;
|
|
910
|
-
variant?: undefined;
|
|
911
1149
|
actions?: undefined;
|
|
912
1150
|
padding?: undefined;
|
|
913
1151
|
backgroundGradient?: undefined;
|
|
@@ -948,6 +1186,15 @@ export declare const onboardingExample: {
|
|
|
948
1186
|
fill?: undefined;
|
|
949
1187
|
fillOpacity?: undefined;
|
|
950
1188
|
marginVertical?: undefined;
|
|
1189
|
+
variant?: undefined;
|
|
1190
|
+
autoplay?: undefined;
|
|
1191
|
+
initialValue?: undefined;
|
|
1192
|
+
duration?: undefined;
|
|
1193
|
+
easing?: undefined;
|
|
1194
|
+
thickness?: undefined;
|
|
1195
|
+
showLabel?: undefined;
|
|
1196
|
+
delay?: undefined;
|
|
1197
|
+
alignSelf?: undefined;
|
|
951
1198
|
controls?: undefined;
|
|
952
1199
|
muted?: undefined;
|
|
953
1200
|
contentFit?: undefined;
|
|
@@ -974,7 +1221,6 @@ export declare const onboardingExample: {
|
|
|
974
1221
|
defaultIndex?: undefined;
|
|
975
1222
|
overflow?: undefined;
|
|
976
1223
|
label?: undefined;
|
|
977
|
-
variant?: undefined;
|
|
978
1224
|
actions?: undefined;
|
|
979
1225
|
padding?: undefined;
|
|
980
1226
|
backgroundGradient?: undefined;
|
|
@@ -1016,6 +1262,15 @@ export declare const onboardingExample: {
|
|
|
1016
1262
|
fill?: undefined;
|
|
1017
1263
|
fillOpacity?: undefined;
|
|
1018
1264
|
marginVertical?: undefined;
|
|
1265
|
+
variant?: undefined;
|
|
1266
|
+
autoplay?: undefined;
|
|
1267
|
+
initialValue?: undefined;
|
|
1268
|
+
duration?: undefined;
|
|
1269
|
+
easing?: undefined;
|
|
1270
|
+
thickness?: undefined;
|
|
1271
|
+
showLabel?: undefined;
|
|
1272
|
+
delay?: undefined;
|
|
1273
|
+
alignSelf?: undefined;
|
|
1019
1274
|
controls?: undefined;
|
|
1020
1275
|
muted?: undefined;
|
|
1021
1276
|
contentFit?: undefined;
|
|
@@ -1041,7 +1296,6 @@ export declare const onboardingExample: {
|
|
|
1041
1296
|
defaultIndex?: undefined;
|
|
1042
1297
|
overflow?: undefined;
|
|
1043
1298
|
label?: undefined;
|
|
1044
|
-
variant?: undefined;
|
|
1045
1299
|
actions?: undefined;
|
|
1046
1300
|
padding?: undefined;
|
|
1047
1301
|
backgroundGradient?: undefined;
|
|
@@ -1083,6 +1337,15 @@ export declare const onboardingExample: {
|
|
|
1083
1337
|
fill?: undefined;
|
|
1084
1338
|
fillOpacity?: undefined;
|
|
1085
1339
|
marginVertical?: undefined;
|
|
1340
|
+
variant?: undefined;
|
|
1341
|
+
autoplay?: undefined;
|
|
1342
|
+
initialValue?: undefined;
|
|
1343
|
+
duration?: undefined;
|
|
1344
|
+
easing?: undefined;
|
|
1345
|
+
thickness?: undefined;
|
|
1346
|
+
showLabel?: undefined;
|
|
1347
|
+
delay?: undefined;
|
|
1348
|
+
alignSelf?: undefined;
|
|
1086
1349
|
controls?: undefined;
|
|
1087
1350
|
muted?: undefined;
|
|
1088
1351
|
contentFit?: undefined;
|
|
@@ -1108,7 +1371,6 @@ export declare const onboardingExample: {
|
|
|
1108
1371
|
defaultIndex?: undefined;
|
|
1109
1372
|
overflow?: undefined;
|
|
1110
1373
|
label?: undefined;
|
|
1111
|
-
variant?: undefined;
|
|
1112
1374
|
actions?: undefined;
|
|
1113
1375
|
padding?: undefined;
|
|
1114
1376
|
backgroundGradient?: undefined;
|
|
@@ -1153,6 +1415,15 @@ export declare const onboardingExample: {
|
|
|
1153
1415
|
color?: undefined;
|
|
1154
1416
|
fill?: undefined;
|
|
1155
1417
|
fillOpacity?: undefined;
|
|
1418
|
+
variant?: undefined;
|
|
1419
|
+
autoplay?: undefined;
|
|
1420
|
+
initialValue?: undefined;
|
|
1421
|
+
duration?: undefined;
|
|
1422
|
+
easing?: undefined;
|
|
1423
|
+
thickness?: undefined;
|
|
1424
|
+
showLabel?: undefined;
|
|
1425
|
+
delay?: undefined;
|
|
1426
|
+
alignSelf?: undefined;
|
|
1156
1427
|
controls?: undefined;
|
|
1157
1428
|
muted?: undefined;
|
|
1158
1429
|
contentFit?: undefined;
|
|
@@ -1178,7 +1449,6 @@ export declare const onboardingExample: {
|
|
|
1178
1449
|
defaultIndex?: undefined;
|
|
1179
1450
|
overflow?: undefined;
|
|
1180
1451
|
label?: undefined;
|
|
1181
|
-
variant?: undefined;
|
|
1182
1452
|
actions?: undefined;
|
|
1183
1453
|
padding?: undefined;
|
|
1184
1454
|
backgroundGradient?: undefined;
|
|
@@ -1220,6 +1490,15 @@ export declare const onboardingExample: {
|
|
|
1220
1490
|
color?: undefined;
|
|
1221
1491
|
fill?: undefined;
|
|
1222
1492
|
fillOpacity?: undefined;
|
|
1493
|
+
variant?: undefined;
|
|
1494
|
+
autoplay?: undefined;
|
|
1495
|
+
initialValue?: undefined;
|
|
1496
|
+
duration?: undefined;
|
|
1497
|
+
easing?: undefined;
|
|
1498
|
+
thickness?: undefined;
|
|
1499
|
+
showLabel?: undefined;
|
|
1500
|
+
delay?: undefined;
|
|
1501
|
+
alignSelf?: undefined;
|
|
1223
1502
|
controls?: undefined;
|
|
1224
1503
|
muted?: undefined;
|
|
1225
1504
|
contentFit?: undefined;
|
|
@@ -1245,7 +1524,6 @@ export declare const onboardingExample: {
|
|
|
1245
1524
|
defaultIndex?: undefined;
|
|
1246
1525
|
overflow?: undefined;
|
|
1247
1526
|
label?: undefined;
|
|
1248
|
-
variant?: undefined;
|
|
1249
1527
|
actions?: undefined;
|
|
1250
1528
|
padding?: undefined;
|
|
1251
1529
|
backgroundGradient?: undefined;
|
|
@@ -1291,6 +1569,15 @@ export declare const onboardingExample: {
|
|
|
1291
1569
|
color?: undefined;
|
|
1292
1570
|
fill?: undefined;
|
|
1293
1571
|
fillOpacity?: undefined;
|
|
1572
|
+
variant?: undefined;
|
|
1573
|
+
autoplay?: undefined;
|
|
1574
|
+
initialValue?: undefined;
|
|
1575
|
+
duration?: undefined;
|
|
1576
|
+
easing?: undefined;
|
|
1577
|
+
thickness?: undefined;
|
|
1578
|
+
showLabel?: undefined;
|
|
1579
|
+
delay?: undefined;
|
|
1580
|
+
alignSelf?: undefined;
|
|
1294
1581
|
controls?: undefined;
|
|
1295
1582
|
muted?: undefined;
|
|
1296
1583
|
contentFit?: undefined;
|
|
@@ -1317,7 +1604,6 @@ export declare const onboardingExample: {
|
|
|
1317
1604
|
defaultIndex?: undefined;
|
|
1318
1605
|
overflow?: undefined;
|
|
1319
1606
|
label?: undefined;
|
|
1320
|
-
variant?: undefined;
|
|
1321
1607
|
actions?: undefined;
|
|
1322
1608
|
padding?: undefined;
|
|
1323
1609
|
backgroundGradient?: undefined;
|
|
@@ -1361,6 +1647,15 @@ export declare const onboardingExample: {
|
|
|
1361
1647
|
color?: undefined;
|
|
1362
1648
|
fill?: undefined;
|
|
1363
1649
|
fillOpacity?: undefined;
|
|
1650
|
+
variant?: undefined;
|
|
1651
|
+
autoplay?: undefined;
|
|
1652
|
+
initialValue?: undefined;
|
|
1653
|
+
duration?: undefined;
|
|
1654
|
+
easing?: undefined;
|
|
1655
|
+
thickness?: undefined;
|
|
1656
|
+
showLabel?: undefined;
|
|
1657
|
+
delay?: undefined;
|
|
1658
|
+
alignSelf?: undefined;
|
|
1364
1659
|
controls?: undefined;
|
|
1365
1660
|
muted?: undefined;
|
|
1366
1661
|
contentFit?: undefined;
|
|
@@ -1386,7 +1681,6 @@ export declare const onboardingExample: {
|
|
|
1386
1681
|
defaultIndex?: undefined;
|
|
1387
1682
|
overflow?: undefined;
|
|
1388
1683
|
label?: undefined;
|
|
1389
|
-
variant?: undefined;
|
|
1390
1684
|
actions?: undefined;
|
|
1391
1685
|
padding?: undefined;
|
|
1392
1686
|
backgroundGradient?: undefined;
|
|
@@ -1428,6 +1722,15 @@ export declare const onboardingExample: {
|
|
|
1428
1722
|
color?: undefined;
|
|
1429
1723
|
fill?: undefined;
|
|
1430
1724
|
fillOpacity?: undefined;
|
|
1725
|
+
variant?: undefined;
|
|
1726
|
+
autoplay?: undefined;
|
|
1727
|
+
initialValue?: undefined;
|
|
1728
|
+
duration?: undefined;
|
|
1729
|
+
easing?: undefined;
|
|
1730
|
+
thickness?: undefined;
|
|
1731
|
+
showLabel?: undefined;
|
|
1732
|
+
delay?: undefined;
|
|
1733
|
+
alignSelf?: undefined;
|
|
1431
1734
|
controls?: undefined;
|
|
1432
1735
|
muted?: undefined;
|
|
1433
1736
|
contentFit?: undefined;
|
|
@@ -1453,7 +1756,6 @@ export declare const onboardingExample: {
|
|
|
1453
1756
|
defaultIndex?: undefined;
|
|
1454
1757
|
overflow?: undefined;
|
|
1455
1758
|
label?: undefined;
|
|
1456
|
-
variant?: undefined;
|
|
1457
1759
|
actions?: undefined;
|
|
1458
1760
|
padding?: undefined;
|
|
1459
1761
|
backgroundGradient?: undefined;
|
|
@@ -1498,6 +1800,15 @@ export declare const onboardingExample: {
|
|
|
1498
1800
|
color?: undefined;
|
|
1499
1801
|
fill?: undefined;
|
|
1500
1802
|
fillOpacity?: undefined;
|
|
1803
|
+
variant?: undefined;
|
|
1804
|
+
autoplay?: undefined;
|
|
1805
|
+
initialValue?: undefined;
|
|
1806
|
+
duration?: undefined;
|
|
1807
|
+
easing?: undefined;
|
|
1808
|
+
thickness?: undefined;
|
|
1809
|
+
showLabel?: undefined;
|
|
1810
|
+
delay?: undefined;
|
|
1811
|
+
alignSelf?: undefined;
|
|
1501
1812
|
controls?: undefined;
|
|
1502
1813
|
muted?: undefined;
|
|
1503
1814
|
contentFit?: undefined;
|
|
@@ -1525,7 +1836,6 @@ export declare const onboardingExample: {
|
|
|
1525
1836
|
defaultIndex?: undefined;
|
|
1526
1837
|
overflow?: undefined;
|
|
1527
1838
|
label?: undefined;
|
|
1528
|
-
variant?: undefined;
|
|
1529
1839
|
actions?: undefined;
|
|
1530
1840
|
padding?: undefined;
|
|
1531
1841
|
backgroundGradient?: undefined;
|
|
@@ -1566,6 +1876,15 @@ export declare const onboardingExample: {
|
|
|
1566
1876
|
color?: undefined;
|
|
1567
1877
|
fill?: undefined;
|
|
1568
1878
|
fillOpacity?: undefined;
|
|
1879
|
+
variant?: undefined;
|
|
1880
|
+
autoplay?: undefined;
|
|
1881
|
+
initialValue?: undefined;
|
|
1882
|
+
duration?: undefined;
|
|
1883
|
+
easing?: undefined;
|
|
1884
|
+
thickness?: undefined;
|
|
1885
|
+
showLabel?: undefined;
|
|
1886
|
+
delay?: undefined;
|
|
1887
|
+
alignSelf?: undefined;
|
|
1569
1888
|
controls?: undefined;
|
|
1570
1889
|
muted?: undefined;
|
|
1571
1890
|
contentFit?: undefined;
|
|
@@ -1592,7 +1911,6 @@ export declare const onboardingExample: {
|
|
|
1592
1911
|
range?: undefined;
|
|
1593
1912
|
overflow?: undefined;
|
|
1594
1913
|
label?: undefined;
|
|
1595
|
-
variant?: undefined;
|
|
1596
1914
|
actions?: undefined;
|
|
1597
1915
|
padding?: undefined;
|
|
1598
1916
|
backgroundGradient?: undefined;
|
|
@@ -1638,6 +1956,15 @@ export declare const onboardingExample: {
|
|
|
1638
1956
|
color?: undefined;
|
|
1639
1957
|
fill?: undefined;
|
|
1640
1958
|
fillOpacity?: undefined;
|
|
1959
|
+
variant?: undefined;
|
|
1960
|
+
autoplay?: undefined;
|
|
1961
|
+
initialValue?: undefined;
|
|
1962
|
+
duration?: undefined;
|
|
1963
|
+
easing?: undefined;
|
|
1964
|
+
thickness?: undefined;
|
|
1965
|
+
showLabel?: undefined;
|
|
1966
|
+
delay?: undefined;
|
|
1967
|
+
alignSelf?: undefined;
|
|
1641
1968
|
controls?: undefined;
|
|
1642
1969
|
muted?: undefined;
|
|
1643
1970
|
contentFit?: undefined;
|
|
@@ -1667,7 +1994,6 @@ export declare const onboardingExample: {
|
|
|
1667
1994
|
defaultIndex?: undefined;
|
|
1668
1995
|
overflow?: undefined;
|
|
1669
1996
|
label?: undefined;
|
|
1670
|
-
variant?: undefined;
|
|
1671
1997
|
actions?: undefined;
|
|
1672
1998
|
padding?: undefined;
|
|
1673
1999
|
backgroundGradient?: undefined;
|
|
@@ -1719,6 +2045,15 @@ export declare const onboardingExample: {
|
|
|
1719
2045
|
color?: undefined;
|
|
1720
2046
|
fill?: undefined;
|
|
1721
2047
|
fillOpacity?: undefined;
|
|
2048
|
+
variant?: undefined;
|
|
2049
|
+
autoplay?: undefined;
|
|
2050
|
+
initialValue?: undefined;
|
|
2051
|
+
duration?: undefined;
|
|
2052
|
+
easing?: undefined;
|
|
2053
|
+
thickness?: undefined;
|
|
2054
|
+
showLabel?: undefined;
|
|
2055
|
+
delay?: undefined;
|
|
2056
|
+
alignSelf?: undefined;
|
|
1722
2057
|
controls?: undefined;
|
|
1723
2058
|
muted?: undefined;
|
|
1724
2059
|
contentFit?: undefined;
|
|
@@ -1748,7 +2083,6 @@ export declare const onboardingExample: {
|
|
|
1748
2083
|
showDots?: undefined;
|
|
1749
2084
|
defaultIndex?: undefined;
|
|
1750
2085
|
label?: undefined;
|
|
1751
|
-
variant?: undefined;
|
|
1752
2086
|
actions?: undefined;
|
|
1753
2087
|
padding?: undefined;
|
|
1754
2088
|
backgroundGradient?: undefined;
|
|
@@ -1827,6 +2161,14 @@ export declare const onboardingExample: {
|
|
|
1827
2161
|
color?: undefined;
|
|
1828
2162
|
fill?: undefined;
|
|
1829
2163
|
fillOpacity?: undefined;
|
|
2164
|
+
autoplay?: undefined;
|
|
2165
|
+
initialValue?: undefined;
|
|
2166
|
+
duration?: undefined;
|
|
2167
|
+
easing?: undefined;
|
|
2168
|
+
thickness?: undefined;
|
|
2169
|
+
showLabel?: undefined;
|
|
2170
|
+
delay?: undefined;
|
|
2171
|
+
alignSelf?: undefined;
|
|
1830
2172
|
controls?: undefined;
|
|
1831
2173
|
muted?: undefined;
|
|
1832
2174
|
contentFit?: undefined;
|
|
@@ -1902,6 +2244,15 @@ export declare const onboardingExample: {
|
|
|
1902
2244
|
color?: undefined;
|
|
1903
2245
|
fill?: undefined;
|
|
1904
2246
|
fillOpacity?: undefined;
|
|
2247
|
+
variant?: undefined;
|
|
2248
|
+
autoplay?: undefined;
|
|
2249
|
+
initialValue?: undefined;
|
|
2250
|
+
duration?: undefined;
|
|
2251
|
+
easing?: undefined;
|
|
2252
|
+
thickness?: undefined;
|
|
2253
|
+
showLabel?: undefined;
|
|
2254
|
+
delay?: undefined;
|
|
2255
|
+
alignSelf?: undefined;
|
|
1905
2256
|
controls?: undefined;
|
|
1906
2257
|
muted?: undefined;
|
|
1907
2258
|
contentFit?: undefined;
|
|
@@ -1930,7 +2281,6 @@ export declare const onboardingExample: {
|
|
|
1930
2281
|
showDots?: undefined;
|
|
1931
2282
|
defaultIndex?: undefined;
|
|
1932
2283
|
label?: undefined;
|
|
1933
|
-
variant?: undefined;
|
|
1934
2284
|
actions?: undefined;
|
|
1935
2285
|
backgroundColor?: undefined;
|
|
1936
2286
|
shadowColor?: undefined;
|
|
@@ -1996,6 +2346,14 @@ export declare const onboardingExample: {
|
|
|
1996
2346
|
color?: undefined;
|
|
1997
2347
|
fill?: undefined;
|
|
1998
2348
|
fillOpacity?: undefined;
|
|
2349
|
+
autoplay?: undefined;
|
|
2350
|
+
initialValue?: undefined;
|
|
2351
|
+
duration?: undefined;
|
|
2352
|
+
easing?: undefined;
|
|
2353
|
+
thickness?: undefined;
|
|
2354
|
+
showLabel?: undefined;
|
|
2355
|
+
delay?: undefined;
|
|
2356
|
+
alignSelf?: undefined;
|
|
1999
2357
|
controls?: undefined;
|
|
2000
2358
|
muted?: undefined;
|
|
2001
2359
|
contentFit?: undefined;
|
|
@@ -2064,6 +2422,15 @@ export declare const onboardingExample: {
|
|
|
2064
2422
|
color?: undefined;
|
|
2065
2423
|
fill?: undefined;
|
|
2066
2424
|
fillOpacity?: undefined;
|
|
2425
|
+
variant?: undefined;
|
|
2426
|
+
autoplay?: undefined;
|
|
2427
|
+
initialValue?: undefined;
|
|
2428
|
+
duration?: undefined;
|
|
2429
|
+
easing?: undefined;
|
|
2430
|
+
thickness?: undefined;
|
|
2431
|
+
showLabel?: undefined;
|
|
2432
|
+
delay?: undefined;
|
|
2433
|
+
alignSelf?: undefined;
|
|
2067
2434
|
controls?: undefined;
|
|
2068
2435
|
muted?: undefined;
|
|
2069
2436
|
contentFit?: undefined;
|
|
@@ -2090,7 +2457,6 @@ export declare const onboardingExample: {
|
|
|
2090
2457
|
defaultIndex?: undefined;
|
|
2091
2458
|
overflow?: undefined;
|
|
2092
2459
|
label?: undefined;
|
|
2093
|
-
variant?: undefined;
|
|
2094
2460
|
actions?: undefined;
|
|
2095
2461
|
padding?: undefined;
|
|
2096
2462
|
backgroundGradient?: undefined;
|
|
@@ -2138,6 +2504,14 @@ export declare const onboardingExample: {
|
|
|
2138
2504
|
color?: undefined;
|
|
2139
2505
|
fill?: undefined;
|
|
2140
2506
|
fillOpacity?: undefined;
|
|
2507
|
+
autoplay?: undefined;
|
|
2508
|
+
initialValue?: undefined;
|
|
2509
|
+
duration?: undefined;
|
|
2510
|
+
easing?: undefined;
|
|
2511
|
+
thickness?: undefined;
|
|
2512
|
+
showLabel?: undefined;
|
|
2513
|
+
delay?: undefined;
|
|
2514
|
+
alignSelf?: undefined;
|
|
2141
2515
|
controls?: undefined;
|
|
2142
2516
|
muted?: undefined;
|
|
2143
2517
|
contentFit?: undefined;
|
|
@@ -2205,6 +2579,14 @@ export declare const onboardingExample: {
|
|
|
2205
2579
|
color?: undefined;
|
|
2206
2580
|
fill?: undefined;
|
|
2207
2581
|
fillOpacity?: undefined;
|
|
2582
|
+
autoplay?: undefined;
|
|
2583
|
+
initialValue?: undefined;
|
|
2584
|
+
duration?: undefined;
|
|
2585
|
+
easing?: undefined;
|
|
2586
|
+
thickness?: undefined;
|
|
2587
|
+
showLabel?: undefined;
|
|
2588
|
+
delay?: undefined;
|
|
2589
|
+
alignSelf?: undefined;
|
|
2208
2590
|
controls?: undefined;
|
|
2209
2591
|
muted?: undefined;
|
|
2210
2592
|
contentFit?: undefined;
|
|
@@ -2282,6 +2664,14 @@ export declare const onboardingExample: {
|
|
|
2282
2664
|
color?: undefined;
|
|
2283
2665
|
fill?: undefined;
|
|
2284
2666
|
fillOpacity?: undefined;
|
|
2667
|
+
autoplay?: undefined;
|
|
2668
|
+
initialValue?: undefined;
|
|
2669
|
+
duration?: undefined;
|
|
2670
|
+
easing?: undefined;
|
|
2671
|
+
thickness?: undefined;
|
|
2672
|
+
showLabel?: undefined;
|
|
2673
|
+
delay?: undefined;
|
|
2674
|
+
alignSelf?: undefined;
|
|
2285
2675
|
controls?: undefined;
|
|
2286
2676
|
muted?: undefined;
|
|
2287
2677
|
contentFit?: undefined;
|
|
@@ -2352,6 +2742,14 @@ export declare const onboardingExample: {
|
|
|
2352
2742
|
color?: undefined;
|
|
2353
2743
|
fill?: undefined;
|
|
2354
2744
|
fillOpacity?: undefined;
|
|
2745
|
+
autoplay?: undefined;
|
|
2746
|
+
initialValue?: undefined;
|
|
2747
|
+
duration?: undefined;
|
|
2748
|
+
easing?: undefined;
|
|
2749
|
+
thickness?: undefined;
|
|
2750
|
+
showLabel?: undefined;
|
|
2751
|
+
delay?: undefined;
|
|
2752
|
+
alignSelf?: undefined;
|
|
2355
2753
|
controls?: undefined;
|
|
2356
2754
|
muted?: undefined;
|
|
2357
2755
|
contentFit?: undefined;
|
|
@@ -2444,6 +2842,14 @@ export declare const onboardingExample: {
|
|
|
2444
2842
|
color?: undefined;
|
|
2445
2843
|
fill?: undefined;
|
|
2446
2844
|
fillOpacity?: undefined;
|
|
2845
|
+
autoplay?: undefined;
|
|
2846
|
+
initialValue?: undefined;
|
|
2847
|
+
duration?: undefined;
|
|
2848
|
+
easing?: undefined;
|
|
2849
|
+
thickness?: undefined;
|
|
2850
|
+
showLabel?: undefined;
|
|
2851
|
+
delay?: undefined;
|
|
2852
|
+
alignSelf?: undefined;
|
|
2447
2853
|
controls?: undefined;
|
|
2448
2854
|
muted?: undefined;
|
|
2449
2855
|
contentFit?: undefined;
|