@rocapine/react-native-onboarding 1.26.0 → 1.28.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 +314 -111
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +40 -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/CheckboxGroupElement.d.ts +2 -0
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.js +1 -0
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +2 -0
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.js +1 -0
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.js.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 +40 -0
- package/src/steps/ComposableScreen/elements/CheckboxGroupElement.ts +2 -0
- package/src/steps/ComposableScreen/elements/RadioGroupElement.ts +2 -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,25 +180,27 @@ 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;
|
|
197
|
+
showTick?: undefined;
|
|
197
198
|
gap?: undefined;
|
|
198
199
|
items?: undefined;
|
|
199
200
|
defaultValues?: undefined;
|
|
200
201
|
display?: undefined;
|
|
201
202
|
maximumDate?: undefined;
|
|
203
|
+
range?: undefined;
|
|
202
204
|
carouselType?: undefined;
|
|
203
205
|
showDots?: undefined;
|
|
204
206
|
defaultIndex?: undefined;
|
|
@@ -245,25 +247,27 @@ export declare const onboardingExample: {
|
|
|
245
247
|
muted?: undefined;
|
|
246
248
|
contentFit?: undefined;
|
|
247
249
|
keyboardVerticalOffset?: undefined;
|
|
248
|
-
horizontal?: undefined;
|
|
249
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
250
|
-
contentContainerPadding?: undefined;
|
|
251
250
|
content?: undefined;
|
|
252
251
|
mode?: undefined;
|
|
253
252
|
fontSize?: undefined;
|
|
254
|
-
fontWeight?: undefined;
|
|
255
253
|
textAlign?: undefined;
|
|
254
|
+
opacity?: undefined;
|
|
255
|
+
horizontal?: undefined;
|
|
256
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
257
|
+
contentContainerPadding?: undefined;
|
|
258
|
+
fontWeight?: undefined;
|
|
256
259
|
fontFamily?: undefined;
|
|
257
260
|
fontStyle?: undefined;
|
|
258
|
-
opacity?: undefined;
|
|
259
261
|
lineHeight?: undefined;
|
|
260
262
|
variableName?: undefined;
|
|
261
263
|
defaultValue?: undefined;
|
|
264
|
+
showTick?: undefined;
|
|
262
265
|
gap?: undefined;
|
|
263
266
|
items?: undefined;
|
|
264
267
|
defaultValues?: undefined;
|
|
265
268
|
display?: undefined;
|
|
266
269
|
maximumDate?: undefined;
|
|
270
|
+
range?: undefined;
|
|
267
271
|
carouselType?: undefined;
|
|
268
272
|
showDots?: undefined;
|
|
269
273
|
defaultIndex?: undefined;
|
|
@@ -310,25 +314,27 @@ export declare const onboardingExample: {
|
|
|
310
314
|
muted?: undefined;
|
|
311
315
|
contentFit?: undefined;
|
|
312
316
|
keyboardVerticalOffset?: undefined;
|
|
313
|
-
horizontal?: undefined;
|
|
314
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
315
|
-
contentContainerPadding?: undefined;
|
|
316
317
|
content?: undefined;
|
|
317
318
|
mode?: undefined;
|
|
318
319
|
fontSize?: undefined;
|
|
319
|
-
fontWeight?: undefined;
|
|
320
320
|
textAlign?: undefined;
|
|
321
|
+
opacity?: undefined;
|
|
322
|
+
horizontal?: undefined;
|
|
323
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
324
|
+
contentContainerPadding?: undefined;
|
|
325
|
+
fontWeight?: undefined;
|
|
321
326
|
fontFamily?: undefined;
|
|
322
327
|
fontStyle?: undefined;
|
|
323
|
-
opacity?: undefined;
|
|
324
328
|
lineHeight?: undefined;
|
|
325
329
|
variableName?: undefined;
|
|
326
330
|
defaultValue?: undefined;
|
|
331
|
+
showTick?: undefined;
|
|
327
332
|
gap?: undefined;
|
|
328
333
|
items?: undefined;
|
|
329
334
|
defaultValues?: undefined;
|
|
330
335
|
display?: undefined;
|
|
331
336
|
maximumDate?: undefined;
|
|
337
|
+
range?: undefined;
|
|
332
338
|
carouselType?: undefined;
|
|
333
339
|
showDots?: undefined;
|
|
334
340
|
defaultIndex?: undefined;
|
|
@@ -375,25 +381,27 @@ export declare const onboardingExample: {
|
|
|
375
381
|
muted?: undefined;
|
|
376
382
|
contentFit?: undefined;
|
|
377
383
|
keyboardVerticalOffset?: undefined;
|
|
378
|
-
horizontal?: undefined;
|
|
379
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
380
|
-
contentContainerPadding?: undefined;
|
|
381
384
|
content?: undefined;
|
|
382
385
|
mode?: undefined;
|
|
383
386
|
fontSize?: undefined;
|
|
384
|
-
fontWeight?: undefined;
|
|
385
387
|
textAlign?: undefined;
|
|
388
|
+
opacity?: undefined;
|
|
389
|
+
horizontal?: undefined;
|
|
390
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
391
|
+
contentContainerPadding?: undefined;
|
|
392
|
+
fontWeight?: undefined;
|
|
386
393
|
fontFamily?: undefined;
|
|
387
394
|
fontStyle?: undefined;
|
|
388
|
-
opacity?: undefined;
|
|
389
395
|
lineHeight?: undefined;
|
|
390
396
|
variableName?: undefined;
|
|
391
397
|
defaultValue?: undefined;
|
|
398
|
+
showTick?: undefined;
|
|
392
399
|
gap?: undefined;
|
|
393
400
|
items?: undefined;
|
|
394
401
|
defaultValues?: undefined;
|
|
395
402
|
display?: undefined;
|
|
396
403
|
maximumDate?: undefined;
|
|
404
|
+
range?: undefined;
|
|
397
405
|
carouselType?: undefined;
|
|
398
406
|
showDots?: undefined;
|
|
399
407
|
defaultIndex?: undefined;
|
|
@@ -440,25 +448,27 @@ export declare const onboardingExample: {
|
|
|
440
448
|
fillOpacity?: undefined;
|
|
441
449
|
marginVertical?: undefined;
|
|
442
450
|
keyboardVerticalOffset?: undefined;
|
|
443
|
-
horizontal?: undefined;
|
|
444
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
445
|
-
contentContainerPadding?: undefined;
|
|
446
451
|
content?: undefined;
|
|
447
452
|
mode?: undefined;
|
|
448
453
|
fontSize?: undefined;
|
|
449
|
-
fontWeight?: undefined;
|
|
450
454
|
textAlign?: undefined;
|
|
455
|
+
opacity?: undefined;
|
|
456
|
+
horizontal?: undefined;
|
|
457
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
458
|
+
contentContainerPadding?: undefined;
|
|
459
|
+
fontWeight?: undefined;
|
|
451
460
|
fontFamily?: undefined;
|
|
452
461
|
fontStyle?: undefined;
|
|
453
|
-
opacity?: undefined;
|
|
454
462
|
lineHeight?: undefined;
|
|
455
463
|
variableName?: undefined;
|
|
456
464
|
defaultValue?: undefined;
|
|
465
|
+
showTick?: undefined;
|
|
457
466
|
gap?: undefined;
|
|
458
467
|
items?: undefined;
|
|
459
468
|
defaultValues?: undefined;
|
|
460
469
|
display?: undefined;
|
|
461
470
|
maximumDate?: undefined;
|
|
471
|
+
range?: undefined;
|
|
462
472
|
carouselType?: undefined;
|
|
463
473
|
showDots?: undefined;
|
|
464
474
|
defaultIndex?: undefined;
|
|
@@ -505,25 +515,27 @@ export declare const onboardingExample: {
|
|
|
505
515
|
controls?: undefined;
|
|
506
516
|
muted?: undefined;
|
|
507
517
|
contentFit?: undefined;
|
|
508
|
-
horizontal?: undefined;
|
|
509
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
510
|
-
contentContainerPadding?: undefined;
|
|
511
518
|
content?: undefined;
|
|
512
519
|
mode?: undefined;
|
|
513
520
|
fontSize?: undefined;
|
|
514
|
-
fontWeight?: undefined;
|
|
515
521
|
textAlign?: undefined;
|
|
522
|
+
opacity?: undefined;
|
|
523
|
+
horizontal?: undefined;
|
|
524
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
525
|
+
contentContainerPadding?: undefined;
|
|
526
|
+
fontWeight?: undefined;
|
|
516
527
|
fontFamily?: undefined;
|
|
517
528
|
fontStyle?: undefined;
|
|
518
|
-
opacity?: undefined;
|
|
519
529
|
lineHeight?: undefined;
|
|
520
530
|
variableName?: undefined;
|
|
521
531
|
defaultValue?: undefined;
|
|
532
|
+
showTick?: undefined;
|
|
522
533
|
gap?: undefined;
|
|
523
534
|
items?: undefined;
|
|
524
535
|
defaultValues?: undefined;
|
|
525
536
|
display?: undefined;
|
|
526
537
|
maximumDate?: undefined;
|
|
538
|
+
range?: undefined;
|
|
527
539
|
carouselType?: undefined;
|
|
528
540
|
showDots?: undefined;
|
|
529
541
|
defaultIndex?: undefined;
|
|
@@ -557,6 +569,77 @@ export declare const onboardingExample: {
|
|
|
557
569
|
};
|
|
558
570
|
}[];
|
|
559
571
|
renderWhen?: undefined;
|
|
572
|
+
} | {
|
|
573
|
+
id: string;
|
|
574
|
+
type: string;
|
|
575
|
+
renderWhen: {
|
|
576
|
+
variable: string;
|
|
577
|
+
operator: string;
|
|
578
|
+
value?: undefined;
|
|
579
|
+
};
|
|
580
|
+
props: {
|
|
581
|
+
content: string;
|
|
582
|
+
mode: string;
|
|
583
|
+
fontSize: number;
|
|
584
|
+
textAlign: string;
|
|
585
|
+
opacity: number;
|
|
586
|
+
marginVertical: number;
|
|
587
|
+
source?: undefined;
|
|
588
|
+
height?: undefined;
|
|
589
|
+
autoPlay?: undefined;
|
|
590
|
+
loop?: undefined;
|
|
591
|
+
url?: undefined;
|
|
592
|
+
width?: undefined;
|
|
593
|
+
aspectRatio?: undefined;
|
|
594
|
+
fit?: undefined;
|
|
595
|
+
resizeMode?: undefined;
|
|
596
|
+
borderRadius?: undefined;
|
|
597
|
+
name?: undefined;
|
|
598
|
+
size?: undefined;
|
|
599
|
+
color?: undefined;
|
|
600
|
+
fill?: undefined;
|
|
601
|
+
fillOpacity?: undefined;
|
|
602
|
+
controls?: undefined;
|
|
603
|
+
muted?: undefined;
|
|
604
|
+
contentFit?: undefined;
|
|
605
|
+
keyboardVerticalOffset?: undefined;
|
|
606
|
+
horizontal?: undefined;
|
|
607
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
608
|
+
contentContainerPadding?: undefined;
|
|
609
|
+
fontWeight?: undefined;
|
|
610
|
+
fontFamily?: undefined;
|
|
611
|
+
fontStyle?: undefined;
|
|
612
|
+
lineHeight?: undefined;
|
|
613
|
+
variableName?: undefined;
|
|
614
|
+
defaultValue?: undefined;
|
|
615
|
+
showTick?: undefined;
|
|
616
|
+
gap?: undefined;
|
|
617
|
+
items?: undefined;
|
|
618
|
+
defaultValues?: undefined;
|
|
619
|
+
display?: undefined;
|
|
620
|
+
maximumDate?: undefined;
|
|
621
|
+
range?: undefined;
|
|
622
|
+
carouselType?: undefined;
|
|
623
|
+
showDots?: undefined;
|
|
624
|
+
defaultIndex?: undefined;
|
|
625
|
+
overflow?: undefined;
|
|
626
|
+
label?: undefined;
|
|
627
|
+
variant?: undefined;
|
|
628
|
+
actions?: undefined;
|
|
629
|
+
padding?: undefined;
|
|
630
|
+
backgroundGradient?: undefined;
|
|
631
|
+
backgroundColor?: undefined;
|
|
632
|
+
shadowColor?: undefined;
|
|
633
|
+
shadowOffset?: undefined;
|
|
634
|
+
shadowOpacity?: undefined;
|
|
635
|
+
shadowRadius?: undefined;
|
|
636
|
+
elevation?: undefined;
|
|
637
|
+
transitionDurationMs?: undefined;
|
|
638
|
+
pressedStyle?: undefined;
|
|
639
|
+
disabledWhen?: undefined;
|
|
640
|
+
disabledStyle?: undefined;
|
|
641
|
+
};
|
|
642
|
+
children?: undefined;
|
|
560
643
|
} | {
|
|
561
644
|
id: string;
|
|
562
645
|
type: string;
|
|
@@ -587,19 +670,21 @@ export declare const onboardingExample: {
|
|
|
587
670
|
content?: undefined;
|
|
588
671
|
mode?: undefined;
|
|
589
672
|
fontSize?: undefined;
|
|
590
|
-
fontWeight?: undefined;
|
|
591
673
|
textAlign?: undefined;
|
|
674
|
+
opacity?: undefined;
|
|
675
|
+
fontWeight?: undefined;
|
|
592
676
|
fontFamily?: undefined;
|
|
593
677
|
fontStyle?: undefined;
|
|
594
|
-
opacity?: undefined;
|
|
595
678
|
lineHeight?: undefined;
|
|
596
679
|
variableName?: undefined;
|
|
597
680
|
defaultValue?: undefined;
|
|
681
|
+
showTick?: undefined;
|
|
598
682
|
gap?: undefined;
|
|
599
683
|
items?: undefined;
|
|
600
684
|
defaultValues?: undefined;
|
|
601
685
|
display?: undefined;
|
|
602
686
|
maximumDate?: undefined;
|
|
687
|
+
range?: undefined;
|
|
603
688
|
carouselType?: undefined;
|
|
604
689
|
showDots?: undefined;
|
|
605
690
|
defaultIndex?: undefined;
|
|
@@ -667,20 +752,22 @@ export declare const onboardingExample: {
|
|
|
667
752
|
muted?: undefined;
|
|
668
753
|
contentFit?: undefined;
|
|
669
754
|
keyboardVerticalOffset?: undefined;
|
|
755
|
+
opacity?: undefined;
|
|
670
756
|
horizontal?: undefined;
|
|
671
757
|
showsHorizontalScrollIndicator?: undefined;
|
|
672
758
|
contentContainerPadding?: undefined;
|
|
673
759
|
fontFamily?: undefined;
|
|
674
760
|
fontStyle?: undefined;
|
|
675
|
-
opacity?: undefined;
|
|
676
761
|
lineHeight?: undefined;
|
|
677
762
|
variableName?: undefined;
|
|
678
763
|
defaultValue?: undefined;
|
|
764
|
+
showTick?: undefined;
|
|
679
765
|
gap?: undefined;
|
|
680
766
|
items?: undefined;
|
|
681
767
|
defaultValues?: undefined;
|
|
682
768
|
display?: undefined;
|
|
683
769
|
maximumDate?: undefined;
|
|
770
|
+
range?: undefined;
|
|
684
771
|
carouselType?: undefined;
|
|
685
772
|
showDots?: undefined;
|
|
686
773
|
defaultIndex?: undefined;
|
|
@@ -732,20 +819,22 @@ export declare const onboardingExample: {
|
|
|
732
819
|
muted?: undefined;
|
|
733
820
|
contentFit?: undefined;
|
|
734
821
|
keyboardVerticalOffset?: undefined;
|
|
822
|
+
mode?: undefined;
|
|
823
|
+
opacity?: undefined;
|
|
735
824
|
horizontal?: undefined;
|
|
736
825
|
showsHorizontalScrollIndicator?: undefined;
|
|
737
826
|
contentContainerPadding?: undefined;
|
|
738
|
-
mode?: undefined;
|
|
739
827
|
fontStyle?: undefined;
|
|
740
|
-
opacity?: undefined;
|
|
741
828
|
lineHeight?: undefined;
|
|
742
829
|
variableName?: undefined;
|
|
743
830
|
defaultValue?: undefined;
|
|
831
|
+
showTick?: undefined;
|
|
744
832
|
gap?: undefined;
|
|
745
833
|
items?: undefined;
|
|
746
834
|
defaultValues?: undefined;
|
|
747
835
|
display?: undefined;
|
|
748
836
|
maximumDate?: undefined;
|
|
837
|
+
range?: undefined;
|
|
749
838
|
carouselType?: undefined;
|
|
750
839
|
showDots?: undefined;
|
|
751
840
|
defaultIndex?: undefined;
|
|
@@ -797,20 +886,22 @@ export declare const onboardingExample: {
|
|
|
797
886
|
muted?: undefined;
|
|
798
887
|
contentFit?: undefined;
|
|
799
888
|
keyboardVerticalOffset?: undefined;
|
|
889
|
+
mode?: undefined;
|
|
890
|
+
opacity?: undefined;
|
|
800
891
|
horizontal?: undefined;
|
|
801
892
|
showsHorizontalScrollIndicator?: undefined;
|
|
802
893
|
contentContainerPadding?: undefined;
|
|
803
|
-
mode?: undefined;
|
|
804
894
|
fontWeight?: undefined;
|
|
805
|
-
opacity?: undefined;
|
|
806
895
|
lineHeight?: undefined;
|
|
807
896
|
variableName?: undefined;
|
|
808
897
|
defaultValue?: undefined;
|
|
898
|
+
showTick?: undefined;
|
|
809
899
|
gap?: undefined;
|
|
810
900
|
items?: undefined;
|
|
811
901
|
defaultValues?: undefined;
|
|
812
902
|
display?: undefined;
|
|
813
903
|
maximumDate?: undefined;
|
|
904
|
+
range?: undefined;
|
|
814
905
|
carouselType?: undefined;
|
|
815
906
|
showDots?: undefined;
|
|
816
907
|
defaultIndex?: undefined;
|
|
@@ -861,21 +952,23 @@ export declare const onboardingExample: {
|
|
|
861
952
|
muted?: undefined;
|
|
862
953
|
contentFit?: undefined;
|
|
863
954
|
keyboardVerticalOffset?: undefined;
|
|
955
|
+
mode?: undefined;
|
|
864
956
|
horizontal?: undefined;
|
|
865
957
|
showsHorizontalScrollIndicator?: undefined;
|
|
866
958
|
contentContainerPadding?: undefined;
|
|
867
|
-
mode?: undefined;
|
|
868
959
|
fontWeight?: undefined;
|
|
869
960
|
fontFamily?: undefined;
|
|
870
961
|
fontStyle?: undefined;
|
|
871
962
|
lineHeight?: undefined;
|
|
872
963
|
variableName?: undefined;
|
|
873
964
|
defaultValue?: undefined;
|
|
965
|
+
showTick?: undefined;
|
|
874
966
|
gap?: undefined;
|
|
875
967
|
items?: undefined;
|
|
876
968
|
defaultValues?: undefined;
|
|
877
969
|
display?: undefined;
|
|
878
970
|
maximumDate?: undefined;
|
|
971
|
+
range?: undefined;
|
|
879
972
|
carouselType?: undefined;
|
|
880
973
|
showDots?: undefined;
|
|
881
974
|
defaultIndex?: undefined;
|
|
@@ -927,20 +1020,22 @@ export declare const onboardingExample: {
|
|
|
927
1020
|
muted?: undefined;
|
|
928
1021
|
contentFit?: undefined;
|
|
929
1022
|
keyboardVerticalOffset?: undefined;
|
|
1023
|
+
mode?: undefined;
|
|
930
1024
|
horizontal?: undefined;
|
|
931
1025
|
showsHorizontalScrollIndicator?: undefined;
|
|
932
1026
|
contentContainerPadding?: undefined;
|
|
933
|
-
mode?: undefined;
|
|
934
1027
|
fontWeight?: undefined;
|
|
935
1028
|
fontStyle?: undefined;
|
|
936
1029
|
lineHeight?: undefined;
|
|
937
1030
|
variableName?: undefined;
|
|
938
1031
|
defaultValue?: undefined;
|
|
1032
|
+
showTick?: undefined;
|
|
939
1033
|
gap?: undefined;
|
|
940
1034
|
items?: undefined;
|
|
941
1035
|
defaultValues?: undefined;
|
|
942
1036
|
display?: undefined;
|
|
943
1037
|
maximumDate?: undefined;
|
|
1038
|
+
range?: undefined;
|
|
944
1039
|
carouselType?: undefined;
|
|
945
1040
|
showDots?: undefined;
|
|
946
1041
|
defaultIndex?: undefined;
|
|
@@ -992,20 +1087,22 @@ export declare const onboardingExample: {
|
|
|
992
1087
|
muted?: undefined;
|
|
993
1088
|
contentFit?: undefined;
|
|
994
1089
|
keyboardVerticalOffset?: undefined;
|
|
1090
|
+
mode?: undefined;
|
|
995
1091
|
horizontal?: undefined;
|
|
996
1092
|
showsHorizontalScrollIndicator?: undefined;
|
|
997
1093
|
contentContainerPadding?: undefined;
|
|
998
|
-
mode?: undefined;
|
|
999
1094
|
fontWeight?: undefined;
|
|
1000
1095
|
fontFamily?: undefined;
|
|
1001
1096
|
fontStyle?: undefined;
|
|
1002
1097
|
variableName?: undefined;
|
|
1003
1098
|
defaultValue?: undefined;
|
|
1099
|
+
showTick?: undefined;
|
|
1004
1100
|
gap?: undefined;
|
|
1005
1101
|
items?: undefined;
|
|
1006
1102
|
defaultValues?: undefined;
|
|
1007
1103
|
display?: undefined;
|
|
1008
1104
|
maximumDate?: undefined;
|
|
1105
|
+
range?: undefined;
|
|
1009
1106
|
carouselType?: undefined;
|
|
1010
1107
|
showDots?: undefined;
|
|
1011
1108
|
defaultIndex?: undefined;
|
|
@@ -1034,6 +1131,7 @@ export declare const onboardingExample: {
|
|
|
1034
1131
|
props: {
|
|
1035
1132
|
variableName: string;
|
|
1036
1133
|
defaultValue: string;
|
|
1134
|
+
showTick: boolean;
|
|
1037
1135
|
gap: number;
|
|
1038
1136
|
marginVertical: number;
|
|
1039
1137
|
items: {
|
|
@@ -1059,21 +1157,22 @@ export declare const onboardingExample: {
|
|
|
1059
1157
|
muted?: undefined;
|
|
1060
1158
|
contentFit?: undefined;
|
|
1061
1159
|
keyboardVerticalOffset?: undefined;
|
|
1062
|
-
horizontal?: undefined;
|
|
1063
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1064
|
-
contentContainerPadding?: undefined;
|
|
1065
1160
|
content?: undefined;
|
|
1066
1161
|
mode?: undefined;
|
|
1067
1162
|
fontSize?: undefined;
|
|
1068
|
-
fontWeight?: undefined;
|
|
1069
1163
|
textAlign?: undefined;
|
|
1164
|
+
opacity?: undefined;
|
|
1165
|
+
horizontal?: undefined;
|
|
1166
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1167
|
+
contentContainerPadding?: undefined;
|
|
1168
|
+
fontWeight?: undefined;
|
|
1070
1169
|
fontFamily?: undefined;
|
|
1071
1170
|
fontStyle?: undefined;
|
|
1072
|
-
opacity?: undefined;
|
|
1073
1171
|
lineHeight?: undefined;
|
|
1074
1172
|
defaultValues?: undefined;
|
|
1075
1173
|
display?: undefined;
|
|
1076
1174
|
maximumDate?: undefined;
|
|
1175
|
+
range?: undefined;
|
|
1077
1176
|
carouselType?: undefined;
|
|
1078
1177
|
showDots?: undefined;
|
|
1079
1178
|
defaultIndex?: undefined;
|
|
@@ -1134,11 +1233,13 @@ export declare const onboardingExample: {
|
|
|
1134
1233
|
lineHeight?: undefined;
|
|
1135
1234
|
variableName?: undefined;
|
|
1136
1235
|
defaultValue?: undefined;
|
|
1236
|
+
showTick?: undefined;
|
|
1137
1237
|
gap?: undefined;
|
|
1138
1238
|
items?: undefined;
|
|
1139
1239
|
defaultValues?: undefined;
|
|
1140
1240
|
display?: undefined;
|
|
1141
1241
|
maximumDate?: undefined;
|
|
1242
|
+
range?: undefined;
|
|
1142
1243
|
carouselType?: undefined;
|
|
1143
1244
|
showDots?: undefined;
|
|
1144
1245
|
defaultIndex?: undefined;
|
|
@@ -1194,21 +1295,23 @@ export declare const onboardingExample: {
|
|
|
1194
1295
|
muted?: undefined;
|
|
1195
1296
|
contentFit?: undefined;
|
|
1196
1297
|
keyboardVerticalOffset?: undefined;
|
|
1298
|
+
mode?: undefined;
|
|
1299
|
+
opacity?: undefined;
|
|
1197
1300
|
horizontal?: undefined;
|
|
1198
1301
|
showsHorizontalScrollIndicator?: undefined;
|
|
1199
1302
|
contentContainerPadding?: undefined;
|
|
1200
|
-
mode?: undefined;
|
|
1201
1303
|
fontFamily?: undefined;
|
|
1202
1304
|
fontStyle?: undefined;
|
|
1203
|
-
opacity?: undefined;
|
|
1204
1305
|
lineHeight?: undefined;
|
|
1205
1306
|
variableName?: undefined;
|
|
1206
1307
|
defaultValue?: undefined;
|
|
1308
|
+
showTick?: undefined;
|
|
1207
1309
|
gap?: undefined;
|
|
1208
1310
|
items?: undefined;
|
|
1209
1311
|
defaultValues?: undefined;
|
|
1210
1312
|
display?: undefined;
|
|
1211
1313
|
maximumDate?: undefined;
|
|
1314
|
+
range?: undefined;
|
|
1212
1315
|
carouselType?: undefined;
|
|
1213
1316
|
showDots?: undefined;
|
|
1214
1317
|
defaultIndex?: undefined;
|
|
@@ -1236,6 +1339,7 @@ export declare const onboardingExample: {
|
|
|
1236
1339
|
props: {
|
|
1237
1340
|
variableName: string;
|
|
1238
1341
|
defaultValues: string[];
|
|
1342
|
+
showTick: boolean;
|
|
1239
1343
|
gap: number;
|
|
1240
1344
|
marginVertical: number;
|
|
1241
1345
|
items: {
|
|
@@ -1261,21 +1365,22 @@ export declare const onboardingExample: {
|
|
|
1261
1365
|
muted?: undefined;
|
|
1262
1366
|
contentFit?: undefined;
|
|
1263
1367
|
keyboardVerticalOffset?: undefined;
|
|
1264
|
-
horizontal?: undefined;
|
|
1265
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1266
|
-
contentContainerPadding?: undefined;
|
|
1267
1368
|
content?: undefined;
|
|
1268
1369
|
mode?: undefined;
|
|
1269
1370
|
fontSize?: undefined;
|
|
1270
|
-
fontWeight?: undefined;
|
|
1271
1371
|
textAlign?: undefined;
|
|
1372
|
+
opacity?: undefined;
|
|
1373
|
+
horizontal?: undefined;
|
|
1374
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1375
|
+
contentContainerPadding?: undefined;
|
|
1376
|
+
fontWeight?: undefined;
|
|
1272
1377
|
fontFamily?: undefined;
|
|
1273
1378
|
fontStyle?: undefined;
|
|
1274
|
-
opacity?: undefined;
|
|
1275
1379
|
lineHeight?: undefined;
|
|
1276
1380
|
defaultValue?: undefined;
|
|
1277
1381
|
display?: undefined;
|
|
1278
1382
|
maximumDate?: undefined;
|
|
1383
|
+
range?: undefined;
|
|
1279
1384
|
carouselType?: undefined;
|
|
1280
1385
|
showDots?: undefined;
|
|
1281
1386
|
defaultIndex?: undefined;
|
|
@@ -1327,20 +1432,94 @@ export declare const onboardingExample: {
|
|
|
1327
1432
|
muted?: undefined;
|
|
1328
1433
|
contentFit?: undefined;
|
|
1329
1434
|
keyboardVerticalOffset?: undefined;
|
|
1435
|
+
content?: undefined;
|
|
1436
|
+
fontSize?: undefined;
|
|
1437
|
+
textAlign?: undefined;
|
|
1438
|
+
opacity?: undefined;
|
|
1330
1439
|
horizontal?: undefined;
|
|
1331
1440
|
showsHorizontalScrollIndicator?: undefined;
|
|
1332
1441
|
contentContainerPadding?: undefined;
|
|
1442
|
+
fontWeight?: undefined;
|
|
1443
|
+
fontFamily?: undefined;
|
|
1444
|
+
fontStyle?: undefined;
|
|
1445
|
+
lineHeight?: undefined;
|
|
1446
|
+
showTick?: undefined;
|
|
1447
|
+
gap?: undefined;
|
|
1448
|
+
items?: undefined;
|
|
1449
|
+
defaultValues?: undefined;
|
|
1450
|
+
range?: undefined;
|
|
1451
|
+
carouselType?: undefined;
|
|
1452
|
+
showDots?: undefined;
|
|
1453
|
+
defaultIndex?: undefined;
|
|
1454
|
+
overflow?: undefined;
|
|
1455
|
+
label?: undefined;
|
|
1456
|
+
variant?: undefined;
|
|
1457
|
+
actions?: undefined;
|
|
1458
|
+
padding?: undefined;
|
|
1459
|
+
backgroundGradient?: undefined;
|
|
1460
|
+
backgroundColor?: undefined;
|
|
1461
|
+
shadowColor?: undefined;
|
|
1462
|
+
shadowOffset?: undefined;
|
|
1463
|
+
shadowOpacity?: undefined;
|
|
1464
|
+
shadowRadius?: undefined;
|
|
1465
|
+
elevation?: undefined;
|
|
1466
|
+
transitionDurationMs?: undefined;
|
|
1467
|
+
pressedStyle?: undefined;
|
|
1468
|
+
disabledWhen?: undefined;
|
|
1469
|
+
disabledStyle?: undefined;
|
|
1470
|
+
};
|
|
1471
|
+
children?: undefined;
|
|
1472
|
+
renderWhen?: undefined;
|
|
1473
|
+
} | {
|
|
1474
|
+
id: string;
|
|
1475
|
+
type: string;
|
|
1476
|
+
props: {
|
|
1477
|
+
variableName: string;
|
|
1478
|
+
defaultValue: string;
|
|
1479
|
+
range: {
|
|
1480
|
+
min: number;
|
|
1481
|
+
max: number;
|
|
1482
|
+
step: number;
|
|
1483
|
+
unit: string;
|
|
1484
|
+
};
|
|
1485
|
+
height: number;
|
|
1486
|
+
marginVertical: number;
|
|
1487
|
+
source?: undefined;
|
|
1488
|
+
autoPlay?: undefined;
|
|
1489
|
+
loop?: undefined;
|
|
1490
|
+
url?: undefined;
|
|
1491
|
+
width?: undefined;
|
|
1492
|
+
aspectRatio?: undefined;
|
|
1493
|
+
fit?: undefined;
|
|
1494
|
+
resizeMode?: undefined;
|
|
1495
|
+
borderRadius?: undefined;
|
|
1496
|
+
name?: undefined;
|
|
1497
|
+
size?: undefined;
|
|
1498
|
+
color?: undefined;
|
|
1499
|
+
fill?: undefined;
|
|
1500
|
+
fillOpacity?: undefined;
|
|
1501
|
+
controls?: undefined;
|
|
1502
|
+
muted?: undefined;
|
|
1503
|
+
contentFit?: undefined;
|
|
1504
|
+
keyboardVerticalOffset?: undefined;
|
|
1333
1505
|
content?: undefined;
|
|
1506
|
+
mode?: undefined;
|
|
1334
1507
|
fontSize?: undefined;
|
|
1335
|
-
fontWeight?: undefined;
|
|
1336
1508
|
textAlign?: undefined;
|
|
1509
|
+
opacity?: undefined;
|
|
1510
|
+
horizontal?: undefined;
|
|
1511
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1512
|
+
contentContainerPadding?: undefined;
|
|
1513
|
+
fontWeight?: undefined;
|
|
1337
1514
|
fontFamily?: undefined;
|
|
1338
1515
|
fontStyle?: undefined;
|
|
1339
|
-
opacity?: undefined;
|
|
1340
1516
|
lineHeight?: undefined;
|
|
1517
|
+
showTick?: undefined;
|
|
1341
1518
|
gap?: undefined;
|
|
1342
1519
|
items?: undefined;
|
|
1343
1520
|
defaultValues?: undefined;
|
|
1521
|
+
display?: undefined;
|
|
1522
|
+
maximumDate?: undefined;
|
|
1344
1523
|
carouselType?: undefined;
|
|
1345
1524
|
showDots?: undefined;
|
|
1346
1525
|
defaultIndex?: undefined;
|
|
@@ -1391,24 +1570,26 @@ export declare const onboardingExample: {
|
|
|
1391
1570
|
muted?: undefined;
|
|
1392
1571
|
contentFit?: undefined;
|
|
1393
1572
|
keyboardVerticalOffset?: undefined;
|
|
1394
|
-
horizontal?: undefined;
|
|
1395
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1396
|
-
contentContainerPadding?: undefined;
|
|
1397
1573
|
content?: undefined;
|
|
1398
1574
|
mode?: undefined;
|
|
1399
1575
|
fontSize?: undefined;
|
|
1400
|
-
fontWeight?: undefined;
|
|
1401
1576
|
textAlign?: undefined;
|
|
1577
|
+
opacity?: undefined;
|
|
1578
|
+
horizontal?: undefined;
|
|
1579
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1580
|
+
contentContainerPadding?: undefined;
|
|
1581
|
+
fontWeight?: undefined;
|
|
1402
1582
|
fontFamily?: undefined;
|
|
1403
1583
|
fontStyle?: undefined;
|
|
1404
|
-
opacity?: undefined;
|
|
1405
1584
|
lineHeight?: undefined;
|
|
1406
1585
|
defaultValue?: undefined;
|
|
1586
|
+
showTick?: undefined;
|
|
1407
1587
|
gap?: undefined;
|
|
1408
1588
|
items?: undefined;
|
|
1409
1589
|
defaultValues?: undefined;
|
|
1410
1590
|
display?: undefined;
|
|
1411
1591
|
maximumDate?: undefined;
|
|
1592
|
+
range?: undefined;
|
|
1412
1593
|
overflow?: undefined;
|
|
1413
1594
|
label?: undefined;
|
|
1414
1595
|
variant?: undefined;
|
|
@@ -1461,24 +1642,26 @@ export declare const onboardingExample: {
|
|
|
1461
1642
|
muted?: undefined;
|
|
1462
1643
|
contentFit?: undefined;
|
|
1463
1644
|
keyboardVerticalOffset?: undefined;
|
|
1464
|
-
horizontal?: undefined;
|
|
1465
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1466
|
-
contentContainerPadding?: undefined;
|
|
1467
1645
|
content?: undefined;
|
|
1468
1646
|
mode?: undefined;
|
|
1469
1647
|
fontSize?: undefined;
|
|
1470
|
-
fontWeight?: undefined;
|
|
1471
1648
|
textAlign?: undefined;
|
|
1649
|
+
opacity?: undefined;
|
|
1650
|
+
horizontal?: undefined;
|
|
1651
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1652
|
+
contentContainerPadding?: undefined;
|
|
1653
|
+
fontWeight?: undefined;
|
|
1472
1654
|
fontFamily?: undefined;
|
|
1473
1655
|
fontStyle?: undefined;
|
|
1474
|
-
opacity?: undefined;
|
|
1475
1656
|
lineHeight?: undefined;
|
|
1476
1657
|
variableName?: undefined;
|
|
1477
1658
|
defaultValue?: undefined;
|
|
1659
|
+
showTick?: undefined;
|
|
1478
1660
|
items?: undefined;
|
|
1479
1661
|
defaultValues?: undefined;
|
|
1480
1662
|
display?: undefined;
|
|
1481
1663
|
maximumDate?: undefined;
|
|
1664
|
+
range?: undefined;
|
|
1482
1665
|
carouselType?: undefined;
|
|
1483
1666
|
showDots?: undefined;
|
|
1484
1667
|
defaultIndex?: undefined;
|
|
@@ -1540,25 +1723,27 @@ export declare const onboardingExample: {
|
|
|
1540
1723
|
muted?: undefined;
|
|
1541
1724
|
contentFit?: undefined;
|
|
1542
1725
|
keyboardVerticalOffset?: undefined;
|
|
1543
|
-
horizontal?: undefined;
|
|
1544
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1545
|
-
contentContainerPadding?: undefined;
|
|
1546
1726
|
content?: undefined;
|
|
1547
1727
|
mode?: undefined;
|
|
1548
1728
|
fontSize?: undefined;
|
|
1549
|
-
fontWeight?: undefined;
|
|
1550
1729
|
textAlign?: undefined;
|
|
1730
|
+
opacity?: undefined;
|
|
1731
|
+
horizontal?: undefined;
|
|
1732
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1733
|
+
contentContainerPadding?: undefined;
|
|
1734
|
+
fontWeight?: undefined;
|
|
1551
1735
|
fontFamily?: undefined;
|
|
1552
1736
|
fontStyle?: undefined;
|
|
1553
|
-
opacity?: undefined;
|
|
1554
1737
|
lineHeight?: undefined;
|
|
1555
1738
|
variableName?: undefined;
|
|
1556
1739
|
defaultValue?: undefined;
|
|
1740
|
+
showTick?: undefined;
|
|
1557
1741
|
gap?: undefined;
|
|
1558
1742
|
items?: undefined;
|
|
1559
1743
|
defaultValues?: undefined;
|
|
1560
1744
|
display?: undefined;
|
|
1561
1745
|
maximumDate?: undefined;
|
|
1746
|
+
range?: undefined;
|
|
1562
1747
|
carouselType?: undefined;
|
|
1563
1748
|
showDots?: undefined;
|
|
1564
1749
|
defaultIndex?: undefined;
|
|
@@ -1646,25 +1831,27 @@ export declare const onboardingExample: {
|
|
|
1646
1831
|
muted?: undefined;
|
|
1647
1832
|
contentFit?: undefined;
|
|
1648
1833
|
keyboardVerticalOffset?: undefined;
|
|
1649
|
-
horizontal?: undefined;
|
|
1650
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1651
|
-
contentContainerPadding?: undefined;
|
|
1652
1834
|
content?: undefined;
|
|
1653
1835
|
mode?: undefined;
|
|
1654
1836
|
fontSize?: undefined;
|
|
1655
|
-
fontWeight?: undefined;
|
|
1656
1837
|
textAlign?: undefined;
|
|
1838
|
+
opacity?: undefined;
|
|
1839
|
+
horizontal?: undefined;
|
|
1840
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1841
|
+
contentContainerPadding?: undefined;
|
|
1842
|
+
fontWeight?: undefined;
|
|
1657
1843
|
fontFamily?: undefined;
|
|
1658
1844
|
fontStyle?: undefined;
|
|
1659
|
-
opacity?: undefined;
|
|
1660
1845
|
lineHeight?: undefined;
|
|
1661
1846
|
variableName?: undefined;
|
|
1662
1847
|
defaultValue?: undefined;
|
|
1848
|
+
showTick?: undefined;
|
|
1663
1849
|
gap?: undefined;
|
|
1664
1850
|
items?: undefined;
|
|
1665
1851
|
defaultValues?: undefined;
|
|
1666
1852
|
display?: undefined;
|
|
1667
1853
|
maximumDate?: undefined;
|
|
1854
|
+
range?: undefined;
|
|
1668
1855
|
carouselType?: undefined;
|
|
1669
1856
|
showDots?: undefined;
|
|
1670
1857
|
defaultIndex?: undefined;
|
|
@@ -1719,24 +1906,26 @@ export declare const onboardingExample: {
|
|
|
1719
1906
|
muted?: undefined;
|
|
1720
1907
|
contentFit?: undefined;
|
|
1721
1908
|
keyboardVerticalOffset?: undefined;
|
|
1722
|
-
horizontal?: undefined;
|
|
1723
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1724
|
-
contentContainerPadding?: undefined;
|
|
1725
1909
|
content?: undefined;
|
|
1726
1910
|
mode?: undefined;
|
|
1727
1911
|
fontSize?: undefined;
|
|
1728
|
-
fontWeight?: undefined;
|
|
1729
1912
|
textAlign?: undefined;
|
|
1913
|
+
opacity?: undefined;
|
|
1914
|
+
horizontal?: undefined;
|
|
1915
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1916
|
+
contentContainerPadding?: undefined;
|
|
1917
|
+
fontWeight?: undefined;
|
|
1730
1918
|
fontFamily?: undefined;
|
|
1731
1919
|
fontStyle?: undefined;
|
|
1732
|
-
opacity?: undefined;
|
|
1733
1920
|
lineHeight?: undefined;
|
|
1734
1921
|
variableName?: undefined;
|
|
1735
1922
|
defaultValue?: undefined;
|
|
1923
|
+
showTick?: undefined;
|
|
1736
1924
|
items?: undefined;
|
|
1737
1925
|
defaultValues?: undefined;
|
|
1738
1926
|
display?: undefined;
|
|
1739
1927
|
maximumDate?: undefined;
|
|
1928
|
+
range?: undefined;
|
|
1740
1929
|
carouselType?: undefined;
|
|
1741
1930
|
showDots?: undefined;
|
|
1742
1931
|
defaultIndex?: undefined;
|
|
@@ -1811,25 +2000,27 @@ export declare const onboardingExample: {
|
|
|
1811
2000
|
muted?: undefined;
|
|
1812
2001
|
contentFit?: undefined;
|
|
1813
2002
|
keyboardVerticalOffset?: undefined;
|
|
1814
|
-
horizontal?: undefined;
|
|
1815
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1816
|
-
contentContainerPadding?: undefined;
|
|
1817
2003
|
content?: undefined;
|
|
1818
2004
|
mode?: undefined;
|
|
1819
2005
|
fontSize?: undefined;
|
|
1820
|
-
fontWeight?: undefined;
|
|
1821
2006
|
textAlign?: undefined;
|
|
2007
|
+
opacity?: undefined;
|
|
2008
|
+
horizontal?: undefined;
|
|
2009
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2010
|
+
contentContainerPadding?: undefined;
|
|
2011
|
+
fontWeight?: undefined;
|
|
1822
2012
|
fontFamily?: undefined;
|
|
1823
2013
|
fontStyle?: undefined;
|
|
1824
|
-
opacity?: undefined;
|
|
1825
2014
|
lineHeight?: undefined;
|
|
1826
2015
|
variableName?: undefined;
|
|
1827
2016
|
defaultValue?: undefined;
|
|
2017
|
+
showTick?: undefined;
|
|
1828
2018
|
gap?: undefined;
|
|
1829
2019
|
items?: undefined;
|
|
1830
2020
|
defaultValues?: undefined;
|
|
1831
2021
|
display?: undefined;
|
|
1832
2022
|
maximumDate?: undefined;
|
|
2023
|
+
range?: undefined;
|
|
1833
2024
|
carouselType?: undefined;
|
|
1834
2025
|
showDots?: undefined;
|
|
1835
2026
|
defaultIndex?: undefined;
|
|
@@ -1877,21 +2068,23 @@ export declare const onboardingExample: {
|
|
|
1877
2068
|
muted?: undefined;
|
|
1878
2069
|
contentFit?: undefined;
|
|
1879
2070
|
keyboardVerticalOffset?: undefined;
|
|
2071
|
+
mode?: undefined;
|
|
2072
|
+
textAlign?: undefined;
|
|
1880
2073
|
horizontal?: undefined;
|
|
1881
2074
|
showsHorizontalScrollIndicator?: undefined;
|
|
1882
2075
|
contentContainerPadding?: undefined;
|
|
1883
|
-
mode?: undefined;
|
|
1884
|
-
textAlign?: undefined;
|
|
1885
2076
|
fontFamily?: undefined;
|
|
1886
2077
|
fontStyle?: undefined;
|
|
1887
2078
|
lineHeight?: undefined;
|
|
1888
2079
|
variableName?: undefined;
|
|
1889
2080
|
defaultValue?: undefined;
|
|
2081
|
+
showTick?: undefined;
|
|
1890
2082
|
gap?: undefined;
|
|
1891
2083
|
items?: undefined;
|
|
1892
2084
|
defaultValues?: undefined;
|
|
1893
2085
|
display?: undefined;
|
|
1894
2086
|
maximumDate?: undefined;
|
|
2087
|
+
range?: undefined;
|
|
1895
2088
|
carouselType?: undefined;
|
|
1896
2089
|
showDots?: undefined;
|
|
1897
2090
|
defaultIndex?: undefined;
|
|
@@ -1949,25 +2142,27 @@ export declare const onboardingExample: {
|
|
|
1949
2142
|
muted?: undefined;
|
|
1950
2143
|
contentFit?: undefined;
|
|
1951
2144
|
keyboardVerticalOffset?: undefined;
|
|
1952
|
-
horizontal?: undefined;
|
|
1953
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
1954
|
-
contentContainerPadding?: undefined;
|
|
1955
2145
|
content?: undefined;
|
|
1956
2146
|
mode?: undefined;
|
|
1957
2147
|
fontSize?: undefined;
|
|
1958
|
-
fontWeight?: undefined;
|
|
1959
2148
|
textAlign?: undefined;
|
|
2149
|
+
opacity?: undefined;
|
|
2150
|
+
horizontal?: undefined;
|
|
2151
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2152
|
+
contentContainerPadding?: undefined;
|
|
2153
|
+
fontWeight?: undefined;
|
|
1960
2154
|
fontFamily?: undefined;
|
|
1961
2155
|
fontStyle?: undefined;
|
|
1962
|
-
opacity?: undefined;
|
|
1963
2156
|
lineHeight?: undefined;
|
|
1964
2157
|
variableName?: undefined;
|
|
1965
2158
|
defaultValue?: undefined;
|
|
2159
|
+
showTick?: undefined;
|
|
1966
2160
|
gap?: undefined;
|
|
1967
2161
|
items?: undefined;
|
|
1968
2162
|
defaultValues?: undefined;
|
|
1969
2163
|
display?: undefined;
|
|
1970
2164
|
maximumDate?: undefined;
|
|
2165
|
+
range?: undefined;
|
|
1971
2166
|
carouselType?: undefined;
|
|
1972
2167
|
showDots?: undefined;
|
|
1973
2168
|
defaultIndex?: undefined;
|
|
@@ -2014,25 +2209,27 @@ export declare const onboardingExample: {
|
|
|
2014
2209
|
muted?: undefined;
|
|
2015
2210
|
contentFit?: undefined;
|
|
2016
2211
|
keyboardVerticalOffset?: undefined;
|
|
2017
|
-
horizontal?: undefined;
|
|
2018
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2019
|
-
contentContainerPadding?: undefined;
|
|
2020
2212
|
content?: undefined;
|
|
2021
2213
|
mode?: undefined;
|
|
2022
2214
|
fontSize?: undefined;
|
|
2023
|
-
fontWeight?: undefined;
|
|
2024
2215
|
textAlign?: undefined;
|
|
2216
|
+
opacity?: undefined;
|
|
2217
|
+
horizontal?: undefined;
|
|
2218
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2219
|
+
contentContainerPadding?: undefined;
|
|
2220
|
+
fontWeight?: undefined;
|
|
2025
2221
|
fontFamily?: undefined;
|
|
2026
2222
|
fontStyle?: undefined;
|
|
2027
|
-
opacity?: undefined;
|
|
2028
2223
|
lineHeight?: undefined;
|
|
2029
2224
|
variableName?: undefined;
|
|
2030
2225
|
defaultValue?: undefined;
|
|
2226
|
+
showTick?: undefined;
|
|
2031
2227
|
gap?: undefined;
|
|
2032
2228
|
items?: undefined;
|
|
2033
2229
|
defaultValues?: undefined;
|
|
2034
2230
|
display?: undefined;
|
|
2035
2231
|
maximumDate?: undefined;
|
|
2232
|
+
range?: undefined;
|
|
2036
2233
|
carouselType?: undefined;
|
|
2037
2234
|
showDots?: undefined;
|
|
2038
2235
|
defaultIndex?: undefined;
|
|
@@ -2089,25 +2286,27 @@ export declare const onboardingExample: {
|
|
|
2089
2286
|
muted?: undefined;
|
|
2090
2287
|
contentFit?: undefined;
|
|
2091
2288
|
keyboardVerticalOffset?: undefined;
|
|
2092
|
-
horizontal?: undefined;
|
|
2093
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2094
|
-
contentContainerPadding?: undefined;
|
|
2095
2289
|
content?: undefined;
|
|
2096
2290
|
mode?: undefined;
|
|
2097
2291
|
fontSize?: undefined;
|
|
2098
|
-
fontWeight?: undefined;
|
|
2099
2292
|
textAlign?: undefined;
|
|
2293
|
+
opacity?: undefined;
|
|
2294
|
+
horizontal?: undefined;
|
|
2295
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2296
|
+
contentContainerPadding?: undefined;
|
|
2297
|
+
fontWeight?: undefined;
|
|
2100
2298
|
fontFamily?: undefined;
|
|
2101
2299
|
fontStyle?: undefined;
|
|
2102
|
-
opacity?: undefined;
|
|
2103
2300
|
lineHeight?: undefined;
|
|
2104
2301
|
variableName?: undefined;
|
|
2105
2302
|
defaultValue?: undefined;
|
|
2303
|
+
showTick?: undefined;
|
|
2106
2304
|
gap?: undefined;
|
|
2107
2305
|
items?: undefined;
|
|
2108
2306
|
defaultValues?: undefined;
|
|
2109
2307
|
display?: undefined;
|
|
2110
2308
|
maximumDate?: undefined;
|
|
2309
|
+
range?: undefined;
|
|
2111
2310
|
carouselType?: undefined;
|
|
2112
2311
|
showDots?: undefined;
|
|
2113
2312
|
defaultIndex?: undefined;
|
|
@@ -2157,25 +2356,27 @@ export declare const onboardingExample: {
|
|
|
2157
2356
|
muted?: undefined;
|
|
2158
2357
|
contentFit?: undefined;
|
|
2159
2358
|
keyboardVerticalOffset?: undefined;
|
|
2160
|
-
horizontal?: undefined;
|
|
2161
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2162
|
-
contentContainerPadding?: undefined;
|
|
2163
2359
|
content?: undefined;
|
|
2164
2360
|
mode?: undefined;
|
|
2165
2361
|
fontSize?: undefined;
|
|
2166
|
-
fontWeight?: undefined;
|
|
2167
2362
|
textAlign?: undefined;
|
|
2363
|
+
opacity?: undefined;
|
|
2364
|
+
horizontal?: undefined;
|
|
2365
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2366
|
+
contentContainerPadding?: undefined;
|
|
2367
|
+
fontWeight?: undefined;
|
|
2168
2368
|
fontFamily?: undefined;
|
|
2169
2369
|
fontStyle?: undefined;
|
|
2170
|
-
opacity?: undefined;
|
|
2171
2370
|
lineHeight?: undefined;
|
|
2172
2371
|
variableName?: undefined;
|
|
2173
2372
|
defaultValue?: undefined;
|
|
2373
|
+
showTick?: undefined;
|
|
2174
2374
|
gap?: undefined;
|
|
2175
2375
|
items?: undefined;
|
|
2176
2376
|
defaultValues?: undefined;
|
|
2177
2377
|
display?: undefined;
|
|
2178
2378
|
maximumDate?: undefined;
|
|
2379
|
+
range?: undefined;
|
|
2179
2380
|
carouselType?: undefined;
|
|
2180
2381
|
showDots?: undefined;
|
|
2181
2382
|
defaultIndex?: undefined;
|
|
@@ -2247,25 +2448,27 @@ export declare const onboardingExample: {
|
|
|
2247
2448
|
muted?: undefined;
|
|
2248
2449
|
contentFit?: undefined;
|
|
2249
2450
|
keyboardVerticalOffset?: undefined;
|
|
2250
|
-
horizontal?: undefined;
|
|
2251
|
-
showsHorizontalScrollIndicator?: undefined;
|
|
2252
|
-
contentContainerPadding?: undefined;
|
|
2253
2451
|
content?: undefined;
|
|
2254
2452
|
mode?: undefined;
|
|
2255
2453
|
fontSize?: undefined;
|
|
2256
|
-
fontWeight?: undefined;
|
|
2257
2454
|
textAlign?: undefined;
|
|
2455
|
+
opacity?: undefined;
|
|
2456
|
+
horizontal?: undefined;
|
|
2457
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2458
|
+
contentContainerPadding?: undefined;
|
|
2459
|
+
fontWeight?: undefined;
|
|
2258
2460
|
fontFamily?: undefined;
|
|
2259
2461
|
fontStyle?: undefined;
|
|
2260
|
-
opacity?: undefined;
|
|
2261
2462
|
lineHeight?: undefined;
|
|
2262
2463
|
variableName?: undefined;
|
|
2263
2464
|
defaultValue?: undefined;
|
|
2465
|
+
showTick?: undefined;
|
|
2264
2466
|
gap?: undefined;
|
|
2265
2467
|
items?: undefined;
|
|
2266
2468
|
defaultValues?: undefined;
|
|
2267
2469
|
display?: undefined;
|
|
2268
2470
|
maximumDate?: undefined;
|
|
2471
|
+
range?: undefined;
|
|
2269
2472
|
carouselType?: undefined;
|
|
2270
2473
|
showDots?: undefined;
|
|
2271
2474
|
defaultIndex?: undefined;
|