@rocapine/react-native-onboarding 1.26.0 → 1.27.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/evaluateCondition.d.ts.map +1 -1
- package/dist/evaluateCondition.js +44 -1
- package/dist/evaluateCondition.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/onboarding-example.d.ts +282 -111
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +38 -0
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/Carousel/types.d.ts +5 -1
- package/dist/steps/Carousel/types.d.ts.map +1 -1
- package/dist/steps/Commitment/types.d.ts +5 -1
- package/dist/steps/Commitment/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +5 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts +124 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.js +96 -0
- package/dist/steps/ComposableScreen/elements/WheelPickerElement.js.map +1 -0
- package/dist/steps/ComposableScreen/types.d.ts +14 -1
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +13 -1
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/dist/steps/Loader/types.d.ts +5 -1
- package/dist/steps/Loader/types.d.ts.map +1 -1
- package/dist/steps/MediaContent/types.d.ts +5 -1
- package/dist/steps/MediaContent/types.d.ts.map +1 -1
- package/dist/steps/Picker/types.d.ts +5 -1
- package/dist/steps/Picker/types.d.ts.map +1 -1
- package/dist/steps/Question/types.d.ts +5 -1
- package/dist/steps/Question/types.d.ts.map +1 -1
- package/dist/steps/Ratings/types.d.ts +5 -1
- package/dist/steps/Ratings/types.d.ts.map +1 -1
- package/dist/steps/common.types.d.ts +30 -4
- package/dist/steps/common.types.d.ts.map +1 -1
- package/dist/steps/common.types.js +33 -3
- package/dist/steps/common.types.js.map +1 -1
- package/package.json +2 -2
- package/src/__tests__/evaluateCondition.test.ts +35 -0
- package/src/evaluateCondition.ts +41 -1
- package/src/index.ts +8 -0
- package/src/onboarding-example.ts +38 -0
- package/src/steps/ComposableScreen/elements/WheelPickerElement.ts +115 -0
- package/src/steps/ComposableScreen/types.ts +17 -0
- package/src/steps/common.types.ts +38 -5
|
@@ -180,17 +180,17 @@ export declare const onboardingExample: {
|
|
|
180
180
|
muted?: undefined;
|
|
181
181
|
contentFit?: undefined;
|
|
182
182
|
keyboardVerticalOffset?: undefined;
|
|
183
|
-
horizontal?: undefined;
|
|
184
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
185
|
-
contentContainerPadding?: undefined;
|
|
186
183
|
content?: undefined;
|
|
187
184
|
mode?: undefined;
|
|
188
185
|
fontSize?: undefined;
|
|
189
|
-
fontWeight?: undefined;
|
|
190
186
|
textAlign?: undefined;
|
|
187
|
+
opacity?: undefined;
|
|
188
|
+
horizontal?: undefined;
|
|
189
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
190
|
+
contentContainerPadding?: undefined;
|
|
191
|
+
fontWeight?: undefined;
|
|
191
192
|
fontFamily?: undefined;
|
|
192
193
|
fontStyle?: undefined;
|
|
193
|
-
opacity?: undefined;
|
|
194
194
|
lineHeight?: undefined;
|
|
195
195
|
variableName?: undefined;
|
|
196
196
|
defaultValue?: undefined;
|
|
@@ -199,6 +199,7 @@ export declare const onboardingExample: {
|
|
|
199
199
|
defaultValues?: undefined;
|
|
200
200
|
display?: undefined;
|
|
201
201
|
maximumDate?: undefined;
|
|
202
|
+
range?: undefined;
|
|
202
203
|
carouselType?: undefined;
|
|
203
204
|
showDots?: undefined;
|
|
204
205
|
defaultIndex?: undefined;
|
|
@@ -245,17 +246,17 @@ export declare const onboardingExample: {
|
|
|
245
246
|
muted?: undefined;
|
|
246
247
|
contentFit?: undefined;
|
|
247
248
|
keyboardVerticalOffset?: undefined;
|
|
248
|
-
horizontal?: undefined;
|
|
249
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
250
|
-
contentContainerPadding?: undefined;
|
|
251
249
|
content?: undefined;
|
|
252
250
|
mode?: undefined;
|
|
253
251
|
fontSize?: undefined;
|
|
254
|
-
fontWeight?: undefined;
|
|
255
252
|
textAlign?: undefined;
|
|
253
|
+
opacity?: undefined;
|
|
254
|
+
horizontal?: undefined;
|
|
255
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
256
|
+
contentContainerPadding?: undefined;
|
|
257
|
+
fontWeight?: undefined;
|
|
256
258
|
fontFamily?: undefined;
|
|
257
259
|
fontStyle?: undefined;
|
|
258
|
-
opacity?: undefined;
|
|
259
260
|
lineHeight?: undefined;
|
|
260
261
|
variableName?: undefined;
|
|
261
262
|
defaultValue?: undefined;
|
|
@@ -264,6 +265,7 @@ export declare const onboardingExample: {
|
|
|
264
265
|
defaultValues?: undefined;
|
|
265
266
|
display?: undefined;
|
|
266
267
|
maximumDate?: undefined;
|
|
268
|
+
range?: undefined;
|
|
267
269
|
carouselType?: undefined;
|
|
268
270
|
showDots?: undefined;
|
|
269
271
|
defaultIndex?: undefined;
|
|
@@ -310,17 +312,17 @@ export declare const onboardingExample: {
|
|
|
310
312
|
muted?: undefined;
|
|
311
313
|
contentFit?: undefined;
|
|
312
314
|
keyboardVerticalOffset?: undefined;
|
|
313
|
-
horizontal?: undefined;
|
|
314
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
315
|
-
contentContainerPadding?: undefined;
|
|
316
315
|
content?: undefined;
|
|
317
316
|
mode?: undefined;
|
|
318
317
|
fontSize?: undefined;
|
|
319
|
-
fontWeight?: undefined;
|
|
320
318
|
textAlign?: undefined;
|
|
319
|
+
opacity?: undefined;
|
|
320
|
+
horizontal?: undefined;
|
|
321
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
322
|
+
contentContainerPadding?: undefined;
|
|
323
|
+
fontWeight?: undefined;
|
|
321
324
|
fontFamily?: undefined;
|
|
322
325
|
fontStyle?: undefined;
|
|
323
|
-
opacity?: undefined;
|
|
324
326
|
lineHeight?: undefined;
|
|
325
327
|
variableName?: undefined;
|
|
326
328
|
defaultValue?: undefined;
|
|
@@ -329,6 +331,7 @@ export declare const onboardingExample: {
|
|
|
329
331
|
defaultValues?: undefined;
|
|
330
332
|
display?: undefined;
|
|
331
333
|
maximumDate?: undefined;
|
|
334
|
+
range?: undefined;
|
|
332
335
|
carouselType?: undefined;
|
|
333
336
|
showDots?: undefined;
|
|
334
337
|
defaultIndex?: undefined;
|
|
@@ -375,17 +378,17 @@ export declare const onboardingExample: {
|
|
|
375
378
|
muted?: undefined;
|
|
376
379
|
contentFit?: undefined;
|
|
377
380
|
keyboardVerticalOffset?: undefined;
|
|
378
|
-
horizontal?: undefined;
|
|
379
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
380
|
-
contentContainerPadding?: undefined;
|
|
381
381
|
content?: undefined;
|
|
382
382
|
mode?: undefined;
|
|
383
383
|
fontSize?: undefined;
|
|
384
|
-
fontWeight?: undefined;
|
|
385
384
|
textAlign?: undefined;
|
|
385
|
+
opacity?: undefined;
|
|
386
|
+
horizontal?: undefined;
|
|
387
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
388
|
+
contentContainerPadding?: undefined;
|
|
389
|
+
fontWeight?: undefined;
|
|
386
390
|
fontFamily?: undefined;
|
|
387
391
|
fontStyle?: undefined;
|
|
388
|
-
opacity?: undefined;
|
|
389
392
|
lineHeight?: undefined;
|
|
390
393
|
variableName?: undefined;
|
|
391
394
|
defaultValue?: undefined;
|
|
@@ -394,6 +397,7 @@ export declare const onboardingExample: {
|
|
|
394
397
|
defaultValues?: undefined;
|
|
395
398
|
display?: undefined;
|
|
396
399
|
maximumDate?: undefined;
|
|
400
|
+
range?: undefined;
|
|
397
401
|
carouselType?: undefined;
|
|
398
402
|
showDots?: undefined;
|
|
399
403
|
defaultIndex?: undefined;
|
|
@@ -440,17 +444,17 @@ export declare const onboardingExample: {
|
|
|
440
444
|
fillOpacity?: undefined;
|
|
441
445
|
marginVertical?: undefined;
|
|
442
446
|
keyboardVerticalOffset?: undefined;
|
|
443
|
-
horizontal?: undefined;
|
|
444
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
445
|
-
contentContainerPadding?: undefined;
|
|
446
447
|
content?: undefined;
|
|
447
448
|
mode?: undefined;
|
|
448
449
|
fontSize?: undefined;
|
|
449
|
-
fontWeight?: undefined;
|
|
450
450
|
textAlign?: undefined;
|
|
451
|
+
opacity?: undefined;
|
|
452
|
+
horizontal?: undefined;
|
|
453
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
454
|
+
contentContainerPadding?: undefined;
|
|
455
|
+
fontWeight?: undefined;
|
|
451
456
|
fontFamily?: undefined;
|
|
452
457
|
fontStyle?: undefined;
|
|
453
|
-
opacity?: undefined;
|
|
454
458
|
lineHeight?: undefined;
|
|
455
459
|
variableName?: undefined;
|
|
456
460
|
defaultValue?: undefined;
|
|
@@ -459,6 +463,7 @@ export declare const onboardingExample: {
|
|
|
459
463
|
defaultValues?: undefined;
|
|
460
464
|
display?: undefined;
|
|
461
465
|
maximumDate?: undefined;
|
|
466
|
+
range?: undefined;
|
|
462
467
|
carouselType?: undefined;
|
|
463
468
|
showDots?: undefined;
|
|
464
469
|
defaultIndex?: undefined;
|
|
@@ -505,17 +510,17 @@ export declare const onboardingExample: {
|
|
|
505
510
|
controls?: undefined;
|
|
506
511
|
muted?: undefined;
|
|
507
512
|
contentFit?: undefined;
|
|
508
|
-
horizontal?: undefined;
|
|
509
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
510
|
-
contentContainerPadding?: undefined;
|
|
511
513
|
content?: undefined;
|
|
512
514
|
mode?: undefined;
|
|
513
515
|
fontSize?: undefined;
|
|
514
|
-
fontWeight?: undefined;
|
|
515
516
|
textAlign?: undefined;
|
|
517
|
+
opacity?: undefined;
|
|
518
|
+
horizontal?: undefined;
|
|
519
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
520
|
+
contentContainerPadding?: undefined;
|
|
521
|
+
fontWeight?: undefined;
|
|
516
522
|
fontFamily?: undefined;
|
|
517
523
|
fontStyle?: undefined;
|
|
518
|
-
opacity?: undefined;
|
|
519
524
|
lineHeight?: undefined;
|
|
520
525
|
variableName?: undefined;
|
|
521
526
|
defaultValue?: undefined;
|
|
@@ -524,6 +529,7 @@ export declare const onboardingExample: {
|
|
|
524
529
|
defaultValues?: undefined;
|
|
525
530
|
display?: undefined;
|
|
526
531
|
maximumDate?: undefined;
|
|
532
|
+
range?: undefined;
|
|
527
533
|
carouselType?: undefined;
|
|
528
534
|
showDots?: undefined;
|
|
529
535
|
defaultIndex?: undefined;
|
|
@@ -557,6 +563,76 @@ export declare const onboardingExample: {
|
|
|
557
563
|
};
|
|
558
564
|
}[];
|
|
559
565
|
renderWhen?: undefined;
|
|
566
|
+
} | {
|
|
567
|
+
id: string;
|
|
568
|
+
type: string;
|
|
569
|
+
renderWhen: {
|
|
570
|
+
variable: string;
|
|
571
|
+
operator: string;
|
|
572
|
+
value?: undefined;
|
|
573
|
+
};
|
|
574
|
+
props: {
|
|
575
|
+
content: string;
|
|
576
|
+
mode: string;
|
|
577
|
+
fontSize: number;
|
|
578
|
+
textAlign: string;
|
|
579
|
+
opacity: number;
|
|
580
|
+
marginVertical: number;
|
|
581
|
+
source?: undefined;
|
|
582
|
+
height?: undefined;
|
|
583
|
+
autoPlay?: undefined;
|
|
584
|
+
loop?: undefined;
|
|
585
|
+
url?: undefined;
|
|
586
|
+
width?: undefined;
|
|
587
|
+
aspectRatio?: undefined;
|
|
588
|
+
fit?: undefined;
|
|
589
|
+
resizeMode?: undefined;
|
|
590
|
+
borderRadius?: undefined;
|
|
591
|
+
name?: undefined;
|
|
592
|
+
size?: undefined;
|
|
593
|
+
color?: undefined;
|
|
594
|
+
fill?: undefined;
|
|
595
|
+
fillOpacity?: undefined;
|
|
596
|
+
controls?: undefined;
|
|
597
|
+
muted?: undefined;
|
|
598
|
+
contentFit?: undefined;
|
|
599
|
+
keyboardVerticalOffset?: undefined;
|
|
600
|
+
horizontal?: undefined;
|
|
601
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
602
|
+
contentContainerPadding?: undefined;
|
|
603
|
+
fontWeight?: undefined;
|
|
604
|
+
fontFamily?: undefined;
|
|
605
|
+
fontStyle?: undefined;
|
|
606
|
+
lineHeight?: undefined;
|
|
607
|
+
variableName?: undefined;
|
|
608
|
+
defaultValue?: undefined;
|
|
609
|
+
gap?: undefined;
|
|
610
|
+
items?: undefined;
|
|
611
|
+
defaultValues?: undefined;
|
|
612
|
+
display?: undefined;
|
|
613
|
+
maximumDate?: undefined;
|
|
614
|
+
range?: undefined;
|
|
615
|
+
carouselType?: undefined;
|
|
616
|
+
showDots?: undefined;
|
|
617
|
+
defaultIndex?: undefined;
|
|
618
|
+
overflow?: undefined;
|
|
619
|
+
label?: undefined;
|
|
620
|
+
variant?: undefined;
|
|
621
|
+
actions?: undefined;
|
|
622
|
+
padding?: undefined;
|
|
623
|
+
backgroundGradient?: undefined;
|
|
624
|
+
backgroundColor?: undefined;
|
|
625
|
+
shadowColor?: undefined;
|
|
626
|
+
shadowOffset?: undefined;
|
|
627
|
+
shadowOpacity?: undefined;
|
|
628
|
+
shadowRadius?: undefined;
|
|
629
|
+
elevation?: undefined;
|
|
630
|
+
transitionDurationMs?: undefined;
|
|
631
|
+
pressedStyle?: undefined;
|
|
632
|
+
disabledWhen?: undefined;
|
|
633
|
+
disabledStyle?: undefined;
|
|
634
|
+
};
|
|
635
|
+
children?: undefined;
|
|
560
636
|
} | {
|
|
561
637
|
id: string;
|
|
562
638
|
type: string;
|
|
@@ -587,11 +663,11 @@ export declare const onboardingExample: {
|
|
|
587
663
|
content?: undefined;
|
|
588
664
|
mode?: undefined;
|
|
589
665
|
fontSize?: undefined;
|
|
590
|
-
fontWeight?: undefined;
|
|
591
666
|
textAlign?: undefined;
|
|
667
|
+
opacity?: undefined;
|
|
668
|
+
fontWeight?: undefined;
|
|
592
669
|
fontFamily?: undefined;
|
|
593
670
|
fontStyle?: undefined;
|
|
594
|
-
opacity?: undefined;
|
|
595
671
|
lineHeight?: undefined;
|
|
596
672
|
variableName?: undefined;
|
|
597
673
|
defaultValue?: undefined;
|
|
@@ -600,6 +676,7 @@ export declare const onboardingExample: {
|
|
|
600
676
|
defaultValues?: undefined;
|
|
601
677
|
display?: undefined;
|
|
602
678
|
maximumDate?: undefined;
|
|
679
|
+
range?: undefined;
|
|
603
680
|
carouselType?: undefined;
|
|
604
681
|
showDots?: undefined;
|
|
605
682
|
defaultIndex?: undefined;
|
|
@@ -667,12 +744,12 @@ export declare const onboardingExample: {
|
|
|
667
744
|
muted?: undefined;
|
|
668
745
|
contentFit?: undefined;
|
|
669
746
|
keyboardVerticalOffset?: undefined;
|
|
747
|
+
opacity?: undefined;
|
|
670
748
|
horizontal?: undefined;
|
|
671
749
|
showsHorizontalScrollIndicator?: undefined;
|
|
672
750
|
contentContainerPadding?: undefined;
|
|
673
751
|
fontFamily?: undefined;
|
|
674
752
|
fontStyle?: undefined;
|
|
675
|
-
opacity?: undefined;
|
|
676
753
|
lineHeight?: undefined;
|
|
677
754
|
variableName?: undefined;
|
|
678
755
|
defaultValue?: undefined;
|
|
@@ -681,6 +758,7 @@ export declare const onboardingExample: {
|
|
|
681
758
|
defaultValues?: undefined;
|
|
682
759
|
display?: undefined;
|
|
683
760
|
maximumDate?: undefined;
|
|
761
|
+
range?: undefined;
|
|
684
762
|
carouselType?: undefined;
|
|
685
763
|
showDots?: undefined;
|
|
686
764
|
defaultIndex?: undefined;
|
|
@@ -732,12 +810,12 @@ export declare const onboardingExample: {
|
|
|
732
810
|
muted?: undefined;
|
|
733
811
|
contentFit?: undefined;
|
|
734
812
|
keyboardVerticalOffset?: undefined;
|
|
813
|
+
mode?: undefined;
|
|
814
|
+
opacity?: undefined;
|
|
735
815
|
horizontal?: undefined;
|
|
736
816
|
showsHorizontalScrollIndicator?: undefined;
|
|
737
817
|
contentContainerPadding?: undefined;
|
|
738
|
-
mode?: undefined;
|
|
739
818
|
fontStyle?: undefined;
|
|
740
|
-
opacity?: undefined;
|
|
741
819
|
lineHeight?: undefined;
|
|
742
820
|
variableName?: undefined;
|
|
743
821
|
defaultValue?: undefined;
|
|
@@ -746,6 +824,7 @@ export declare const onboardingExample: {
|
|
|
746
824
|
defaultValues?: undefined;
|
|
747
825
|
display?: undefined;
|
|
748
826
|
maximumDate?: undefined;
|
|
827
|
+
range?: undefined;
|
|
749
828
|
carouselType?: undefined;
|
|
750
829
|
showDots?: undefined;
|
|
751
830
|
defaultIndex?: undefined;
|
|
@@ -797,12 +876,12 @@ export declare const onboardingExample: {
|
|
|
797
876
|
muted?: undefined;
|
|
798
877
|
contentFit?: undefined;
|
|
799
878
|
keyboardVerticalOffset?: undefined;
|
|
879
|
+
mode?: undefined;
|
|
880
|
+
opacity?: undefined;
|
|
800
881
|
horizontal?: undefined;
|
|
801
882
|
showsHorizontalScrollIndicator?: undefined;
|
|
802
883
|
contentContainerPadding?: undefined;
|
|
803
|
-
mode?: undefined;
|
|
804
884
|
fontWeight?: undefined;
|
|
805
|
-
opacity?: undefined;
|
|
806
885
|
lineHeight?: undefined;
|
|
807
886
|
variableName?: undefined;
|
|
808
887
|
defaultValue?: undefined;
|
|
@@ -811,6 +890,7 @@ export declare const onboardingExample: {
|
|
|
811
890
|
defaultValues?: undefined;
|
|
812
891
|
display?: undefined;
|
|
813
892
|
maximumDate?: undefined;
|
|
893
|
+
range?: undefined;
|
|
814
894
|
carouselType?: undefined;
|
|
815
895
|
showDots?: undefined;
|
|
816
896
|
defaultIndex?: undefined;
|
|
@@ -861,10 +941,10 @@ export declare const onboardingExample: {
|
|
|
861
941
|
muted?: undefined;
|
|
862
942
|
contentFit?: undefined;
|
|
863
943
|
keyboardVerticalOffset?: undefined;
|
|
944
|
+
mode?: undefined;
|
|
864
945
|
horizontal?: undefined;
|
|
865
946
|
showsHorizontalScrollIndicator?: undefined;
|
|
866
947
|
contentContainerPadding?: undefined;
|
|
867
|
-
mode?: undefined;
|
|
868
948
|
fontWeight?: undefined;
|
|
869
949
|
fontFamily?: undefined;
|
|
870
950
|
fontStyle?: undefined;
|
|
@@ -876,6 +956,7 @@ export declare const onboardingExample: {
|
|
|
876
956
|
defaultValues?: undefined;
|
|
877
957
|
display?: undefined;
|
|
878
958
|
maximumDate?: undefined;
|
|
959
|
+
range?: undefined;
|
|
879
960
|
carouselType?: undefined;
|
|
880
961
|
showDots?: undefined;
|
|
881
962
|
defaultIndex?: undefined;
|
|
@@ -927,10 +1008,10 @@ export declare const onboardingExample: {
|
|
|
927
1008
|
muted?: undefined;
|
|
928
1009
|
contentFit?: undefined;
|
|
929
1010
|
keyboardVerticalOffset?: undefined;
|
|
1011
|
+
mode?: undefined;
|
|
930
1012
|
horizontal?: undefined;
|
|
931
1013
|
showsHorizontalScrollIndicator?: undefined;
|
|
932
1014
|
contentContainerPadding?: undefined;
|
|
933
|
-
mode?: undefined;
|
|
934
1015
|
fontWeight?: undefined;
|
|
935
1016
|
fontStyle?: undefined;
|
|
936
1017
|
lineHeight?: undefined;
|
|
@@ -941,6 +1022,7 @@ export declare const onboardingExample: {
|
|
|
941
1022
|
defaultValues?: undefined;
|
|
942
1023
|
display?: undefined;
|
|
943
1024
|
maximumDate?: undefined;
|
|
1025
|
+
range?: undefined;
|
|
944
1026
|
carouselType?: undefined;
|
|
945
1027
|
showDots?: undefined;
|
|
946
1028
|
defaultIndex?: undefined;
|
|
@@ -992,10 +1074,10 @@ export declare const onboardingExample: {
|
|
|
992
1074
|
muted?: undefined;
|
|
993
1075
|
contentFit?: undefined;
|
|
994
1076
|
keyboardVerticalOffset?: undefined;
|
|
1077
|
+
mode?: undefined;
|
|
995
1078
|
horizontal?: undefined;
|
|
996
1079
|
showsHorizontalScrollIndicator?: undefined;
|
|
997
1080
|
contentContainerPadding?: undefined;
|
|
998
|
-
mode?: undefined;
|
|
999
1081
|
fontWeight?: undefined;
|
|
1000
1082
|
fontFamily?: undefined;
|
|
1001
1083
|
fontStyle?: undefined;
|
|
@@ -1006,6 +1088,7 @@ export declare const onboardingExample: {
|
|
|
1006
1088
|
defaultValues?: undefined;
|
|
1007
1089
|
display?: undefined;
|
|
1008
1090
|
maximumDate?: undefined;
|
|
1091
|
+
range?: undefined;
|
|
1009
1092
|
carouselType?: undefined;
|
|
1010
1093
|
showDots?: undefined;
|
|
1011
1094
|
defaultIndex?: undefined;
|
|
@@ -1059,21 +1142,22 @@ export declare const onboardingExample: {
|
|
|
1059
1142
|
muted?: undefined;
|
|
1060
1143
|
contentFit?: undefined;
|
|
1061
1144
|
keyboardVerticalOffset?: undefined;
|
|
1062
|
-
horizontal?: undefined;
|
|
1063
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1064
|
-
contentContainerPadding?: undefined;
|
|
1065
1145
|
content?: undefined;
|
|
1066
1146
|
mode?: undefined;
|
|
1067
1147
|
fontSize?: undefined;
|
|
1068
|
-
fontWeight?: undefined;
|
|
1069
1148
|
textAlign?: undefined;
|
|
1149
|
+
opacity?: undefined;
|
|
1150
|
+
horizontal?: undefined;
|
|
1151
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1152
|
+
contentContainerPadding?: undefined;
|
|
1153
|
+
fontWeight?: undefined;
|
|
1070
1154
|
fontFamily?: undefined;
|
|
1071
1155
|
fontStyle?: undefined;
|
|
1072
|
-
opacity?: undefined;
|
|
1073
1156
|
lineHeight?: undefined;
|
|
1074
1157
|
defaultValues?: undefined;
|
|
1075
1158
|
display?: undefined;
|
|
1076
1159
|
maximumDate?: undefined;
|
|
1160
|
+
range?: undefined;
|
|
1077
1161
|
carouselType?: undefined;
|
|
1078
1162
|
showDots?: undefined;
|
|
1079
1163
|
defaultIndex?: undefined;
|
|
@@ -1139,6 +1223,7 @@ export declare const onboardingExample: {
|
|
|
1139
1223
|
defaultValues?: undefined;
|
|
1140
1224
|
display?: undefined;
|
|
1141
1225
|
maximumDate?: undefined;
|
|
1226
|
+
range?: undefined;
|
|
1142
1227
|
carouselType?: undefined;
|
|
1143
1228
|
showDots?: undefined;
|
|
1144
1229
|
defaultIndex?: undefined;
|
|
@@ -1194,13 +1279,13 @@ export declare const onboardingExample: {
|
|
|
1194
1279
|
muted?: undefined;
|
|
1195
1280
|
contentFit?: undefined;
|
|
1196
1281
|
keyboardVerticalOffset?: undefined;
|
|
1282
|
+
mode?: undefined;
|
|
1283
|
+
opacity?: undefined;
|
|
1197
1284
|
horizontal?: undefined;
|
|
1198
1285
|
showsHorizontalScrollIndicator?: undefined;
|
|
1199
1286
|
contentContainerPadding?: undefined;
|
|
1200
|
-
mode?: undefined;
|
|
1201
1287
|
fontFamily?: undefined;
|
|
1202
1288
|
fontStyle?: undefined;
|
|
1203
|
-
opacity?: undefined;
|
|
1204
1289
|
lineHeight?: undefined;
|
|
1205
1290
|
variableName?: undefined;
|
|
1206
1291
|
defaultValue?: undefined;
|
|
@@ -1209,6 +1294,7 @@ export declare const onboardingExample: {
|
|
|
1209
1294
|
defaultValues?: undefined;
|
|
1210
1295
|
display?: undefined;
|
|
1211
1296
|
maximumDate?: undefined;
|
|
1297
|
+
range?: undefined;
|
|
1212
1298
|
carouselType?: undefined;
|
|
1213
1299
|
showDots?: undefined;
|
|
1214
1300
|
defaultIndex?: undefined;
|
|
@@ -1261,21 +1347,22 @@ export declare const onboardingExample: {
|
|
|
1261
1347
|
muted?: undefined;
|
|
1262
1348
|
contentFit?: undefined;
|
|
1263
1349
|
keyboardVerticalOffset?: undefined;
|
|
1264
|
-
horizontal?: undefined;
|
|
1265
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1266
|
-
contentContainerPadding?: undefined;
|
|
1267
1350
|
content?: undefined;
|
|
1268
1351
|
mode?: undefined;
|
|
1269
1352
|
fontSize?: undefined;
|
|
1270
|
-
fontWeight?: undefined;
|
|
1271
1353
|
textAlign?: undefined;
|
|
1354
|
+
opacity?: undefined;
|
|
1355
|
+
horizontal?: undefined;
|
|
1356
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1357
|
+
contentContainerPadding?: undefined;
|
|
1358
|
+
fontWeight?: undefined;
|
|
1272
1359
|
fontFamily?: undefined;
|
|
1273
1360
|
fontStyle?: undefined;
|
|
1274
|
-
opacity?: undefined;
|
|
1275
1361
|
lineHeight?: undefined;
|
|
1276
1362
|
defaultValue?: undefined;
|
|
1277
1363
|
display?: undefined;
|
|
1278
1364
|
maximumDate?: undefined;
|
|
1365
|
+
range?: undefined;
|
|
1279
1366
|
carouselType?: undefined;
|
|
1280
1367
|
showDots?: undefined;
|
|
1281
1368
|
defaultIndex?: undefined;
|
|
@@ -1327,20 +1414,92 @@ export declare const onboardingExample: {
|
|
|
1327
1414
|
muted?: undefined;
|
|
1328
1415
|
contentFit?: undefined;
|
|
1329
1416
|
keyboardVerticalOffset?: undefined;
|
|
1417
|
+
content?: undefined;
|
|
1418
|
+
fontSize?: undefined;
|
|
1419
|
+
textAlign?: undefined;
|
|
1420
|
+
opacity?: undefined;
|
|
1330
1421
|
horizontal?: undefined;
|
|
1331
1422
|
showsHorizontalScrollIndicator?: undefined;
|
|
1332
1423
|
contentContainerPadding?: undefined;
|
|
1424
|
+
fontWeight?: undefined;
|
|
1425
|
+
fontFamily?: undefined;
|
|
1426
|
+
fontStyle?: undefined;
|
|
1427
|
+
lineHeight?: undefined;
|
|
1428
|
+
gap?: undefined;
|
|
1429
|
+
items?: undefined;
|
|
1430
|
+
defaultValues?: undefined;
|
|
1431
|
+
range?: undefined;
|
|
1432
|
+
carouselType?: undefined;
|
|
1433
|
+
showDots?: undefined;
|
|
1434
|
+
defaultIndex?: undefined;
|
|
1435
|
+
overflow?: undefined;
|
|
1436
|
+
label?: undefined;
|
|
1437
|
+
variant?: undefined;
|
|
1438
|
+
actions?: undefined;
|
|
1439
|
+
padding?: undefined;
|
|
1440
|
+
backgroundGradient?: undefined;
|
|
1441
|
+
backgroundColor?: undefined;
|
|
1442
|
+
shadowColor?: undefined;
|
|
1443
|
+
shadowOffset?: undefined;
|
|
1444
|
+
shadowOpacity?: undefined;
|
|
1445
|
+
shadowRadius?: undefined;
|
|
1446
|
+
elevation?: undefined;
|
|
1447
|
+
transitionDurationMs?: undefined;
|
|
1448
|
+
pressedStyle?: undefined;
|
|
1449
|
+
disabledWhen?: undefined;
|
|
1450
|
+
disabledStyle?: undefined;
|
|
1451
|
+
};
|
|
1452
|
+
children?: undefined;
|
|
1453
|
+
renderWhen?: undefined;
|
|
1454
|
+
} | {
|
|
1455
|
+
id: string;
|
|
1456
|
+
type: string;
|
|
1457
|
+
props: {
|
|
1458
|
+
variableName: string;
|
|
1459
|
+
defaultValue: string;
|
|
1460
|
+
range: {
|
|
1461
|
+
min: number;
|
|
1462
|
+
max: number;
|
|
1463
|
+
step: number;
|
|
1464
|
+
unit: string;
|
|
1465
|
+
};
|
|
1466
|
+
height: number;
|
|
1467
|
+
marginVertical: number;
|
|
1468
|
+
source?: undefined;
|
|
1469
|
+
autoPlay?: undefined;
|
|
1470
|
+
loop?: undefined;
|
|
1471
|
+
url?: undefined;
|
|
1472
|
+
width?: undefined;
|
|
1473
|
+
aspectRatio?: undefined;
|
|
1474
|
+
fit?: undefined;
|
|
1475
|
+
resizeMode?: undefined;
|
|
1476
|
+
borderRadius?: undefined;
|
|
1477
|
+
name?: undefined;
|
|
1478
|
+
size?: undefined;
|
|
1479
|
+
color?: undefined;
|
|
1480
|
+
fill?: undefined;
|
|
1481
|
+
fillOpacity?: undefined;
|
|
1482
|
+
controls?: undefined;
|
|
1483
|
+
muted?: undefined;
|
|
1484
|
+
contentFit?: undefined;
|
|
1485
|
+
keyboardVerticalOffset?: undefined;
|
|
1333
1486
|
content?: undefined;
|
|
1487
|
+
mode?: undefined;
|
|
1334
1488
|
fontSize?: undefined;
|
|
1335
|
-
fontWeight?: undefined;
|
|
1336
1489
|
textAlign?: undefined;
|
|
1490
|
+
opacity?: undefined;
|
|
1491
|
+
horizontal?: undefined;
|
|
1492
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1493
|
+
contentContainerPadding?: undefined;
|
|
1494
|
+
fontWeight?: undefined;
|
|
1337
1495
|
fontFamily?: undefined;
|
|
1338
1496
|
fontStyle?: undefined;
|
|
1339
|
-
opacity?: undefined;
|
|
1340
1497
|
lineHeight?: undefined;
|
|
1341
1498
|
gap?: undefined;
|
|
1342
1499
|
items?: undefined;
|
|
1343
1500
|
defaultValues?: undefined;
|
|
1501
|
+
display?: undefined;
|
|
1502
|
+
maximumDate?: undefined;
|
|
1344
1503
|
carouselType?: undefined;
|
|
1345
1504
|
showDots?: undefined;
|
|
1346
1505
|
defaultIndex?: undefined;
|
|
@@ -1391,17 +1550,17 @@ export declare const onboardingExample: {
|
|
|
1391
1550
|
muted?: undefined;
|
|
1392
1551
|
contentFit?: undefined;
|
|
1393
1552
|
keyboardVerticalOffset?: undefined;
|
|
1394
|
-
horizontal?: undefined;
|
|
1395
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1396
|
-
contentContainerPadding?: undefined;
|
|
1397
1553
|
content?: undefined;
|
|
1398
1554
|
mode?: undefined;
|
|
1399
1555
|
fontSize?: undefined;
|
|
1400
|
-
fontWeight?: undefined;
|
|
1401
1556
|
textAlign?: undefined;
|
|
1557
|
+
opacity?: undefined;
|
|
1558
|
+
horizontal?: undefined;
|
|
1559
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1560
|
+
contentContainerPadding?: undefined;
|
|
1561
|
+
fontWeight?: undefined;
|
|
1402
1562
|
fontFamily?: undefined;
|
|
1403
1563
|
fontStyle?: undefined;
|
|
1404
|
-
opacity?: undefined;
|
|
1405
1564
|
lineHeight?: undefined;
|
|
1406
1565
|
defaultValue?: undefined;
|
|
1407
1566
|
gap?: undefined;
|
|
@@ -1409,6 +1568,7 @@ export declare const onboardingExample: {
|
|
|
1409
1568
|
defaultValues?: undefined;
|
|
1410
1569
|
display?: undefined;
|
|
1411
1570
|
maximumDate?: undefined;
|
|
1571
|
+
range?: undefined;
|
|
1412
1572
|
overflow?: undefined;
|
|
1413
1573
|
label?: undefined;
|
|
1414
1574
|
variant?: undefined;
|
|
@@ -1461,17 +1621,17 @@ export declare const onboardingExample: {
|
|
|
1461
1621
|
muted?: undefined;
|
|
1462
1622
|
contentFit?: undefined;
|
|
1463
1623
|
keyboardVerticalOffset?: undefined;
|
|
1464
|
-
horizontal?: undefined;
|
|
1465
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1466
|
-
contentContainerPadding?: undefined;
|
|
1467
1624
|
content?: undefined;
|
|
1468
1625
|
mode?: undefined;
|
|
1469
1626
|
fontSize?: undefined;
|
|
1470
|
-
fontWeight?: undefined;
|
|
1471
1627
|
textAlign?: undefined;
|
|
1628
|
+
opacity?: undefined;
|
|
1629
|
+
horizontal?: undefined;
|
|
1630
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1631
|
+
contentContainerPadding?: undefined;
|
|
1632
|
+
fontWeight?: undefined;
|
|
1472
1633
|
fontFamily?: undefined;
|
|
1473
1634
|
fontStyle?: undefined;
|
|
1474
|
-
opacity?: undefined;
|
|
1475
1635
|
lineHeight?: undefined;
|
|
1476
1636
|
variableName?: undefined;
|
|
1477
1637
|
defaultValue?: undefined;
|
|
@@ -1479,6 +1639,7 @@ export declare const onboardingExample: {
|
|
|
1479
1639
|
defaultValues?: undefined;
|
|
1480
1640
|
display?: undefined;
|
|
1481
1641
|
maximumDate?: undefined;
|
|
1642
|
+
range?: undefined;
|
|
1482
1643
|
carouselType?: undefined;
|
|
1483
1644
|
showDots?: undefined;
|
|
1484
1645
|
defaultIndex?: undefined;
|
|
@@ -1540,17 +1701,17 @@ export declare const onboardingExample: {
|
|
|
1540
1701
|
muted?: undefined;
|
|
1541
1702
|
contentFit?: undefined;
|
|
1542
1703
|
keyboardVerticalOffset?: undefined;
|
|
1543
|
-
horizontal?: undefined;
|
|
1544
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1545
|
-
contentContainerPadding?: undefined;
|
|
1546
1704
|
content?: undefined;
|
|
1547
1705
|
mode?: undefined;
|
|
1548
1706
|
fontSize?: undefined;
|
|
1549
|
-
fontWeight?: undefined;
|
|
1550
1707
|
textAlign?: undefined;
|
|
1708
|
+
opacity?: undefined;
|
|
1709
|
+
horizontal?: undefined;
|
|
1710
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1711
|
+
contentContainerPadding?: undefined;
|
|
1712
|
+
fontWeight?: undefined;
|
|
1551
1713
|
fontFamily?: undefined;
|
|
1552
1714
|
fontStyle?: undefined;
|
|
1553
|
-
opacity?: undefined;
|
|
1554
1715
|
lineHeight?: undefined;
|
|
1555
1716
|
variableName?: undefined;
|
|
1556
1717
|
defaultValue?: undefined;
|
|
@@ -1559,6 +1720,7 @@ export declare const onboardingExample: {
|
|
|
1559
1720
|
defaultValues?: undefined;
|
|
1560
1721
|
display?: undefined;
|
|
1561
1722
|
maximumDate?: undefined;
|
|
1723
|
+
range?: undefined;
|
|
1562
1724
|
carouselType?: undefined;
|
|
1563
1725
|
showDots?: undefined;
|
|
1564
1726
|
defaultIndex?: undefined;
|
|
@@ -1646,17 +1808,17 @@ export declare const onboardingExample: {
|
|
|
1646
1808
|
muted?: undefined;
|
|
1647
1809
|
contentFit?: undefined;
|
|
1648
1810
|
keyboardVerticalOffset?: undefined;
|
|
1649
|
-
horizontal?: undefined;
|
|
1650
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1651
|
-
contentContainerPadding?: undefined;
|
|
1652
1811
|
content?: undefined;
|
|
1653
1812
|
mode?: undefined;
|
|
1654
1813
|
fontSize?: undefined;
|
|
1655
|
-
fontWeight?: undefined;
|
|
1656
1814
|
textAlign?: undefined;
|
|
1815
|
+
opacity?: undefined;
|
|
1816
|
+
horizontal?: undefined;
|
|
1817
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1818
|
+
contentContainerPadding?: undefined;
|
|
1819
|
+
fontWeight?: undefined;
|
|
1657
1820
|
fontFamily?: undefined;
|
|
1658
1821
|
fontStyle?: undefined;
|
|
1659
|
-
opacity?: undefined;
|
|
1660
1822
|
lineHeight?: undefined;
|
|
1661
1823
|
variableName?: undefined;
|
|
1662
1824
|
defaultValue?: undefined;
|
|
@@ -1665,6 +1827,7 @@ export declare const onboardingExample: {
|
|
|
1665
1827
|
defaultValues?: undefined;
|
|
1666
1828
|
display?: undefined;
|
|
1667
1829
|
maximumDate?: undefined;
|
|
1830
|
+
range?: undefined;
|
|
1668
1831
|
carouselType?: undefined;
|
|
1669
1832
|
showDots?: undefined;
|
|
1670
1833
|
defaultIndex?: undefined;
|
|
@@ -1719,17 +1882,17 @@ export declare const onboardingExample: {
|
|
|
1719
1882
|
muted?: undefined;
|
|
1720
1883
|
contentFit?: undefined;
|
|
1721
1884
|
keyboardVerticalOffset?: undefined;
|
|
1722
|
-
horizontal?: undefined;
|
|
1723
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1724
|
-
contentContainerPadding?: undefined;
|
|
1725
1885
|
content?: undefined;
|
|
1726
1886
|
mode?: undefined;
|
|
1727
1887
|
fontSize?: undefined;
|
|
1728
|
-
fontWeight?: undefined;
|
|
1729
1888
|
textAlign?: undefined;
|
|
1889
|
+
opacity?: undefined;
|
|
1890
|
+
horizontal?: undefined;
|
|
1891
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1892
|
+
contentContainerPadding?: undefined;
|
|
1893
|
+
fontWeight?: undefined;
|
|
1730
1894
|
fontFamily?: undefined;
|
|
1731
1895
|
fontStyle?: undefined;
|
|
1732
|
-
opacity?: undefined;
|
|
1733
1896
|
lineHeight?: undefined;
|
|
1734
1897
|
variableName?: undefined;
|
|
1735
1898
|
defaultValue?: undefined;
|
|
@@ -1737,6 +1900,7 @@ export declare const onboardingExample: {
|
|
|
1737
1900
|
defaultValues?: undefined;
|
|
1738
1901
|
display?: undefined;
|
|
1739
1902
|
maximumDate?: undefined;
|
|
1903
|
+
range?: undefined;
|
|
1740
1904
|
carouselType?: undefined;
|
|
1741
1905
|
showDots?: undefined;
|
|
1742
1906
|
defaultIndex?: undefined;
|
|
@@ -1811,17 +1975,17 @@ export declare const onboardingExample: {
|
|
|
1811
1975
|
muted?: undefined;
|
|
1812
1976
|
contentFit?: undefined;
|
|
1813
1977
|
keyboardVerticalOffset?: undefined;
|
|
1814
|
-
horizontal?: undefined;
|
|
1815
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1816
|
-
contentContainerPadding?: undefined;
|
|
1817
1978
|
content?: undefined;
|
|
1818
1979
|
mode?: undefined;
|
|
1819
1980
|
fontSize?: undefined;
|
|
1820
|
-
fontWeight?: undefined;
|
|
1821
1981
|
textAlign?: undefined;
|
|
1982
|
+
opacity?: undefined;
|
|
1983
|
+
horizontal?: undefined;
|
|
1984
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1985
|
+
contentContainerPadding?: undefined;
|
|
1986
|
+
fontWeight?: undefined;
|
|
1822
1987
|
fontFamily?: undefined;
|
|
1823
1988
|
fontStyle?: undefined;
|
|
1824
|
-
opacity?: undefined;
|
|
1825
1989
|
lineHeight?: undefined;
|
|
1826
1990
|
variableName?: undefined;
|
|
1827
1991
|
defaultValue?: undefined;
|
|
@@ -1830,6 +1994,7 @@ export declare const onboardingExample: {
|
|
|
1830
1994
|
defaultValues?: undefined;
|
|
1831
1995
|
display?: undefined;
|
|
1832
1996
|
maximumDate?: undefined;
|
|
1997
|
+
range?: undefined;
|
|
1833
1998
|
carouselType?: undefined;
|
|
1834
1999
|
showDots?: undefined;
|
|
1835
2000
|
defaultIndex?: undefined;
|
|
@@ -1877,11 +2042,11 @@ export declare const onboardingExample: {
|
|
|
1877
2042
|
muted?: undefined;
|
|
1878
2043
|
contentFit?: undefined;
|
|
1879
2044
|
keyboardVerticalOffset?: undefined;
|
|
2045
|
+
mode?: undefined;
|
|
2046
|
+
textAlign?: undefined;
|
|
1880
2047
|
horizontal?: undefined;
|
|
1881
2048
|
showsHorizontalScrollIndicator?: undefined;
|
|
1882
2049
|
contentContainerPadding?: undefined;
|
|
1883
|
-
mode?: undefined;
|
|
1884
|
-
textAlign?: undefined;
|
|
1885
2050
|
fontFamily?: undefined;
|
|
1886
2051
|
fontStyle?: undefined;
|
|
1887
2052
|
lineHeight?: undefined;
|
|
@@ -1892,6 +2057,7 @@ export declare const onboardingExample: {
|
|
|
1892
2057
|
defaultValues?: undefined;
|
|
1893
2058
|
display?: undefined;
|
|
1894
2059
|
maximumDate?: undefined;
|
|
2060
|
+
range?: undefined;
|
|
1895
2061
|
carouselType?: undefined;
|
|
1896
2062
|
showDots?: undefined;
|
|
1897
2063
|
defaultIndex?: undefined;
|
|
@@ -1949,17 +2115,17 @@ export declare const onboardingExample: {
|
|
|
1949
2115
|
muted?: undefined;
|
|
1950
2116
|
contentFit?: undefined;
|
|
1951
2117
|
keyboardVerticalOffset?: undefined;
|
|
1952
|
-
horizontal?: undefined;
|
|
1953
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1954
|
-
contentContainerPadding?: undefined;
|
|
1955
2118
|
content?: undefined;
|
|
1956
2119
|
mode?: undefined;
|
|
1957
2120
|
fontSize?: undefined;
|
|
1958
|
-
fontWeight?: undefined;
|
|
1959
2121
|
textAlign?: undefined;
|
|
2122
|
+
opacity?: undefined;
|
|
2123
|
+
horizontal?: undefined;
|
|
2124
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2125
|
+
contentContainerPadding?: undefined;
|
|
2126
|
+
fontWeight?: undefined;
|
|
1960
2127
|
fontFamily?: undefined;
|
|
1961
2128
|
fontStyle?: undefined;
|
|
1962
|
-
opacity?: undefined;
|
|
1963
2129
|
lineHeight?: undefined;
|
|
1964
2130
|
variableName?: undefined;
|
|
1965
2131
|
defaultValue?: undefined;
|
|
@@ -1968,6 +2134,7 @@ export declare const onboardingExample: {
|
|
|
1968
2134
|
defaultValues?: undefined;
|
|
1969
2135
|
display?: undefined;
|
|
1970
2136
|
maximumDate?: undefined;
|
|
2137
|
+
range?: undefined;
|
|
1971
2138
|
carouselType?: undefined;
|
|
1972
2139
|
showDots?: undefined;
|
|
1973
2140
|
defaultIndex?: undefined;
|
|
@@ -2014,17 +2181,17 @@ export declare const onboardingExample: {
|
|
|
2014
2181
|
muted?: undefined;
|
|
2015
2182
|
contentFit?: undefined;
|
|
2016
2183
|
keyboardVerticalOffset?: undefined;
|
|
2017
|
-
horizontal?: undefined;
|
|
2018
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2019
|
-
contentContainerPadding?: undefined;
|
|
2020
2184
|
content?: undefined;
|
|
2021
2185
|
mode?: undefined;
|
|
2022
2186
|
fontSize?: undefined;
|
|
2023
|
-
fontWeight?: undefined;
|
|
2024
2187
|
textAlign?: undefined;
|
|
2188
|
+
opacity?: undefined;
|
|
2189
|
+
horizontal?: undefined;
|
|
2190
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2191
|
+
contentContainerPadding?: undefined;
|
|
2192
|
+
fontWeight?: undefined;
|
|
2025
2193
|
fontFamily?: undefined;
|
|
2026
2194
|
fontStyle?: undefined;
|
|
2027
|
-
opacity?: undefined;
|
|
2028
2195
|
lineHeight?: undefined;
|
|
2029
2196
|
variableName?: undefined;
|
|
2030
2197
|
defaultValue?: undefined;
|
|
@@ -2033,6 +2200,7 @@ export declare const onboardingExample: {
|
|
|
2033
2200
|
defaultValues?: undefined;
|
|
2034
2201
|
display?: undefined;
|
|
2035
2202
|
maximumDate?: undefined;
|
|
2203
|
+
range?: undefined;
|
|
2036
2204
|
carouselType?: undefined;
|
|
2037
2205
|
showDots?: undefined;
|
|
2038
2206
|
defaultIndex?: undefined;
|
|
@@ -2089,17 +2257,17 @@ export declare const onboardingExample: {
|
|
|
2089
2257
|
muted?: undefined;
|
|
2090
2258
|
contentFit?: undefined;
|
|
2091
2259
|
keyboardVerticalOffset?: undefined;
|
|
2092
|
-
horizontal?: undefined;
|
|
2093
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2094
|
-
contentContainerPadding?: undefined;
|
|
2095
2260
|
content?: undefined;
|
|
2096
2261
|
mode?: undefined;
|
|
2097
2262
|
fontSize?: undefined;
|
|
2098
|
-
fontWeight?: undefined;
|
|
2099
2263
|
textAlign?: undefined;
|
|
2264
|
+
opacity?: undefined;
|
|
2265
|
+
horizontal?: undefined;
|
|
2266
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2267
|
+
contentContainerPadding?: undefined;
|
|
2268
|
+
fontWeight?: undefined;
|
|
2100
2269
|
fontFamily?: undefined;
|
|
2101
2270
|
fontStyle?: undefined;
|
|
2102
|
-
opacity?: undefined;
|
|
2103
2271
|
lineHeight?: undefined;
|
|
2104
2272
|
variableName?: undefined;
|
|
2105
2273
|
defaultValue?: undefined;
|
|
@@ -2108,6 +2276,7 @@ export declare const onboardingExample: {
|
|
|
2108
2276
|
defaultValues?: undefined;
|
|
2109
2277
|
display?: undefined;
|
|
2110
2278
|
maximumDate?: undefined;
|
|
2279
|
+
range?: undefined;
|
|
2111
2280
|
carouselType?: undefined;
|
|
2112
2281
|
showDots?: undefined;
|
|
2113
2282
|
defaultIndex?: undefined;
|
|
@@ -2157,17 +2326,17 @@ export declare const onboardingExample: {
|
|
|
2157
2326
|
muted?: undefined;
|
|
2158
2327
|
contentFit?: undefined;
|
|
2159
2328
|
keyboardVerticalOffset?: undefined;
|
|
2160
|
-
horizontal?: undefined;
|
|
2161
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2162
|
-
contentContainerPadding?: undefined;
|
|
2163
2329
|
content?: undefined;
|
|
2164
2330
|
mode?: undefined;
|
|
2165
2331
|
fontSize?: undefined;
|
|
2166
|
-
fontWeight?: undefined;
|
|
2167
2332
|
textAlign?: undefined;
|
|
2333
|
+
opacity?: undefined;
|
|
2334
|
+
horizontal?: undefined;
|
|
2335
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2336
|
+
contentContainerPadding?: undefined;
|
|
2337
|
+
fontWeight?: undefined;
|
|
2168
2338
|
fontFamily?: undefined;
|
|
2169
2339
|
fontStyle?: undefined;
|
|
2170
|
-
opacity?: undefined;
|
|
2171
2340
|
lineHeight?: undefined;
|
|
2172
2341
|
variableName?: undefined;
|
|
2173
2342
|
defaultValue?: undefined;
|
|
@@ -2176,6 +2345,7 @@ export declare const onboardingExample: {
|
|
|
2176
2345
|
defaultValues?: undefined;
|
|
2177
2346
|
display?: undefined;
|
|
2178
2347
|
maximumDate?: undefined;
|
|
2348
|
+
range?: undefined;
|
|
2179
2349
|
carouselType?: undefined;
|
|
2180
2350
|
showDots?: undefined;
|
|
2181
2351
|
defaultIndex?: undefined;
|
|
@@ -2247,17 +2417,17 @@ export declare const onboardingExample: {
|
|
|
2247
2417
|
muted?: undefined;
|
|
2248
2418
|
contentFit?: undefined;
|
|
2249
2419
|
keyboardVerticalOffset?: undefined;
|
|
2250
|
-
horizontal?: undefined;
|
|
2251
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2252
|
-
contentContainerPadding?: undefined;
|
|
2253
2420
|
content?: undefined;
|
|
2254
2421
|
mode?: undefined;
|
|
2255
2422
|
fontSize?: undefined;
|
|
2256
|
-
fontWeight?: undefined;
|
|
2257
2423
|
textAlign?: undefined;
|
|
2424
|
+
opacity?: undefined;
|
|
2425
|
+
horizontal?: undefined;
|
|
2426
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2427
|
+
contentContainerPadding?: undefined;
|
|
2428
|
+
fontWeight?: undefined;
|
|
2258
2429
|
fontFamily?: undefined;
|
|
2259
2430
|
fontStyle?: undefined;
|
|
2260
|
-
opacity?: undefined;
|
|
2261
2431
|
lineHeight?: undefined;
|
|
2262
2432
|
variableName?: undefined;
|
|
2263
2433
|
defaultValue?: undefined;
|
|
@@ -2266,6 +2436,7 @@ export declare const onboardingExample: {
|
|
|
2266
2436
|
defaultValues?: undefined;
|
|
2267
2437
|
display?: undefined;
|
|
2268
2438
|
maximumDate?: undefined;
|
|
2439
|
+
range?: undefined;
|
|
2269
2440
|
carouselType?: undefined;
|
|
2270
2441
|
showDots?: undefined;
|
|
2271
2442
|
defaultIndex?: undefined;
|