@rocapine/react-native-onboarding 1.12.0 → 1.14.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/onboarding-example.d.ts +274 -0
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +94 -0
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +67 -0
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +15 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +28 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts +28 -1
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts +27 -0
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts +28 -1
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +33 -0
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/VideoElement.js +1 -0
- package/dist/steps/ComposableScreen/elements/VideoElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts +66 -0
- package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/ZStackElement.js +6 -0
- package/dist/steps/ComposableScreen/elements/ZStackElement.js.map +1 -0
- package/dist/steps/ComposableScreen/types.d.ts +10 -2
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +10 -1
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/package.json +1 -1
- package/src/onboarding-example.ts +94 -0
- package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +42 -0
- package/src/steps/ComposableScreen/elements/VideoElement.ts +2 -0
- package/src/steps/ComposableScreen/elements/ZStackElement.ts +6 -0
- package/src/steps/ComposableScreen/types.ts +18 -2
|
@@ -150,6 +150,7 @@ export declare const onboardingExample: {
|
|
|
150
150
|
marginVertical?: undefined;
|
|
151
151
|
controls?: undefined;
|
|
152
152
|
muted?: undefined;
|
|
153
|
+
contentFit?: undefined;
|
|
153
154
|
variableName?: undefined;
|
|
154
155
|
placeholder?: undefined;
|
|
155
156
|
keyboardType?: undefined;
|
|
@@ -172,8 +173,11 @@ export declare const onboardingExample: {
|
|
|
172
173
|
carouselType?: undefined;
|
|
173
174
|
autoPlayInterval?: undefined;
|
|
174
175
|
showDots?: undefined;
|
|
176
|
+
overflow?: undefined;
|
|
175
177
|
label?: undefined;
|
|
176
178
|
variant?: undefined;
|
|
179
|
+
padding?: undefined;
|
|
180
|
+
backgroundGradient?: undefined;
|
|
177
181
|
};
|
|
178
182
|
children?: undefined;
|
|
179
183
|
} | {
|
|
@@ -194,6 +198,7 @@ export declare const onboardingExample: {
|
|
|
194
198
|
marginVertical?: undefined;
|
|
195
199
|
controls?: undefined;
|
|
196
200
|
muted?: undefined;
|
|
201
|
+
contentFit?: undefined;
|
|
197
202
|
variableName?: undefined;
|
|
198
203
|
placeholder?: undefined;
|
|
199
204
|
keyboardType?: undefined;
|
|
@@ -216,8 +221,11 @@ export declare const onboardingExample: {
|
|
|
216
221
|
carouselType?: undefined;
|
|
217
222
|
autoPlayInterval?: undefined;
|
|
218
223
|
showDots?: undefined;
|
|
224
|
+
overflow?: undefined;
|
|
219
225
|
label?: undefined;
|
|
220
226
|
variant?: undefined;
|
|
227
|
+
padding?: undefined;
|
|
228
|
+
backgroundGradient?: undefined;
|
|
221
229
|
};
|
|
222
230
|
children?: undefined;
|
|
223
231
|
} | {
|
|
@@ -238,6 +246,7 @@ export declare const onboardingExample: {
|
|
|
238
246
|
marginVertical?: undefined;
|
|
239
247
|
controls?: undefined;
|
|
240
248
|
muted?: undefined;
|
|
249
|
+
contentFit?: undefined;
|
|
241
250
|
variableName?: undefined;
|
|
242
251
|
placeholder?: undefined;
|
|
243
252
|
keyboardType?: undefined;
|
|
@@ -260,8 +269,11 @@ export declare const onboardingExample: {
|
|
|
260
269
|
carouselType?: undefined;
|
|
261
270
|
autoPlayInterval?: undefined;
|
|
262
271
|
showDots?: undefined;
|
|
272
|
+
overflow?: undefined;
|
|
263
273
|
label?: undefined;
|
|
264
274
|
variant?: undefined;
|
|
275
|
+
padding?: undefined;
|
|
276
|
+
backgroundGradient?: undefined;
|
|
265
277
|
};
|
|
266
278
|
children?: undefined;
|
|
267
279
|
} | {
|
|
@@ -282,6 +294,7 @@ export declare const onboardingExample: {
|
|
|
282
294
|
borderRadius?: undefined;
|
|
283
295
|
controls?: undefined;
|
|
284
296
|
muted?: undefined;
|
|
297
|
+
contentFit?: undefined;
|
|
285
298
|
variableName?: undefined;
|
|
286
299
|
placeholder?: undefined;
|
|
287
300
|
keyboardType?: undefined;
|
|
@@ -304,8 +317,11 @@ export declare const onboardingExample: {
|
|
|
304
317
|
carouselType?: undefined;
|
|
305
318
|
autoPlayInterval?: undefined;
|
|
306
319
|
showDots?: undefined;
|
|
320
|
+
overflow?: undefined;
|
|
307
321
|
label?: undefined;
|
|
308
322
|
variant?: undefined;
|
|
323
|
+
padding?: undefined;
|
|
324
|
+
backgroundGradient?: undefined;
|
|
309
325
|
};
|
|
310
326
|
children?: undefined;
|
|
311
327
|
} | {
|
|
@@ -317,6 +333,7 @@ export declare const onboardingExample: {
|
|
|
317
333
|
borderRadius: number;
|
|
318
334
|
controls: boolean;
|
|
319
335
|
muted: boolean;
|
|
336
|
+
contentFit: string;
|
|
320
337
|
source?: undefined;
|
|
321
338
|
autoPlay?: undefined;
|
|
322
339
|
loop?: undefined;
|
|
@@ -348,8 +365,11 @@ export declare const onboardingExample: {
|
|
|
348
365
|
carouselType?: undefined;
|
|
349
366
|
autoPlayInterval?: undefined;
|
|
350
367
|
showDots?: undefined;
|
|
368
|
+
overflow?: undefined;
|
|
351
369
|
label?: undefined;
|
|
352
370
|
variant?: undefined;
|
|
371
|
+
padding?: undefined;
|
|
372
|
+
backgroundGradient?: undefined;
|
|
353
373
|
};
|
|
354
374
|
children?: undefined;
|
|
355
375
|
} | {
|
|
@@ -375,6 +395,7 @@ export declare const onboardingExample: {
|
|
|
375
395
|
color?: undefined;
|
|
376
396
|
controls?: undefined;
|
|
377
397
|
muted?: undefined;
|
|
398
|
+
contentFit?: undefined;
|
|
378
399
|
content?: undefined;
|
|
379
400
|
mode?: undefined;
|
|
380
401
|
fontSize?: undefined;
|
|
@@ -392,8 +413,11 @@ export declare const onboardingExample: {
|
|
|
392
413
|
carouselType?: undefined;
|
|
393
414
|
autoPlayInterval?: undefined;
|
|
394
415
|
showDots?: undefined;
|
|
416
|
+
overflow?: undefined;
|
|
395
417
|
label?: undefined;
|
|
396
418
|
variant?: undefined;
|
|
419
|
+
padding?: undefined;
|
|
420
|
+
backgroundGradient?: undefined;
|
|
397
421
|
};
|
|
398
422
|
children?: undefined;
|
|
399
423
|
} | {
|
|
@@ -419,6 +443,7 @@ export declare const onboardingExample: {
|
|
|
419
443
|
color?: undefined;
|
|
420
444
|
controls?: undefined;
|
|
421
445
|
muted?: undefined;
|
|
446
|
+
contentFit?: undefined;
|
|
422
447
|
variableName?: undefined;
|
|
423
448
|
placeholder?: undefined;
|
|
424
449
|
keyboardType?: undefined;
|
|
@@ -436,8 +461,11 @@ export declare const onboardingExample: {
|
|
|
436
461
|
carouselType?: undefined;
|
|
437
462
|
autoPlayInterval?: undefined;
|
|
438
463
|
showDots?: undefined;
|
|
464
|
+
overflow?: undefined;
|
|
439
465
|
label?: undefined;
|
|
440
466
|
variant?: undefined;
|
|
467
|
+
padding?: undefined;
|
|
468
|
+
backgroundGradient?: undefined;
|
|
441
469
|
};
|
|
442
470
|
children?: undefined;
|
|
443
471
|
} | {
|
|
@@ -463,6 +491,7 @@ export declare const onboardingExample: {
|
|
|
463
491
|
marginVertical?: undefined;
|
|
464
492
|
controls?: undefined;
|
|
465
493
|
muted?: undefined;
|
|
494
|
+
contentFit?: undefined;
|
|
466
495
|
variableName?: undefined;
|
|
467
496
|
placeholder?: undefined;
|
|
468
497
|
keyboardType?: undefined;
|
|
@@ -480,8 +509,11 @@ export declare const onboardingExample: {
|
|
|
480
509
|
carouselType?: undefined;
|
|
481
510
|
autoPlayInterval?: undefined;
|
|
482
511
|
showDots?: undefined;
|
|
512
|
+
overflow?: undefined;
|
|
483
513
|
label?: undefined;
|
|
484
514
|
variant?: undefined;
|
|
515
|
+
padding?: undefined;
|
|
516
|
+
backgroundGradient?: undefined;
|
|
485
517
|
};
|
|
486
518
|
children?: undefined;
|
|
487
519
|
} | {
|
|
@@ -507,6 +539,7 @@ export declare const onboardingExample: {
|
|
|
507
539
|
marginVertical?: undefined;
|
|
508
540
|
controls?: undefined;
|
|
509
541
|
muted?: undefined;
|
|
542
|
+
contentFit?: undefined;
|
|
510
543
|
variableName?: undefined;
|
|
511
544
|
placeholder?: undefined;
|
|
512
545
|
keyboardType?: undefined;
|
|
@@ -524,8 +557,11 @@ export declare const onboardingExample: {
|
|
|
524
557
|
carouselType?: undefined;
|
|
525
558
|
autoPlayInterval?: undefined;
|
|
526
559
|
showDots?: undefined;
|
|
560
|
+
overflow?: undefined;
|
|
527
561
|
label?: undefined;
|
|
528
562
|
variant?: undefined;
|
|
563
|
+
padding?: undefined;
|
|
564
|
+
backgroundGradient?: undefined;
|
|
529
565
|
};
|
|
530
566
|
children?: undefined;
|
|
531
567
|
} | {
|
|
@@ -553,6 +589,7 @@ export declare const onboardingExample: {
|
|
|
553
589
|
color?: undefined;
|
|
554
590
|
controls?: undefined;
|
|
555
591
|
muted?: undefined;
|
|
592
|
+
contentFit?: undefined;
|
|
556
593
|
placeholder?: undefined;
|
|
557
594
|
keyboardType?: undefined;
|
|
558
595
|
returnKeyType?: undefined;
|
|
@@ -571,8 +608,11 @@ export declare const onboardingExample: {
|
|
|
571
608
|
carouselType?: undefined;
|
|
572
609
|
autoPlayInterval?: undefined;
|
|
573
610
|
showDots?: undefined;
|
|
611
|
+
overflow?: undefined;
|
|
574
612
|
label?: undefined;
|
|
575
613
|
variant?: undefined;
|
|
614
|
+
padding?: undefined;
|
|
615
|
+
backgroundGradient?: undefined;
|
|
576
616
|
};
|
|
577
617
|
children?: undefined;
|
|
578
618
|
} | {
|
|
@@ -598,6 +638,7 @@ export declare const onboardingExample: {
|
|
|
598
638
|
color?: undefined;
|
|
599
639
|
controls?: undefined;
|
|
600
640
|
muted?: undefined;
|
|
641
|
+
contentFit?: undefined;
|
|
601
642
|
variableName?: undefined;
|
|
602
643
|
placeholder?: undefined;
|
|
603
644
|
keyboardType?: undefined;
|
|
@@ -615,8 +656,11 @@ export declare const onboardingExample: {
|
|
|
615
656
|
carouselType?: undefined;
|
|
616
657
|
autoPlayInterval?: undefined;
|
|
617
658
|
showDots?: undefined;
|
|
659
|
+
overflow?: undefined;
|
|
618
660
|
label?: undefined;
|
|
619
661
|
variant?: undefined;
|
|
662
|
+
padding?: undefined;
|
|
663
|
+
backgroundGradient?: undefined;
|
|
620
664
|
};
|
|
621
665
|
children?: undefined;
|
|
622
666
|
} | {
|
|
@@ -644,6 +688,7 @@ export declare const onboardingExample: {
|
|
|
644
688
|
color?: undefined;
|
|
645
689
|
controls?: undefined;
|
|
646
690
|
muted?: undefined;
|
|
691
|
+
contentFit?: undefined;
|
|
647
692
|
placeholder?: undefined;
|
|
648
693
|
keyboardType?: undefined;
|
|
649
694
|
returnKeyType?: undefined;
|
|
@@ -662,8 +707,11 @@ export declare const onboardingExample: {
|
|
|
662
707
|
carouselType?: undefined;
|
|
663
708
|
autoPlayInterval?: undefined;
|
|
664
709
|
showDots?: undefined;
|
|
710
|
+
overflow?: undefined;
|
|
665
711
|
label?: undefined;
|
|
666
712
|
variant?: undefined;
|
|
713
|
+
padding?: undefined;
|
|
714
|
+
backgroundGradient?: undefined;
|
|
667
715
|
};
|
|
668
716
|
children?: undefined;
|
|
669
717
|
} | {
|
|
@@ -689,6 +737,7 @@ export declare const onboardingExample: {
|
|
|
689
737
|
color?: undefined;
|
|
690
738
|
controls?: undefined;
|
|
691
739
|
muted?: undefined;
|
|
740
|
+
contentFit?: undefined;
|
|
692
741
|
placeholder?: undefined;
|
|
693
742
|
keyboardType?: undefined;
|
|
694
743
|
returnKeyType?: undefined;
|
|
@@ -706,8 +755,11 @@ export declare const onboardingExample: {
|
|
|
706
755
|
carouselType?: undefined;
|
|
707
756
|
autoPlayInterval?: undefined;
|
|
708
757
|
showDots?: undefined;
|
|
758
|
+
overflow?: undefined;
|
|
709
759
|
label?: undefined;
|
|
710
760
|
variant?: undefined;
|
|
761
|
+
padding?: undefined;
|
|
762
|
+
backgroundGradient?: undefined;
|
|
711
763
|
};
|
|
712
764
|
children?: undefined;
|
|
713
765
|
} | {
|
|
@@ -731,6 +783,7 @@ export declare const onboardingExample: {
|
|
|
731
783
|
color?: undefined;
|
|
732
784
|
controls?: undefined;
|
|
733
785
|
muted?: undefined;
|
|
786
|
+
contentFit?: undefined;
|
|
734
787
|
variableName?: undefined;
|
|
735
788
|
placeholder?: undefined;
|
|
736
789
|
keyboardType?: undefined;
|
|
@@ -750,8 +803,11 @@ export declare const onboardingExample: {
|
|
|
750
803
|
defaultValues?: undefined;
|
|
751
804
|
display?: undefined;
|
|
752
805
|
maximumDate?: undefined;
|
|
806
|
+
overflow?: undefined;
|
|
753
807
|
label?: undefined;
|
|
754
808
|
variant?: undefined;
|
|
809
|
+
padding?: undefined;
|
|
810
|
+
backgroundGradient?: undefined;
|
|
755
811
|
};
|
|
756
812
|
children: {
|
|
757
813
|
id: string;
|
|
@@ -762,6 +818,212 @@ export declare const onboardingExample: {
|
|
|
762
818
|
resizeMode: string;
|
|
763
819
|
};
|
|
764
820
|
}[];
|
|
821
|
+
} | {
|
|
822
|
+
id: string;
|
|
823
|
+
type: string;
|
|
824
|
+
props: {
|
|
825
|
+
height: number;
|
|
826
|
+
borderRadius: number;
|
|
827
|
+
overflow: string;
|
|
828
|
+
marginVertical: number;
|
|
829
|
+
source?: undefined;
|
|
830
|
+
autoPlay?: undefined;
|
|
831
|
+
loop?: undefined;
|
|
832
|
+
url?: undefined;
|
|
833
|
+
fit?: undefined;
|
|
834
|
+
resizeMode?: undefined;
|
|
835
|
+
name?: undefined;
|
|
836
|
+
size?: undefined;
|
|
837
|
+
color?: undefined;
|
|
838
|
+
controls?: undefined;
|
|
839
|
+
muted?: undefined;
|
|
840
|
+
contentFit?: undefined;
|
|
841
|
+
variableName?: undefined;
|
|
842
|
+
placeholder?: undefined;
|
|
843
|
+
keyboardType?: undefined;
|
|
844
|
+
returnKeyType?: undefined;
|
|
845
|
+
autoCapitalize?: undefined;
|
|
846
|
+
content?: undefined;
|
|
847
|
+
mode?: undefined;
|
|
848
|
+
fontSize?: undefined;
|
|
849
|
+
fontWeight?: undefined;
|
|
850
|
+
textAlign?: undefined;
|
|
851
|
+
fontFamily?: undefined;
|
|
852
|
+
lineHeight?: undefined;
|
|
853
|
+
opacity?: undefined;
|
|
854
|
+
defaultValue?: undefined;
|
|
855
|
+
gap?: undefined;
|
|
856
|
+
items?: undefined;
|
|
857
|
+
defaultValues?: undefined;
|
|
858
|
+
display?: undefined;
|
|
859
|
+
maximumDate?: undefined;
|
|
860
|
+
carouselType?: undefined;
|
|
861
|
+
autoPlayInterval?: undefined;
|
|
862
|
+
showDots?: undefined;
|
|
863
|
+
label?: undefined;
|
|
864
|
+
variant?: undefined;
|
|
865
|
+
padding?: undefined;
|
|
866
|
+
backgroundGradient?: undefined;
|
|
867
|
+
};
|
|
868
|
+
children: ({
|
|
869
|
+
id: string;
|
|
870
|
+
type: string;
|
|
871
|
+
props: {
|
|
872
|
+
url: string;
|
|
873
|
+
height: number;
|
|
874
|
+
resizeMode: string;
|
|
875
|
+
flex?: undefined;
|
|
876
|
+
backgroundColor?: undefined;
|
|
877
|
+
padding?: undefined;
|
|
878
|
+
justifyContent?: undefined;
|
|
879
|
+
};
|
|
880
|
+
children?: undefined;
|
|
881
|
+
} | {
|
|
882
|
+
id: string;
|
|
883
|
+
type: string;
|
|
884
|
+
props: {
|
|
885
|
+
flex: number;
|
|
886
|
+
backgroundColor: string;
|
|
887
|
+
padding: number;
|
|
888
|
+
justifyContent: string;
|
|
889
|
+
url?: undefined;
|
|
890
|
+
height?: undefined;
|
|
891
|
+
resizeMode?: undefined;
|
|
892
|
+
};
|
|
893
|
+
children: {
|
|
894
|
+
id: string;
|
|
895
|
+
type: string;
|
|
896
|
+
props: {
|
|
897
|
+
content: string;
|
|
898
|
+
fontSize: number;
|
|
899
|
+
fontWeight: string;
|
|
900
|
+
color: string;
|
|
901
|
+
};
|
|
902
|
+
}[];
|
|
903
|
+
})[];
|
|
904
|
+
} | {
|
|
905
|
+
id: string;
|
|
906
|
+
type: string;
|
|
907
|
+
props: {
|
|
908
|
+
label: string;
|
|
909
|
+
variant: string;
|
|
910
|
+
marginVertical: number;
|
|
911
|
+
source?: undefined;
|
|
912
|
+
height?: undefined;
|
|
913
|
+
autoPlay?: undefined;
|
|
914
|
+
loop?: undefined;
|
|
915
|
+
url?: undefined;
|
|
916
|
+
fit?: undefined;
|
|
917
|
+
resizeMode?: undefined;
|
|
918
|
+
borderRadius?: undefined;
|
|
919
|
+
name?: undefined;
|
|
920
|
+
size?: undefined;
|
|
921
|
+
color?: undefined;
|
|
922
|
+
controls?: undefined;
|
|
923
|
+
muted?: undefined;
|
|
924
|
+
contentFit?: undefined;
|
|
925
|
+
variableName?: undefined;
|
|
926
|
+
placeholder?: undefined;
|
|
927
|
+
keyboardType?: undefined;
|
|
928
|
+
returnKeyType?: undefined;
|
|
929
|
+
autoCapitalize?: undefined;
|
|
930
|
+
content?: undefined;
|
|
931
|
+
mode?: undefined;
|
|
932
|
+
fontSize?: undefined;
|
|
933
|
+
fontWeight?: undefined;
|
|
934
|
+
textAlign?: undefined;
|
|
935
|
+
fontFamily?: undefined;
|
|
936
|
+
lineHeight?: undefined;
|
|
937
|
+
opacity?: undefined;
|
|
938
|
+
defaultValue?: undefined;
|
|
939
|
+
gap?: undefined;
|
|
940
|
+
items?: undefined;
|
|
941
|
+
defaultValues?: undefined;
|
|
942
|
+
display?: undefined;
|
|
943
|
+
maximumDate?: undefined;
|
|
944
|
+
carouselType?: undefined;
|
|
945
|
+
autoPlayInterval?: undefined;
|
|
946
|
+
showDots?: undefined;
|
|
947
|
+
overflow?: undefined;
|
|
948
|
+
padding?: undefined;
|
|
949
|
+
backgroundGradient?: undefined;
|
|
950
|
+
};
|
|
951
|
+
children?: undefined;
|
|
952
|
+
} | {
|
|
953
|
+
id: string;
|
|
954
|
+
type: string;
|
|
955
|
+
props: {
|
|
956
|
+
padding: number;
|
|
957
|
+
gap: number;
|
|
958
|
+
borderRadius: number;
|
|
959
|
+
overflow: string;
|
|
960
|
+
marginVertical: number;
|
|
961
|
+
backgroundGradient: {
|
|
962
|
+
type: string;
|
|
963
|
+
from: string;
|
|
964
|
+
to: string;
|
|
965
|
+
stops: {
|
|
966
|
+
color: string;
|
|
967
|
+
}[];
|
|
968
|
+
};
|
|
969
|
+
source?: undefined;
|
|
970
|
+
height?: undefined;
|
|
971
|
+
autoPlay?: undefined;
|
|
972
|
+
loop?: undefined;
|
|
973
|
+
url?: undefined;
|
|
974
|
+
fit?: undefined;
|
|
975
|
+
resizeMode?: undefined;
|
|
976
|
+
name?: undefined;
|
|
977
|
+
size?: undefined;
|
|
978
|
+
color?: undefined;
|
|
979
|
+
controls?: undefined;
|
|
980
|
+
muted?: undefined;
|
|
981
|
+
contentFit?: undefined;
|
|
982
|
+
variableName?: undefined;
|
|
983
|
+
placeholder?: undefined;
|
|
984
|
+
keyboardType?: undefined;
|
|
985
|
+
returnKeyType?: undefined;
|
|
986
|
+
autoCapitalize?: undefined;
|
|
987
|
+
content?: undefined;
|
|
988
|
+
mode?: undefined;
|
|
989
|
+
fontSize?: undefined;
|
|
990
|
+
fontWeight?: undefined;
|
|
991
|
+
textAlign?: undefined;
|
|
992
|
+
fontFamily?: undefined;
|
|
993
|
+
lineHeight?: undefined;
|
|
994
|
+
opacity?: undefined;
|
|
995
|
+
defaultValue?: undefined;
|
|
996
|
+
items?: undefined;
|
|
997
|
+
defaultValues?: undefined;
|
|
998
|
+
display?: undefined;
|
|
999
|
+
maximumDate?: undefined;
|
|
1000
|
+
carouselType?: undefined;
|
|
1001
|
+
autoPlayInterval?: undefined;
|
|
1002
|
+
showDots?: undefined;
|
|
1003
|
+
label?: undefined;
|
|
1004
|
+
variant?: undefined;
|
|
1005
|
+
};
|
|
1006
|
+
children: ({
|
|
1007
|
+
id: string;
|
|
1008
|
+
type: string;
|
|
1009
|
+
props: {
|
|
1010
|
+
content: string;
|
|
1011
|
+
fontSize: number;
|
|
1012
|
+
fontWeight: string;
|
|
1013
|
+
color: string;
|
|
1014
|
+
opacity?: undefined;
|
|
1015
|
+
};
|
|
1016
|
+
} | {
|
|
1017
|
+
id: string;
|
|
1018
|
+
type: string;
|
|
1019
|
+
props: {
|
|
1020
|
+
content: string;
|
|
1021
|
+
fontSize: number;
|
|
1022
|
+
color: string;
|
|
1023
|
+
opacity: number;
|
|
1024
|
+
fontWeight?: undefined;
|
|
1025
|
+
};
|
|
1026
|
+
})[];
|
|
765
1027
|
} | {
|
|
766
1028
|
id: string;
|
|
767
1029
|
type: string;
|
|
@@ -769,6 +1031,15 @@ export declare const onboardingExample: {
|
|
|
769
1031
|
label: string;
|
|
770
1032
|
variant: string;
|
|
771
1033
|
marginVertical: number;
|
|
1034
|
+
backgroundGradient: {
|
|
1035
|
+
type: string;
|
|
1036
|
+
from: string;
|
|
1037
|
+
to: string;
|
|
1038
|
+
stops: {
|
|
1039
|
+
color: string;
|
|
1040
|
+
position: number;
|
|
1041
|
+
}[];
|
|
1042
|
+
};
|
|
772
1043
|
source?: undefined;
|
|
773
1044
|
height?: undefined;
|
|
774
1045
|
autoPlay?: undefined;
|
|
@@ -782,6 +1053,7 @@ export declare const onboardingExample: {
|
|
|
782
1053
|
color?: undefined;
|
|
783
1054
|
controls?: undefined;
|
|
784
1055
|
muted?: undefined;
|
|
1056
|
+
contentFit?: undefined;
|
|
785
1057
|
variableName?: undefined;
|
|
786
1058
|
placeholder?: undefined;
|
|
787
1059
|
keyboardType?: undefined;
|
|
@@ -804,6 +1076,8 @@ export declare const onboardingExample: {
|
|
|
804
1076
|
carouselType?: undefined;
|
|
805
1077
|
autoPlayInterval?: undefined;
|
|
806
1078
|
showDots?: undefined;
|
|
1079
|
+
overflow?: undefined;
|
|
1080
|
+
padding?: undefined;
|
|
807
1081
|
};
|
|
808
1082
|
children?: undefined;
|
|
809
1083
|
})[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onboarding-example.d.ts","sourceRoot":"","sources":["../src/onboarding-example.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"onboarding-example.d.ts","sourceRoot":"","sources":["../src/onboarding-example.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAucR,CAAC"}
|
|
@@ -150,6 +150,7 @@ exports.onboardingExample = {
|
|
|
150
150
|
borderRadius: 12,
|
|
151
151
|
controls: true,
|
|
152
152
|
muted: true,
|
|
153
|
+
contentFit: "cover",
|
|
153
154
|
},
|
|
154
155
|
},
|
|
155
156
|
{
|
|
@@ -320,6 +321,49 @@ exports.onboardingExample = {
|
|
|
320
321
|
},
|
|
321
322
|
],
|
|
322
323
|
},
|
|
324
|
+
{
|
|
325
|
+
id: "zstack-demo",
|
|
326
|
+
type: "ZStack",
|
|
327
|
+
props: {
|
|
328
|
+
height: 200,
|
|
329
|
+
borderRadius: 16,
|
|
330
|
+
overflow: "hidden",
|
|
331
|
+
marginVertical: 8,
|
|
332
|
+
},
|
|
333
|
+
children: [
|
|
334
|
+
{
|
|
335
|
+
id: "zstack-bg",
|
|
336
|
+
type: "Image",
|
|
337
|
+
props: {
|
|
338
|
+
url: "https://picsum.photos/800/400?random=20",
|
|
339
|
+
height: 200,
|
|
340
|
+
resizeMode: "cover",
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
id: "zstack-overlay",
|
|
345
|
+
type: "YStack",
|
|
346
|
+
props: {
|
|
347
|
+
flex: 1,
|
|
348
|
+
backgroundColor: "rgba(0,0,0,0.45)",
|
|
349
|
+
padding: 20,
|
|
350
|
+
justifyContent: "flex-end",
|
|
351
|
+
},
|
|
352
|
+
children: [
|
|
353
|
+
{
|
|
354
|
+
id: "zstack-label",
|
|
355
|
+
type: "Text",
|
|
356
|
+
props: {
|
|
357
|
+
content: "ZStack: layered elements",
|
|
358
|
+
fontSize: 18,
|
|
359
|
+
fontWeight: "700",
|
|
360
|
+
color: "#fff",
|
|
361
|
+
},
|
|
362
|
+
},
|
|
363
|
+
],
|
|
364
|
+
},
|
|
365
|
+
],
|
|
366
|
+
},
|
|
323
367
|
{
|
|
324
368
|
id: "hero-button",
|
|
325
369
|
type: "Button",
|
|
@@ -329,6 +373,56 @@ exports.onboardingExample = {
|
|
|
329
373
|
marginVertical: 8,
|
|
330
374
|
},
|
|
331
375
|
},
|
|
376
|
+
{
|
|
377
|
+
id: "gradient-card",
|
|
378
|
+
type: "YStack",
|
|
379
|
+
props: {
|
|
380
|
+
padding: 20,
|
|
381
|
+
gap: 8,
|
|
382
|
+
borderRadius: 16,
|
|
383
|
+
overflow: "hidden",
|
|
384
|
+
marginVertical: 4,
|
|
385
|
+
backgroundGradient: {
|
|
386
|
+
type: "linear",
|
|
387
|
+
from: "topLeft",
|
|
388
|
+
to: "bottomRight",
|
|
389
|
+
stops: [
|
|
390
|
+
{ color: "#6C63FF" },
|
|
391
|
+
{ color: "#FF6584" },
|
|
392
|
+
],
|
|
393
|
+
},
|
|
394
|
+
},
|
|
395
|
+
children: [
|
|
396
|
+
{
|
|
397
|
+
id: "gradient-card-title",
|
|
398
|
+
type: "Text",
|
|
399
|
+
props: { content: "Linear gradient", fontSize: 15, fontWeight: "700", color: "#fff" },
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
id: "gradient-card-body",
|
|
403
|
+
type: "Text",
|
|
404
|
+
props: { content: "topLeft → bottomRight", fontSize: 12, color: "#fff", opacity: 0.85 },
|
|
405
|
+
},
|
|
406
|
+
],
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
id: "gradient-button",
|
|
410
|
+
type: "Button",
|
|
411
|
+
props: {
|
|
412
|
+
label: "Gradient Button",
|
|
413
|
+
variant: "filled",
|
|
414
|
+
marginVertical: 4,
|
|
415
|
+
backgroundGradient: {
|
|
416
|
+
type: "linear",
|
|
417
|
+
from: "left",
|
|
418
|
+
to: "right",
|
|
419
|
+
stops: [
|
|
420
|
+
{ color: "#FF6584", position: 0 },
|
|
421
|
+
{ color: "#6C63FF", position: 1 },
|
|
422
|
+
],
|
|
423
|
+
},
|
|
424
|
+
},
|
|
425
|
+
},
|
|
332
426
|
],
|
|
333
427
|
},
|
|
334
428
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onboarding-example.js","sourceRoot":"","sources":["../src/onboarding-example.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"onboarding-example.js","sourceRoot":"","sources":["../src/onboarding-example.ts"],"names":[],"mappings":";;;AAEa,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE;QACR,EAAE,EAAE,oBAAoB;QACxB,IAAI,EAAE,oBAAoB;QAC1B,UAAU,EAAE,SAAS;QACrB,YAAY,EAAE,SAAS;QACvB,aAAa,EAAE,SAAS;QACxB,KAAK,EAAE,IAAI;KACZ;IACD,KAAK,EAAE;QACL;YACE,EAAE,EAAE,SAAS;YACb,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,cAAc;YACpB,OAAO,EAAE;gBACP,KAAK,EAAE,qBAAqB;gBAC5B,WAAW,EAAE,+CAA+C;gBAC5D,WAAW,EAAE;oBACX,GAAG,EAAE,mDAAmD;oBACxD,IAAI,EAAE,OAAO;iBACd;aACF;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,mBAAmB,EAAE,UAAU;YAC/B,qBAAqB,EAAE,IAAI;SAC5B;QACD;YACE,EAAE,EAAE,yBAAyB;YAC7B,IAAI,EAAE,gBAAgB;YACtB,IAAI,EAAE,UAAU;YAChB,OAAO,EAAE;gBACP,KAAK,EAAE,6BAA6B;gBACpC,OAAO,EAAE;oBACP,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE;oBAC9B,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;oBAChC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE;oBAClC,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;iBACrC;gBACD,OAAO,EAAE,IAAI;gBACb,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,KAAK;aACtB;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,qBAAqB,EAAE,IAAI;SAC5B;QACD;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE;gBACP,KAAK,EAAE,mBAAmB;gBAC1B,UAAU,EAAE,MAAM;gBAClB,WAAW,EAAE,EAAE;aAChB;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,mBAAmB,EAAE,UAAU;YAC/B,qBAAqB,EAAE,IAAI;SAC5B;QACD;YACE,EAAE,EAAE,yBAAyB;YAC7B,IAAI,EAAE,kBAAkB;YACxB,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE;gBACP,KAAK,EAAE;oBACL;wBACE,KAAK,EAAE,6BAA6B;wBACpC,SAAS,EAAE,uBAAuB;qBACnC;oBACD,EAAE,KAAK,EAAE,yBAAyB,EAAE,SAAS,EAAE,eAAe,EAAE;oBAChE,EAAE,KAAK,EAAE,2BAA2B,EAAE,SAAS,EAAE,UAAU,EAAE;iBAC9D;gBACD,KAAK,EAAE,uCAAuC;gBAC9C,OAAO,EAAE,MAAM;gBACf,QAAQ,EAAE,IAAI;gBACd,gBAAgB,EAAE;oBAChB,EAAE,GAAG,EAAE,wCAAwC,EAAE,IAAI,EAAE,OAAO,EAAE;oBAChE,EAAE,GAAG,EAAE,wCAAwC,EAAE,IAAI,EAAE,OAAO,EAAE;oBAChE,EAAE,GAAG,EAAE,wCAAwC,EAAE,IAAI,EAAE,OAAO,EAAE;iBACjE;aACF;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,mBAAmB,EAAE,UAAU;YAC/B,qBAAqB,EAAE,KAAK;SAC7B;QACD;YACE,EAAE,EAAE,wBAAwB;YAC5B,IAAI,EAAE,mBAAmB;YACzB,IAAI,EAAE,kBAAkB;YACxB,qBAAqB,EAAE,IAAI;YAC3B,OAAO,EAAE;gBACP,QAAQ,EAAE;oBACR;wBACE,EAAE,EAAE,MAAM;wBACV,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;wBAC/B,QAAQ,EAAE;4BACR;gCACE,EAAE,EAAE,aAAa;gCACjB,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE;oCACL,MAAM,EAAE,kFAAkF;oCAC1F,MAAM,EAAE,GAAG;oCACX,QAAQ,EAAE,IAAI;oCACd,IAAI,EAAE,IAAI;iCACX;6BACF;4BACD;gCACE,EAAE,EAAE,WAAW;gCACf,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,GAAG,EAAE,8CAA8C;oCACnD,MAAM,EAAE,GAAG;oCACX,QAAQ,EAAE,IAAI;oCACd,GAAG,EAAE,SAAS;iCACf;6BACF;4BACD;gCACE,EAAE,EAAE,YAAY;gCAChB,IAAI,EAAE,OAAO;gCACb,KAAK,EAAE;oCACL,GAAG,EAAE,yCAAyC;oCAC9C,MAAM,EAAE,GAAG;oCACX,UAAU,EAAE,OAAO;oCACnB,YAAY,EAAE,EAAE;iCACjB;6BACF;4BACD;gCACE,EAAE,EAAE,WAAW;gCACf,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,IAAI,EAAE,MAAM;oCACZ,IAAI,EAAE,EAAE;oCACR,KAAK,EAAE,SAAS;oCAChB,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,YAAY;gCAChB,IAAI,EAAE,OAAO;gCACb,KAAK,EAAE;oCACL,GAAG,EAAE,oFAAoF;oCACzF,MAAM,EAAE,GAAG;oCACX,YAAY,EAAE,EAAE;oCAChB,QAAQ,EAAE,IAAI;oCACd,KAAK,EAAE,IAAI;oCACX,UAAU,EAAE,OAAO;iCACpB;6BACF;4BACD;gCACE,EAAE,EAAE,YAAY;gCAChB,IAAI,EAAE,OAAO;gCACb,KAAK,EAAE;oCACL,YAAY,EAAE,MAAM;oCACpB,WAAW,EAAE,iBAAiB;oCAC9B,YAAY,EAAE,SAAS;oCACvB,aAAa,EAAE,MAAM;oCACrB,cAAc,EAAE,OAAO;oCACvB,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,UAAU;gCACd,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EAAE,iBAAiB;oCAC1B,IAAI,EAAE,YAAY;oCAClB,QAAQ,EAAE,EAAE;oCACZ,UAAU,EAAE,KAAK;oCACjB,SAAS,EAAE,QAAQ;oCACnB,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,UAAU;gCACd,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EAAE,oBAAoB;oCAC7B,QAAQ,EAAE,EAAE;oCACZ,UAAU,EAAE,KAAK;oCACjB,UAAU,EAAE,QAAQ;oCACpB,SAAS,EAAE,QAAQ;iCACpB;6BACF;4BACD;gCACE,EAAE,EAAE,aAAa;gCACjB,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EACL,mFAAmF;oCACrF,QAAQ,EAAE,EAAE;oCACZ,SAAS,EAAE,QAAQ;oCACnB,UAAU,EAAE,EAAE;oCACd,OAAO,EAAE,GAAG;iCACb;6BACF;4BACD;gCACE,EAAE,EAAE,YAAY;gCAChB,IAAI,EAAE,YAAY;gCAClB,KAAK,EAAE;oCACL,YAAY,EAAE,MAAM;oCACpB,YAAY,EAAE,SAAS;oCACvB,GAAG,EAAE,CAAC;oCACN,cAAc,EAAE,CAAC;oCACjB,KAAK,EAAE;wCACL,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;wCACtC,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;wCACpC,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE;qCACzC;iCACF;6BACF;4BACD;gCACE,EAAE,EAAE,cAAc;gCAClB,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EAAE,oBAAoB;oCAC7B,IAAI,EAAE,YAAY;oCAClB,QAAQ,EAAE,EAAE;oCACZ,SAAS,EAAE,QAAQ;oCACnB,OAAO,EAAE,GAAG;oCACZ,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,eAAe;gCACnB,IAAI,EAAE,eAAe;gCACrB,KAAK,EAAE;oCACL,YAAY,EAAE,OAAO;oCACrB,aAAa,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC;oCACpC,GAAG,EAAE,CAAC;oCACN,cAAc,EAAE,CAAC;oCACjB,KAAK,EAAE;wCACL,EAAE,KAAK,EAAE,gBAAgB,EAAE,KAAK,EAAE,QAAQ,EAAE;wCAC5C,EAAE,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,SAAS,EAAE;wCAC5C,EAAE,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,QAAQ,EAAE;wCACzC,EAAE,KAAK,EAAE,aAAa,EAAE,KAAK,EAAE,QAAQ,EAAE;qCAC1C;iCACF;6BACF;4BACD;gCACE,EAAE,EAAE,eAAe;gCACnB,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EAAE,kBAAkB;oCAC3B,IAAI,EAAE,YAAY;oCAClB,QAAQ,EAAE,EAAE;oCACZ,SAAS,EAAE,QAAQ;oCACnB,OAAO,EAAE,GAAG;oCACZ,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,kBAAkB;gCACtB,IAAI,EAAE,YAAY;gCAClB,KAAK,EAAE;oCACL,YAAY,EAAE,WAAW;oCACzB,YAAY,EAAE,0BAA0B;oCACxC,IAAI,EAAE,MAAM;oCACZ,OAAO,EAAE,SAAS;oCAClB,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,oFAAoF;oCAC3H,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,mBAAmB;gCACvB,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE;oCACL,OAAO,EAAE,2BAA2B;oCACpC,IAAI,EAAE,YAAY;oCAClB,QAAQ,EAAE,EAAE;oCACZ,SAAS,EAAE,QAAQ;oCACnB,OAAO,EAAE,GAAG;oCACZ,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,eAAe;gCACnB,IAAI,EAAE,UAAU;gCAChB,KAAK,EAAE;oCACL,YAAY,EAAE,UAAU;oCACxB,QAAQ,EAAE,IAAI;oCACd,gBAAgB,EAAE,IAAI;oCACtB,IAAI,EAAE,IAAI;oCACV,QAAQ,EAAE,IAAI;oCACd,MAAM,EAAE,GAAG;oCACX,YAAY,EAAE,EAAE;oCAChB,cAAc,EAAE,CAAC;iCAClB;gCACD,QAAQ,EAAE;oCACR;wCACE,EAAE,EAAE,kBAAkB;wCACtB,IAAI,EAAE,OAAO;wCACb,KAAK,EAAE;4CACL,GAAG,EAAE,yCAAyC;4CAC9C,MAAM,EAAE,GAAG;4CACX,UAAU,EAAE,OAAO;yCACpB;qCACF;oCACD;wCACE,EAAE,EAAE,kBAAkB;wCACtB,IAAI,EAAE,OAAO;wCACb,KAAK,EAAE;4CACL,GAAG,EAAE,yCAAyC;4CAC9C,MAAM,EAAE,GAAG;4CACX,UAAU,EAAE,OAAO;yCACpB;qCACF;oCACD;wCACE,EAAE,EAAE,kBAAkB;wCACtB,IAAI,EAAE,OAAO;wCACb,KAAK,EAAE;4CACL,GAAG,EAAE,yCAAyC;4CAC9C,MAAM,EAAE,GAAG;4CACX,UAAU,EAAE,OAAO;yCACpB;qCACF;iCACF;6BACF;4BACD;gCACE,EAAE,EAAE,aAAa;gCACjB,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE;oCACL,MAAM,EAAE,GAAG;oCACX,YAAY,EAAE,EAAE;oCAChB,QAAQ,EAAE,QAAQ;oCAClB,cAAc,EAAE,CAAC;iCAClB;gCACD,QAAQ,EAAE;oCACR;wCACE,EAAE,EAAE,WAAW;wCACf,IAAI,EAAE,OAAO;wCACb,KAAK,EAAE;4CACL,GAAG,EAAE,yCAAyC;4CAC9C,MAAM,EAAE,GAAG;4CACX,UAAU,EAAE,OAAO;yCACpB;qCACF;oCACD;wCACE,EAAE,EAAE,gBAAgB;wCACpB,IAAI,EAAE,QAAQ;wCACd,KAAK,EAAE;4CACL,IAAI,EAAE,CAAC;4CACP,eAAe,EAAE,kBAAkB;4CACnC,OAAO,EAAE,EAAE;4CACX,cAAc,EAAE,UAAU;yCAC3B;wCACD,QAAQ,EAAE;4CACR;gDACE,EAAE,EAAE,cAAc;gDAClB,IAAI,EAAE,MAAM;gDACZ,KAAK,EAAE;oDACL,OAAO,EAAE,0BAA0B;oDACnC,QAAQ,EAAE,EAAE;oDACZ,UAAU,EAAE,KAAK;oDACjB,KAAK,EAAE,MAAM;iDACd;6CACF;yCACF;qCACF;iCACF;6BACF;4BACD;gCACE,EAAE,EAAE,aAAa;gCACjB,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE;oCACL,KAAK,EAAE,aAAa;oCACpB,OAAO,EAAE,QAAQ;oCACjB,cAAc,EAAE,CAAC;iCAClB;6BACF;4BACD;gCACE,EAAE,EAAE,eAAe;gCACnB,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE;oCACL,OAAO,EAAE,EAAE;oCACX,GAAG,EAAE,CAAC;oCACN,YAAY,EAAE,EAAE;oCAChB,QAAQ,EAAE,QAAQ;oCAClB,cAAc,EAAE,CAAC;oCACjB,kBAAkB,EAAE;wCAClB,IAAI,EAAE,QAAQ;wCACd,IAAI,EAAE,SAAS;wCACf,EAAE,EAAE,aAAa;wCACjB,KAAK,EAAE;4CACL,EAAE,KAAK,EAAE,SAAS,EAAE;4CACpB,EAAE,KAAK,EAAE,SAAS,EAAE;yCACrB;qCACF;iCACF;gCACD,QAAQ,EAAE;oCACR;wCACE,EAAE,EAAE,qBAAqB;wCACzB,IAAI,EAAE,MAAM;wCACZ,KAAK,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE;qCACtF;oCACD;wCACE,EAAE,EAAE,oBAAoB;wCACxB,IAAI,EAAE,MAAM;wCACZ,KAAK,EAAE,EAAE,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE;qCACxF;iCACF;6BACF;4BACD;gCACE,EAAE,EAAE,iBAAiB;gCACrB,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE;oCACL,KAAK,EAAE,iBAAiB;oCACxB,OAAO,EAAE,QAAQ;oCACjB,cAAc,EAAE,CAAC;oCACjB,kBAAkB,EAAE;wCAClB,IAAI,EAAE,QAAQ;wCACd,IAAI,EAAE,MAAM;wCACZ,EAAE,EAAE,OAAO;wCACX,KAAK,EAAE;4CACL,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAE;4CACjC,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAE;yCAClC;qCACF;iCACF;6BACF;yBACF;qBACF;iBACF;aACF;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,mBAAmB,EAAE,UAAU;SAChC;QACD;YACE,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,SAAS;YACf,OAAO,EAAE;gBACP,KAAK,EAAE,mBAAmB;gBAC1B,QAAQ,EAAE,0BAA0B;gBACpC,YAAY,EAAE;oBACZ;wBACE,OAAO,EACL,wFAAwF;wBAC1F,UAAU,EAAE,eAAe;wBAC3B,YAAY,EAAE,CAAC;qBAChB;iBACF;gBACD,qBAAqB,EAAE,cAAc;aACtC;YACD,QAAQ,EAAE,IAAI;YACd,aAAa,EAAE,EAAE;YACjB,mBAAmB,EAAE,UAAU;YAC/B,qBAAqB,EAAE,KAAK;SAC7B;KACF;IACD,aAAa,EAAE,EAAE;CACG,CAAC"}
|