@rocapine/react-native-onboarding 1.24.0 → 1.25.1

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.
Files changed (54) hide show
  1. package/dist/onboarding-example.d.ts +314 -166
  2. package/dist/onboarding-example.d.ts.map +1 -1
  3. package/dist/onboarding-example.js +97 -10
  4. package/dist/onboarding-example.js.map +1 -1
  5. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +2 -0
  6. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
  7. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +1 -0
  8. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
  9. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +4 -0
  10. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
  11. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +1 -0
  12. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
  13. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +1 -0
  14. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
  15. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +1 -0
  16. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
  17. package/dist/steps/ComposableScreen/elements/IconElement.d.ts +1 -0
  18. package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
  19. package/dist/steps/ComposableScreen/elements/InputElement.d.ts +1 -0
  20. package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
  21. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +87 -0
  22. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -0
  23. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.js +11 -0
  24. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.js.map +1 -0
  25. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +1 -0
  26. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
  27. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +1 -0
  28. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
  29. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +1 -0
  30. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
  31. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts +1 -0
  32. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
  33. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts +109 -0
  34. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -0
  35. package/dist/steps/ComposableScreen/elements/ScrollViewElement.js +23 -0
  36. package/dist/steps/ComposableScreen/elements/ScrollViewElement.js.map +1 -0
  37. package/dist/steps/ComposableScreen/elements/StackElement.d.ts +1 -0
  38. package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
  39. package/dist/steps/ComposableScreen/elements/TextElement.d.ts +1 -0
  40. package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  41. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +1 -0
  42. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
  43. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts +1 -0
  44. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
  45. package/dist/steps/ComposableScreen/types.d.ts +18 -0
  46. package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
  47. package/dist/steps/ComposableScreen/types.js +52 -1
  48. package/dist/steps/ComposableScreen/types.js.map +1 -1
  49. package/package.json +1 -1
  50. package/src/onboarding-example.ts +97 -10
  51. package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +2 -0
  52. package/src/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.ts +16 -0
  53. package/src/steps/ComposableScreen/elements/ScrollViewElement.ts +40 -0
  54. package/src/steps/ComposableScreen/types.ts +84 -3
@@ -158,6 +158,8 @@ export declare const onboardingExample: {
158
158
  autoPlay: boolean;
159
159
  loop: boolean;
160
160
  url?: undefined;
161
+ width?: undefined;
162
+ aspectRatio?: undefined;
161
163
  fit?: undefined;
162
164
  resizeMode?: undefined;
163
165
  borderRadius?: undefined;
@@ -168,11 +170,10 @@ export declare const onboardingExample: {
168
170
  controls?: undefined;
169
171
  muted?: undefined;
170
172
  contentFit?: undefined;
171
- variableName?: undefined;
172
- placeholder?: undefined;
173
- keyboardType?: undefined;
174
- returnKeyType?: undefined;
175
- autoCapitalize?: undefined;
173
+ keyboardVerticalOffset?: undefined;
174
+ horizontal?: undefined;
175
+ showsHorizontalScrollIndicator?: undefined;
176
+ contentContainerPadding?: undefined;
176
177
  content?: undefined;
177
178
  mode?: undefined;
178
179
  fontSize?: undefined;
@@ -182,6 +183,7 @@ export declare const onboardingExample: {
182
183
  fontStyle?: undefined;
183
184
  opacity?: undefined;
184
185
  lineHeight?: undefined;
186
+ variableName?: undefined;
185
187
  defaultValue?: undefined;
186
188
  gap?: undefined;
187
189
  items?: undefined;
@@ -208,17 +210,19 @@ export declare const onboardingExample: {
208
210
  disabledWhen?: undefined;
209
211
  disabledStyle?: undefined;
210
212
  };
211
- renderWhen?: undefined;
212
213
  children?: undefined;
214
+ renderWhen?: undefined;
213
215
  } | {
214
216
  id: string;
215
217
  type: string;
216
218
  props: {
217
219
  url: string;
218
- height: number;
220
+ width: string;
221
+ aspectRatio: number;
219
222
  autoPlay: boolean;
220
223
  fit: string;
221
224
  source?: undefined;
225
+ height?: undefined;
222
226
  loop?: undefined;
223
227
  resizeMode?: undefined;
224
228
  borderRadius?: undefined;
@@ -229,11 +233,10 @@ export declare const onboardingExample: {
229
233
  controls?: undefined;
230
234
  muted?: undefined;
231
235
  contentFit?: undefined;
232
- variableName?: undefined;
233
- placeholder?: undefined;
234
- keyboardType?: undefined;
235
- returnKeyType?: undefined;
236
- autoCapitalize?: undefined;
236
+ keyboardVerticalOffset?: undefined;
237
+ horizontal?: undefined;
238
+ showsHorizontalScrollIndicator?: undefined;
239
+ contentContainerPadding?: undefined;
237
240
  content?: undefined;
238
241
  mode?: undefined;
239
242
  fontSize?: undefined;
@@ -243,6 +246,7 @@ export declare const onboardingExample: {
243
246
  fontStyle?: undefined;
244
247
  opacity?: undefined;
245
248
  lineHeight?: undefined;
249
+ variableName?: undefined;
246
250
  defaultValue?: undefined;
247
251
  gap?: undefined;
248
252
  items?: undefined;
@@ -269,8 +273,8 @@ export declare const onboardingExample: {
269
273
  disabledWhen?: undefined;
270
274
  disabledStyle?: undefined;
271
275
  };
272
- renderWhen?: undefined;
273
276
  children?: undefined;
277
+ renderWhen?: undefined;
274
278
  } | {
275
279
  id: string;
276
280
  type: string;
@@ -282,6 +286,8 @@ export declare const onboardingExample: {
282
286
  source?: undefined;
283
287
  autoPlay?: undefined;
284
288
  loop?: undefined;
289
+ width?: undefined;
290
+ aspectRatio?: undefined;
285
291
  fit?: undefined;
286
292
  name?: undefined;
287
293
  size?: undefined;
@@ -290,11 +296,10 @@ export declare const onboardingExample: {
290
296
  controls?: undefined;
291
297
  muted?: undefined;
292
298
  contentFit?: undefined;
293
- variableName?: undefined;
294
- placeholder?: undefined;
295
- keyboardType?: undefined;
296
- returnKeyType?: undefined;
297
- autoCapitalize?: undefined;
299
+ keyboardVerticalOffset?: undefined;
300
+ horizontal?: undefined;
301
+ showsHorizontalScrollIndicator?: undefined;
302
+ contentContainerPadding?: undefined;
298
303
  content?: undefined;
299
304
  mode?: undefined;
300
305
  fontSize?: undefined;
@@ -304,6 +309,7 @@ export declare const onboardingExample: {
304
309
  fontStyle?: undefined;
305
310
  opacity?: undefined;
306
311
  lineHeight?: undefined;
312
+ variableName?: undefined;
307
313
  defaultValue?: undefined;
308
314
  gap?: undefined;
309
315
  items?: undefined;
@@ -330,8 +336,8 @@ export declare const onboardingExample: {
330
336
  disabledWhen?: undefined;
331
337
  disabledStyle?: undefined;
332
338
  };
333
- renderWhen?: undefined;
334
339
  children?: undefined;
340
+ renderWhen?: undefined;
335
341
  } | {
336
342
  id: string;
337
343
  type: string;
@@ -345,17 +351,18 @@ export declare const onboardingExample: {
345
351
  autoPlay?: undefined;
346
352
  loop?: undefined;
347
353
  url?: undefined;
354
+ width?: undefined;
355
+ aspectRatio?: undefined;
348
356
  fit?: undefined;
349
357
  resizeMode?: undefined;
350
358
  borderRadius?: undefined;
351
359
  controls?: undefined;
352
360
  muted?: undefined;
353
361
  contentFit?: undefined;
354
- variableName?: undefined;
355
- placeholder?: undefined;
356
- keyboardType?: undefined;
357
- returnKeyType?: undefined;
358
- autoCapitalize?: undefined;
362
+ keyboardVerticalOffset?: undefined;
363
+ horizontal?: undefined;
364
+ showsHorizontalScrollIndicator?: undefined;
365
+ contentContainerPadding?: undefined;
359
366
  content?: undefined;
360
367
  mode?: undefined;
361
368
  fontSize?: undefined;
@@ -365,6 +372,7 @@ export declare const onboardingExample: {
365
372
  fontStyle?: undefined;
366
373
  opacity?: undefined;
367
374
  lineHeight?: undefined;
375
+ variableName?: undefined;
368
376
  defaultValue?: undefined;
369
377
  gap?: undefined;
370
378
  items?: undefined;
@@ -391,8 +399,8 @@ export declare const onboardingExample: {
391
399
  disabledWhen?: undefined;
392
400
  disabledStyle?: undefined;
393
401
  };
394
- renderWhen?: undefined;
395
402
  children?: undefined;
403
+ renderWhen?: undefined;
396
404
  } | {
397
405
  id: string;
398
406
  type: string;
@@ -406,17 +414,81 @@ export declare const onboardingExample: {
406
414
  source?: undefined;
407
415
  autoPlay?: undefined;
408
416
  loop?: undefined;
417
+ width?: undefined;
418
+ aspectRatio?: undefined;
409
419
  fit?: undefined;
410
420
  resizeMode?: undefined;
411
421
  name?: undefined;
412
422
  size?: undefined;
413
423
  color?: undefined;
414
424
  marginVertical?: undefined;
425
+ keyboardVerticalOffset?: undefined;
426
+ horizontal?: undefined;
427
+ showsHorizontalScrollIndicator?: undefined;
428
+ contentContainerPadding?: undefined;
429
+ content?: undefined;
430
+ mode?: undefined;
431
+ fontSize?: undefined;
432
+ fontWeight?: undefined;
433
+ textAlign?: undefined;
434
+ fontFamily?: undefined;
435
+ fontStyle?: undefined;
436
+ opacity?: undefined;
437
+ lineHeight?: undefined;
415
438
  variableName?: undefined;
416
- placeholder?: undefined;
417
- keyboardType?: undefined;
418
- returnKeyType?: undefined;
419
- autoCapitalize?: undefined;
439
+ defaultValue?: undefined;
440
+ gap?: undefined;
441
+ items?: undefined;
442
+ defaultValues?: undefined;
443
+ display?: undefined;
444
+ maximumDate?: undefined;
445
+ carouselType?: undefined;
446
+ showDots?: undefined;
447
+ defaultIndex?: undefined;
448
+ overflow?: undefined;
449
+ label?: undefined;
450
+ variant?: undefined;
451
+ actions?: undefined;
452
+ padding?: undefined;
453
+ backgroundGradient?: undefined;
454
+ backgroundColor?: undefined;
455
+ shadowColor?: undefined;
456
+ shadowOffset?: undefined;
457
+ shadowOpacity?: undefined;
458
+ shadowRadius?: undefined;
459
+ elevation?: undefined;
460
+ transitionDurationMs?: undefined;
461
+ pressedStyle?: undefined;
462
+ disabledWhen?: undefined;
463
+ disabledStyle?: undefined;
464
+ };
465
+ children?: undefined;
466
+ renderWhen?: undefined;
467
+ } | {
468
+ id: string;
469
+ type: string;
470
+ props: {
471
+ keyboardVerticalOffset: number;
472
+ source?: undefined;
473
+ height?: undefined;
474
+ autoPlay?: undefined;
475
+ loop?: undefined;
476
+ url?: undefined;
477
+ width?: undefined;
478
+ aspectRatio?: undefined;
479
+ fit?: undefined;
480
+ resizeMode?: undefined;
481
+ borderRadius?: undefined;
482
+ name?: undefined;
483
+ size?: undefined;
484
+ color?: undefined;
485
+ marginVertical?: undefined;
486
+ controls?: undefined;
487
+ muted?: undefined;
488
+ contentFit?: undefined;
489
+ horizontal?: undefined;
490
+ showsHorizontalScrollIndicator?: undefined;
491
+ contentContainerPadding?: undefined;
420
492
  content?: undefined;
421
493
  mode?: undefined;
422
494
  fontSize?: undefined;
@@ -426,6 +498,7 @@ export declare const onboardingExample: {
426
498
  fontStyle?: undefined;
427
499
  opacity?: undefined;
428
500
  lineHeight?: undefined;
501
+ variableName?: undefined;
429
502
  defaultValue?: undefined;
430
503
  gap?: undefined;
431
504
  items?: undefined;
@@ -452,32 +525,44 @@ export declare const onboardingExample: {
452
525
  disabledWhen?: undefined;
453
526
  disabledStyle?: undefined;
454
527
  };
528
+ children: {
529
+ id: string;
530
+ type: string;
531
+ props: {
532
+ variableName: string;
533
+ placeholder: string;
534
+ keyboardType: string;
535
+ returnKeyType: string;
536
+ autoCapitalize: string;
537
+ marginVertical: number;
538
+ };
539
+ }[];
455
540
  renderWhen?: undefined;
456
- children?: undefined;
457
541
  } | {
458
542
  id: string;
459
543
  type: string;
460
544
  props: {
461
- variableName: string;
462
- placeholder: string;
463
- keyboardType: string;
464
- returnKeyType: string;
465
- autoCapitalize: string;
466
- marginVertical: number;
545
+ horizontal: boolean;
546
+ showsHorizontalScrollIndicator: boolean;
547
+ contentContainerPadding: number;
467
548
  source?: undefined;
468
549
  height?: undefined;
469
550
  autoPlay?: undefined;
470
551
  loop?: undefined;
471
552
  url?: undefined;
553
+ width?: undefined;
554
+ aspectRatio?: undefined;
472
555
  fit?: undefined;
473
556
  resizeMode?: undefined;
474
557
  borderRadius?: undefined;
475
558
  name?: undefined;
476
559
  size?: undefined;
477
560
  color?: undefined;
561
+ marginVertical?: undefined;
478
562
  controls?: undefined;
479
563
  muted?: undefined;
480
564
  contentFit?: undefined;
565
+ keyboardVerticalOffset?: undefined;
481
566
  content?: undefined;
482
567
  mode?: undefined;
483
568
  fontSize?: undefined;
@@ -487,6 +572,7 @@ export declare const onboardingExample: {
487
572
  fontStyle?: undefined;
488
573
  opacity?: undefined;
489
574
  lineHeight?: undefined;
575
+ variableName?: undefined;
490
576
  defaultValue?: undefined;
491
577
  gap?: undefined;
492
578
  items?: undefined;
@@ -513,8 +599,24 @@ export declare const onboardingExample: {
513
599
  disabledWhen?: undefined;
514
600
  disabledStyle?: undefined;
515
601
  };
602
+ children: {
603
+ id: string;
604
+ type: string;
605
+ props: {
606
+ content: string;
607
+ width: number;
608
+ height: number;
609
+ marginHorizontal: number;
610
+ borderWidth: number;
611
+ borderRadius: number;
612
+ borderColor: string;
613
+ paddingVertical: number;
614
+ textAlign: string;
615
+ fontSize: number;
616
+ fontWeight: string;
617
+ };
618
+ }[];
516
619
  renderWhen?: undefined;
517
- children?: undefined;
518
620
  } | {
519
621
  id: string;
520
622
  type: string;
@@ -530,6 +632,8 @@ export declare const onboardingExample: {
530
632
  autoPlay?: undefined;
531
633
  loop?: undefined;
532
634
  url?: undefined;
635
+ width?: undefined;
636
+ aspectRatio?: undefined;
533
637
  fit?: undefined;
534
638
  resizeMode?: undefined;
535
639
  borderRadius?: undefined;
@@ -539,15 +643,15 @@ export declare const onboardingExample: {
539
643
  controls?: undefined;
540
644
  muted?: undefined;
541
645
  contentFit?: undefined;
542
- variableName?: undefined;
543
- placeholder?: undefined;
544
- keyboardType?: undefined;
545
- returnKeyType?: undefined;
546
- autoCapitalize?: undefined;
646
+ keyboardVerticalOffset?: undefined;
647
+ horizontal?: undefined;
648
+ showsHorizontalScrollIndicator?: undefined;
649
+ contentContainerPadding?: undefined;
547
650
  fontFamily?: undefined;
548
651
  fontStyle?: undefined;
549
652
  opacity?: undefined;
550
653
  lineHeight?: undefined;
654
+ variableName?: undefined;
551
655
  defaultValue?: undefined;
552
656
  gap?: undefined;
553
657
  items?: undefined;
@@ -574,8 +678,8 @@ export declare const onboardingExample: {
574
678
  disabledWhen?: undefined;
575
679
  disabledStyle?: undefined;
576
680
  };
577
- renderWhen?: undefined;
578
681
  children?: undefined;
682
+ renderWhen?: undefined;
579
683
  } | {
580
684
  id: string;
581
685
  type: string;
@@ -590,6 +694,8 @@ export declare const onboardingExample: {
590
694
  autoPlay?: undefined;
591
695
  loop?: undefined;
592
696
  url?: undefined;
697
+ width?: undefined;
698
+ aspectRatio?: undefined;
593
699
  fit?: undefined;
594
700
  resizeMode?: undefined;
595
701
  borderRadius?: undefined;
@@ -600,15 +706,15 @@ export declare const onboardingExample: {
600
706
  controls?: undefined;
601
707
  muted?: undefined;
602
708
  contentFit?: undefined;
603
- variableName?: undefined;
604
- placeholder?: undefined;
605
- keyboardType?: undefined;
606
- returnKeyType?: undefined;
607
- autoCapitalize?: undefined;
709
+ keyboardVerticalOffset?: undefined;
710
+ horizontal?: undefined;
711
+ showsHorizontalScrollIndicator?: undefined;
712
+ contentContainerPadding?: undefined;
608
713
  mode?: undefined;
609
714
  fontStyle?: undefined;
610
715
  opacity?: undefined;
611
716
  lineHeight?: undefined;
717
+ variableName?: undefined;
612
718
  defaultValue?: undefined;
613
719
  gap?: undefined;
614
720
  items?: undefined;
@@ -635,8 +741,8 @@ export declare const onboardingExample: {
635
741
  disabledWhen?: undefined;
636
742
  disabledStyle?: undefined;
637
743
  };
638
- renderWhen?: undefined;
639
744
  children?: undefined;
745
+ renderWhen?: undefined;
640
746
  } | {
641
747
  id: string;
642
748
  type: string;
@@ -652,6 +758,8 @@ export declare const onboardingExample: {
652
758
  autoPlay?: undefined;
653
759
  loop?: undefined;
654
760
  url?: undefined;
761
+ width?: undefined;
762
+ aspectRatio?: undefined;
655
763
  fit?: undefined;
656
764
  resizeMode?: undefined;
657
765
  borderRadius?: undefined;
@@ -661,15 +769,15 @@ export declare const onboardingExample: {
661
769
  controls?: undefined;
662
770
  muted?: undefined;
663
771
  contentFit?: undefined;
664
- variableName?: undefined;
665
- placeholder?: undefined;
666
- keyboardType?: undefined;
667
- returnKeyType?: undefined;
668
- autoCapitalize?: undefined;
772
+ keyboardVerticalOffset?: undefined;
773
+ horizontal?: undefined;
774
+ showsHorizontalScrollIndicator?: undefined;
775
+ contentContainerPadding?: undefined;
669
776
  mode?: undefined;
670
777
  fontWeight?: undefined;
671
778
  opacity?: undefined;
672
779
  lineHeight?: undefined;
780
+ variableName?: undefined;
673
781
  defaultValue?: undefined;
674
782
  gap?: undefined;
675
783
  items?: undefined;
@@ -696,8 +804,8 @@ export declare const onboardingExample: {
696
804
  disabledWhen?: undefined;
697
805
  disabledStyle?: undefined;
698
806
  };
699
- renderWhen?: undefined;
700
807
  children?: undefined;
808
+ renderWhen?: undefined;
701
809
  } | {
702
810
  id: string;
703
811
  type: string;
@@ -711,6 +819,8 @@ export declare const onboardingExample: {
711
819
  autoPlay?: undefined;
712
820
  loop?: undefined;
713
821
  url?: undefined;
822
+ width?: undefined;
823
+ aspectRatio?: undefined;
714
824
  fit?: undefined;
715
825
  resizeMode?: undefined;
716
826
  borderRadius?: undefined;
@@ -721,16 +831,16 @@ export declare const onboardingExample: {
721
831
  controls?: undefined;
722
832
  muted?: undefined;
723
833
  contentFit?: undefined;
724
- variableName?: undefined;
725
- placeholder?: undefined;
726
- keyboardType?: undefined;
727
- returnKeyType?: undefined;
728
- autoCapitalize?: undefined;
834
+ keyboardVerticalOffset?: undefined;
835
+ horizontal?: undefined;
836
+ showsHorizontalScrollIndicator?: undefined;
837
+ contentContainerPadding?: undefined;
729
838
  mode?: undefined;
730
839
  fontWeight?: undefined;
731
840
  fontFamily?: undefined;
732
841
  fontStyle?: undefined;
733
842
  lineHeight?: undefined;
843
+ variableName?: undefined;
734
844
  defaultValue?: undefined;
735
845
  gap?: undefined;
736
846
  items?: undefined;
@@ -757,8 +867,8 @@ export declare const onboardingExample: {
757
867
  disabledWhen?: undefined;
758
868
  disabledStyle?: undefined;
759
869
  };
760
- renderWhen?: undefined;
761
870
  children?: undefined;
871
+ renderWhen?: undefined;
762
872
  } | {
763
873
  id: string;
764
874
  type: string;
@@ -773,6 +883,8 @@ export declare const onboardingExample: {
773
883
  autoPlay?: undefined;
774
884
  loop?: undefined;
775
885
  url?: undefined;
886
+ width?: undefined;
887
+ aspectRatio?: undefined;
776
888
  fit?: undefined;
777
889
  resizeMode?: undefined;
778
890
  borderRadius?: undefined;
@@ -783,15 +895,15 @@ export declare const onboardingExample: {
783
895
  controls?: undefined;
784
896
  muted?: undefined;
785
897
  contentFit?: undefined;
786
- variableName?: undefined;
787
- placeholder?: undefined;
788
- keyboardType?: undefined;
789
- returnKeyType?: undefined;
790
- autoCapitalize?: undefined;
898
+ keyboardVerticalOffset?: undefined;
899
+ horizontal?: undefined;
900
+ showsHorizontalScrollIndicator?: undefined;
901
+ contentContainerPadding?: undefined;
791
902
  mode?: undefined;
792
903
  fontWeight?: undefined;
793
904
  fontStyle?: undefined;
794
905
  lineHeight?: undefined;
906
+ variableName?: undefined;
795
907
  defaultValue?: undefined;
796
908
  gap?: undefined;
797
909
  items?: undefined;
@@ -818,8 +930,8 @@ export declare const onboardingExample: {
818
930
  disabledWhen?: undefined;
819
931
  disabledStyle?: undefined;
820
932
  };
821
- renderWhen?: undefined;
822
933
  children?: undefined;
934
+ renderWhen?: undefined;
823
935
  } | {
824
936
  id: string;
825
937
  type: string;
@@ -834,6 +946,8 @@ export declare const onboardingExample: {
834
946
  autoPlay?: undefined;
835
947
  loop?: undefined;
836
948
  url?: undefined;
949
+ width?: undefined;
950
+ aspectRatio?: undefined;
837
951
  fit?: undefined;
838
952
  resizeMode?: undefined;
839
953
  borderRadius?: undefined;
@@ -844,15 +958,15 @@ export declare const onboardingExample: {
844
958
  controls?: undefined;
845
959
  muted?: undefined;
846
960
  contentFit?: undefined;
847
- variableName?: undefined;
848
- placeholder?: undefined;
849
- keyboardType?: undefined;
850
- returnKeyType?: undefined;
851
- autoCapitalize?: undefined;
961
+ keyboardVerticalOffset?: undefined;
962
+ horizontal?: undefined;
963
+ showsHorizontalScrollIndicator?: undefined;
964
+ contentContainerPadding?: undefined;
852
965
  mode?: undefined;
853
966
  fontWeight?: undefined;
854
967
  fontFamily?: undefined;
855
968
  fontStyle?: undefined;
969
+ variableName?: undefined;
856
970
  defaultValue?: undefined;
857
971
  gap?: undefined;
858
972
  items?: undefined;
@@ -879,8 +993,8 @@ export declare const onboardingExample: {
879
993
  disabledWhen?: undefined;
880
994
  disabledStyle?: undefined;
881
995
  };
882
- renderWhen?: undefined;
883
996
  children?: undefined;
997
+ renderWhen?: undefined;
884
998
  } | {
885
999
  id: string;
886
1000
  type: string;
@@ -898,6 +1012,8 @@ export declare const onboardingExample: {
898
1012
  autoPlay?: undefined;
899
1013
  loop?: undefined;
900
1014
  url?: undefined;
1015
+ width?: undefined;
1016
+ aspectRatio?: undefined;
901
1017
  fit?: undefined;
902
1018
  resizeMode?: undefined;
903
1019
  borderRadius?: undefined;
@@ -907,10 +1023,10 @@ export declare const onboardingExample: {
907
1023
  controls?: undefined;
908
1024
  muted?: undefined;
909
1025
  contentFit?: undefined;
910
- placeholder?: undefined;
911
- keyboardType?: undefined;
912
- returnKeyType?: undefined;
913
- autoCapitalize?: undefined;
1026
+ keyboardVerticalOffset?: undefined;
1027
+ horizontal?: undefined;
1028
+ showsHorizontalScrollIndicator?: undefined;
1029
+ contentContainerPadding?: undefined;
914
1030
  content?: undefined;
915
1031
  mode?: undefined;
916
1032
  fontSize?: undefined;
@@ -943,8 +1059,8 @@ export declare const onboardingExample: {
943
1059
  disabledWhen?: undefined;
944
1060
  disabledStyle?: undefined;
945
1061
  };
946
- renderWhen?: undefined;
947
1062
  children?: undefined;
1063
+ renderWhen?: undefined;
948
1064
  } | {
949
1065
  id: string;
950
1066
  type: string;
@@ -960,6 +1076,8 @@ export declare const onboardingExample: {
960
1076
  autoPlay?: undefined;
961
1077
  loop?: undefined;
962
1078
  url?: undefined;
1079
+ width?: undefined;
1080
+ aspectRatio?: undefined;
963
1081
  fit?: undefined;
964
1082
  resizeMode?: undefined;
965
1083
  borderRadius?: undefined;
@@ -969,15 +1087,15 @@ export declare const onboardingExample: {
969
1087
  controls?: undefined;
970
1088
  muted?: undefined;
971
1089
  contentFit?: undefined;
972
- variableName?: undefined;
973
- placeholder?: undefined;
974
- keyboardType?: undefined;
975
- returnKeyType?: undefined;
976
- autoCapitalize?: undefined;
1090
+ keyboardVerticalOffset?: undefined;
1091
+ horizontal?: undefined;
1092
+ showsHorizontalScrollIndicator?: undefined;
1093
+ contentContainerPadding?: undefined;
977
1094
  fontWeight?: undefined;
978
1095
  fontFamily?: undefined;
979
1096
  fontStyle?: undefined;
980
1097
  lineHeight?: undefined;
1098
+ variableName?: undefined;
981
1099
  defaultValue?: undefined;
982
1100
  gap?: undefined;
983
1101
  items?: undefined;
@@ -1004,8 +1122,8 @@ export declare const onboardingExample: {
1004
1122
  disabledWhen?: undefined;
1005
1123
  disabledStyle?: undefined;
1006
1124
  };
1007
- renderWhen?: undefined;
1008
1125
  children?: undefined;
1126
+ renderWhen?: undefined;
1009
1127
  } | {
1010
1128
  id: string;
1011
1129
  renderWhen: {
@@ -1025,6 +1143,8 @@ export declare const onboardingExample: {
1025
1143
  autoPlay?: undefined;
1026
1144
  loop?: undefined;
1027
1145
  url?: undefined;
1146
+ width?: undefined;
1147
+ aspectRatio?: undefined;
1028
1148
  fit?: undefined;
1029
1149
  resizeMode?: undefined;
1030
1150
  borderRadius?: undefined;
@@ -1034,16 +1154,16 @@ export declare const onboardingExample: {
1034
1154
  controls?: undefined;
1035
1155
  muted?: undefined;
1036
1156
  contentFit?: undefined;
1037
- variableName?: undefined;
1038
- placeholder?: undefined;
1039
- keyboardType?: undefined;
1040
- returnKeyType?: undefined;
1041
- autoCapitalize?: undefined;
1157
+ keyboardVerticalOffset?: undefined;
1158
+ horizontal?: undefined;
1159
+ showsHorizontalScrollIndicator?: undefined;
1160
+ contentContainerPadding?: undefined;
1042
1161
  mode?: undefined;
1043
1162
  fontFamily?: undefined;
1044
1163
  fontStyle?: undefined;
1045
1164
  opacity?: undefined;
1046
1165
  lineHeight?: undefined;
1166
+ variableName?: undefined;
1047
1167
  defaultValue?: undefined;
1048
1168
  gap?: undefined;
1049
1169
  items?: undefined;
@@ -1088,6 +1208,8 @@ export declare const onboardingExample: {
1088
1208
  autoPlay?: undefined;
1089
1209
  loop?: undefined;
1090
1210
  url?: undefined;
1211
+ width?: undefined;
1212
+ aspectRatio?: undefined;
1091
1213
  fit?: undefined;
1092
1214
  resizeMode?: undefined;
1093
1215
  borderRadius?: undefined;
@@ -1097,10 +1219,10 @@ export declare const onboardingExample: {
1097
1219
  controls?: undefined;
1098
1220
  muted?: undefined;
1099
1221
  contentFit?: undefined;
1100
- placeholder?: undefined;
1101
- keyboardType?: undefined;
1102
- returnKeyType?: undefined;
1103
- autoCapitalize?: undefined;
1222
+ keyboardVerticalOffset?: undefined;
1223
+ horizontal?: undefined;
1224
+ showsHorizontalScrollIndicator?: undefined;
1225
+ contentContainerPadding?: undefined;
1104
1226
  content?: undefined;
1105
1227
  mode?: undefined;
1106
1228
  fontSize?: undefined;
@@ -1133,8 +1255,8 @@ export declare const onboardingExample: {
1133
1255
  disabledWhen?: undefined;
1134
1256
  disabledStyle?: undefined;
1135
1257
  };
1136
- renderWhen?: undefined;
1137
1258
  children?: undefined;
1259
+ renderWhen?: undefined;
1138
1260
  } | {
1139
1261
  id: string;
1140
1262
  type: string;
@@ -1150,6 +1272,8 @@ export declare const onboardingExample: {
1150
1272
  autoPlay?: undefined;
1151
1273
  loop?: undefined;
1152
1274
  url?: undefined;
1275
+ width?: undefined;
1276
+ aspectRatio?: undefined;
1153
1277
  fit?: undefined;
1154
1278
  resizeMode?: undefined;
1155
1279
  borderRadius?: undefined;
@@ -1159,10 +1283,10 @@ export declare const onboardingExample: {
1159
1283
  controls?: undefined;
1160
1284
  muted?: undefined;
1161
1285
  contentFit?: undefined;
1162
- placeholder?: undefined;
1163
- keyboardType?: undefined;
1164
- returnKeyType?: undefined;
1165
- autoCapitalize?: undefined;
1286
+ keyboardVerticalOffset?: undefined;
1287
+ horizontal?: undefined;
1288
+ showsHorizontalScrollIndicator?: undefined;
1289
+ contentContainerPadding?: undefined;
1166
1290
  content?: undefined;
1167
1291
  fontSize?: undefined;
1168
1292
  fontWeight?: undefined;
@@ -1194,8 +1318,8 @@ export declare const onboardingExample: {
1194
1318
  disabledWhen?: undefined;
1195
1319
  disabledStyle?: undefined;
1196
1320
  };
1197
- renderWhen?: undefined;
1198
1321
  children?: undefined;
1322
+ renderWhen?: undefined;
1199
1323
  } | {
1200
1324
  id: string;
1201
1325
  type: string;
@@ -1211,6 +1335,8 @@ export declare const onboardingExample: {
1211
1335
  variableName: string;
1212
1336
  source?: undefined;
1213
1337
  url?: undefined;
1338
+ width?: undefined;
1339
+ aspectRatio?: undefined;
1214
1340
  fit?: undefined;
1215
1341
  resizeMode?: undefined;
1216
1342
  name?: undefined;
@@ -1219,10 +1345,10 @@ export declare const onboardingExample: {
1219
1345
  controls?: undefined;
1220
1346
  muted?: undefined;
1221
1347
  contentFit?: undefined;
1222
- placeholder?: undefined;
1223
- keyboardType?: undefined;
1224
- returnKeyType?: undefined;
1225
- autoCapitalize?: undefined;
1348
+ keyboardVerticalOffset?: undefined;
1349
+ horizontal?: undefined;
1350
+ showsHorizontalScrollIndicator?: undefined;
1351
+ contentContainerPadding?: undefined;
1226
1352
  content?: undefined;
1227
1353
  mode?: undefined;
1228
1354
  fontSize?: undefined;
@@ -1276,6 +1402,8 @@ export declare const onboardingExample: {
1276
1402
  autoPlay?: undefined;
1277
1403
  loop?: undefined;
1278
1404
  url?: undefined;
1405
+ width?: undefined;
1406
+ aspectRatio?: undefined;
1279
1407
  fit?: undefined;
1280
1408
  resizeMode?: undefined;
1281
1409
  borderRadius?: undefined;
@@ -1285,11 +1413,10 @@ export declare const onboardingExample: {
1285
1413
  controls?: undefined;
1286
1414
  muted?: undefined;
1287
1415
  contentFit?: undefined;
1288
- variableName?: undefined;
1289
- placeholder?: undefined;
1290
- keyboardType?: undefined;
1291
- returnKeyType?: undefined;
1292
- autoCapitalize?: undefined;
1416
+ keyboardVerticalOffset?: undefined;
1417
+ horizontal?: undefined;
1418
+ showsHorizontalScrollIndicator?: undefined;
1419
+ contentContainerPadding?: undefined;
1293
1420
  content?: undefined;
1294
1421
  mode?: undefined;
1295
1422
  fontSize?: undefined;
@@ -1299,6 +1426,7 @@ export declare const onboardingExample: {
1299
1426
  fontStyle?: undefined;
1300
1427
  opacity?: undefined;
1301
1428
  lineHeight?: undefined;
1429
+ variableName?: undefined;
1302
1430
  defaultValue?: undefined;
1303
1431
  items?: undefined;
1304
1432
  defaultValues?: undefined;
@@ -1352,6 +1480,8 @@ export declare const onboardingExample: {
1352
1480
  autoPlay?: undefined;
1353
1481
  loop?: undefined;
1354
1482
  url?: undefined;
1483
+ width?: undefined;
1484
+ aspectRatio?: undefined;
1355
1485
  fit?: undefined;
1356
1486
  resizeMode?: undefined;
1357
1487
  name?: undefined;
@@ -1360,11 +1490,10 @@ export declare const onboardingExample: {
1360
1490
  controls?: undefined;
1361
1491
  muted?: undefined;
1362
1492
  contentFit?: undefined;
1363
- variableName?: undefined;
1364
- placeholder?: undefined;
1365
- keyboardType?: undefined;
1366
- returnKeyType?: undefined;
1367
- autoCapitalize?: undefined;
1493
+ keyboardVerticalOffset?: undefined;
1494
+ horizontal?: undefined;
1495
+ showsHorizontalScrollIndicator?: undefined;
1496
+ contentContainerPadding?: undefined;
1368
1497
  content?: undefined;
1369
1498
  mode?: undefined;
1370
1499
  fontSize?: undefined;
@@ -1374,6 +1503,7 @@ export declare const onboardingExample: {
1374
1503
  fontStyle?: undefined;
1375
1504
  opacity?: undefined;
1376
1505
  lineHeight?: undefined;
1506
+ variableName?: undefined;
1377
1507
  defaultValue?: undefined;
1378
1508
  gap?: undefined;
1379
1509
  items?: undefined;
@@ -1453,6 +1583,8 @@ export declare const onboardingExample: {
1453
1583
  autoPlay?: undefined;
1454
1584
  loop?: undefined;
1455
1585
  url?: undefined;
1586
+ width?: undefined;
1587
+ aspectRatio?: undefined;
1456
1588
  fit?: undefined;
1457
1589
  resizeMode?: undefined;
1458
1590
  borderRadius?: undefined;
@@ -1462,11 +1594,10 @@ export declare const onboardingExample: {
1462
1594
  controls?: undefined;
1463
1595
  muted?: undefined;
1464
1596
  contentFit?: undefined;
1465
- variableName?: undefined;
1466
- placeholder?: undefined;
1467
- keyboardType?: undefined;
1468
- returnKeyType?: undefined;
1469
- autoCapitalize?: undefined;
1597
+ keyboardVerticalOffset?: undefined;
1598
+ horizontal?: undefined;
1599
+ showsHorizontalScrollIndicator?: undefined;
1600
+ contentContainerPadding?: undefined;
1470
1601
  content?: undefined;
1471
1602
  mode?: undefined;
1472
1603
  fontSize?: undefined;
@@ -1476,6 +1607,7 @@ export declare const onboardingExample: {
1476
1607
  fontStyle?: undefined;
1477
1608
  opacity?: undefined;
1478
1609
  lineHeight?: undefined;
1610
+ variableName?: undefined;
1479
1611
  defaultValue?: undefined;
1480
1612
  gap?: undefined;
1481
1613
  items?: undefined;
@@ -1499,8 +1631,8 @@ export declare const onboardingExample: {
1499
1631
  disabledWhen?: undefined;
1500
1632
  disabledStyle?: undefined;
1501
1633
  };
1502
- renderWhen?: undefined;
1503
1634
  children?: undefined;
1635
+ renderWhen?: undefined;
1504
1636
  } | {
1505
1637
  id: string;
1506
1638
  type: string;
@@ -1523,6 +1655,8 @@ export declare const onboardingExample: {
1523
1655
  autoPlay?: undefined;
1524
1656
  loop?: undefined;
1525
1657
  url?: undefined;
1658
+ width?: undefined;
1659
+ aspectRatio?: undefined;
1526
1660
  fit?: undefined;
1527
1661
  resizeMode?: undefined;
1528
1662
  name?: undefined;
@@ -1531,11 +1665,10 @@ export declare const onboardingExample: {
1531
1665
  controls?: undefined;
1532
1666
  muted?: undefined;
1533
1667
  contentFit?: undefined;
1534
- variableName?: undefined;
1535
- placeholder?: undefined;
1536
- keyboardType?: undefined;
1537
- returnKeyType?: undefined;
1538
- autoCapitalize?: undefined;
1668
+ keyboardVerticalOffset?: undefined;
1669
+ horizontal?: undefined;
1670
+ showsHorizontalScrollIndicator?: undefined;
1671
+ contentContainerPadding?: undefined;
1539
1672
  content?: undefined;
1540
1673
  mode?: undefined;
1541
1674
  fontSize?: undefined;
@@ -1545,6 +1678,7 @@ export declare const onboardingExample: {
1545
1678
  fontStyle?: undefined;
1546
1679
  opacity?: undefined;
1547
1680
  lineHeight?: undefined;
1681
+ variableName?: undefined;
1548
1682
  defaultValue?: undefined;
1549
1683
  items?: undefined;
1550
1684
  defaultValues?: undefined;
@@ -1610,6 +1744,8 @@ export declare const onboardingExample: {
1610
1744
  autoPlay?: undefined;
1611
1745
  loop?: undefined;
1612
1746
  url?: undefined;
1747
+ width?: undefined;
1748
+ aspectRatio?: undefined;
1613
1749
  fit?: undefined;
1614
1750
  resizeMode?: undefined;
1615
1751
  borderRadius?: undefined;
@@ -1619,11 +1755,10 @@ export declare const onboardingExample: {
1619
1755
  controls?: undefined;
1620
1756
  muted?: undefined;
1621
1757
  contentFit?: undefined;
1622
- variableName?: undefined;
1623
- placeholder?: undefined;
1624
- keyboardType?: undefined;
1625
- returnKeyType?: undefined;
1626
- autoCapitalize?: undefined;
1758
+ keyboardVerticalOffset?: undefined;
1759
+ horizontal?: undefined;
1760
+ showsHorizontalScrollIndicator?: undefined;
1761
+ contentContainerPadding?: undefined;
1627
1762
  content?: undefined;
1628
1763
  mode?: undefined;
1629
1764
  fontSize?: undefined;
@@ -1633,6 +1768,7 @@ export declare const onboardingExample: {
1633
1768
  fontStyle?: undefined;
1634
1769
  opacity?: undefined;
1635
1770
  lineHeight?: undefined;
1771
+ variableName?: undefined;
1636
1772
  defaultValue?: undefined;
1637
1773
  gap?: undefined;
1638
1774
  items?: undefined;
@@ -1656,8 +1792,8 @@ export declare const onboardingExample: {
1656
1792
  disabledWhen?: undefined;
1657
1793
  disabledStyle?: undefined;
1658
1794
  };
1659
- renderWhen?: undefined;
1660
1795
  children?: undefined;
1796
+ renderWhen?: undefined;
1661
1797
  } | {
1662
1798
  id: string;
1663
1799
  type: string;
@@ -1672,6 +1808,8 @@ export declare const onboardingExample: {
1672
1808
  autoPlay?: undefined;
1673
1809
  loop?: undefined;
1674
1810
  url?: undefined;
1811
+ width?: undefined;
1812
+ aspectRatio?: undefined;
1675
1813
  fit?: undefined;
1676
1814
  resizeMode?: undefined;
1677
1815
  borderRadius?: undefined;
@@ -1681,16 +1819,16 @@ export declare const onboardingExample: {
1681
1819
  controls?: undefined;
1682
1820
  muted?: undefined;
1683
1821
  contentFit?: undefined;
1684
- variableName?: undefined;
1685
- placeholder?: undefined;
1686
- keyboardType?: undefined;
1687
- returnKeyType?: undefined;
1688
- autoCapitalize?: undefined;
1822
+ keyboardVerticalOffset?: undefined;
1823
+ horizontal?: undefined;
1824
+ showsHorizontalScrollIndicator?: undefined;
1825
+ contentContainerPadding?: undefined;
1689
1826
  mode?: undefined;
1690
1827
  textAlign?: undefined;
1691
1828
  fontFamily?: undefined;
1692
1829
  fontStyle?: undefined;
1693
1830
  lineHeight?: undefined;
1831
+ variableName?: undefined;
1694
1832
  defaultValue?: undefined;
1695
1833
  gap?: undefined;
1696
1834
  items?: undefined;
@@ -1717,8 +1855,8 @@ export declare const onboardingExample: {
1717
1855
  disabledWhen?: undefined;
1718
1856
  disabledStyle?: undefined;
1719
1857
  };
1720
- renderWhen?: undefined;
1721
1858
  children?: undefined;
1859
+ renderWhen?: undefined;
1722
1860
  } | {
1723
1861
  id: string;
1724
1862
  type: string;
@@ -1740,6 +1878,8 @@ export declare const onboardingExample: {
1740
1878
  autoPlay?: undefined;
1741
1879
  loop?: undefined;
1742
1880
  url?: undefined;
1881
+ width?: undefined;
1882
+ aspectRatio?: undefined;
1743
1883
  fit?: undefined;
1744
1884
  resizeMode?: undefined;
1745
1885
  borderRadius?: undefined;
@@ -1749,11 +1889,10 @@ export declare const onboardingExample: {
1749
1889
  controls?: undefined;
1750
1890
  muted?: undefined;
1751
1891
  contentFit?: undefined;
1752
- variableName?: undefined;
1753
- placeholder?: undefined;
1754
- keyboardType?: undefined;
1755
- returnKeyType?: undefined;
1756
- autoCapitalize?: undefined;
1892
+ keyboardVerticalOffset?: undefined;
1893
+ horizontal?: undefined;
1894
+ showsHorizontalScrollIndicator?: undefined;
1895
+ contentContainerPadding?: undefined;
1757
1896
  content?: undefined;
1758
1897
  mode?: undefined;
1759
1898
  fontSize?: undefined;
@@ -1763,6 +1902,7 @@ export declare const onboardingExample: {
1763
1902
  fontStyle?: undefined;
1764
1903
  opacity?: undefined;
1765
1904
  lineHeight?: undefined;
1905
+ variableName?: undefined;
1766
1906
  defaultValue?: undefined;
1767
1907
  gap?: undefined;
1768
1908
  items?: undefined;
@@ -1781,8 +1921,8 @@ export declare const onboardingExample: {
1781
1921
  disabledWhen?: undefined;
1782
1922
  disabledStyle?: undefined;
1783
1923
  };
1784
- renderWhen?: undefined;
1785
1924
  children?: undefined;
1925
+ renderWhen?: undefined;
1786
1926
  } | {
1787
1927
  id: string;
1788
1928
  type: string;
@@ -1801,6 +1941,8 @@ export declare const onboardingExample: {
1801
1941
  autoPlay?: undefined;
1802
1942
  loop?: undefined;
1803
1943
  url?: undefined;
1944
+ width?: undefined;
1945
+ aspectRatio?: undefined;
1804
1946
  fit?: undefined;
1805
1947
  resizeMode?: undefined;
1806
1948
  borderRadius?: undefined;
@@ -1810,11 +1952,10 @@ export declare const onboardingExample: {
1810
1952
  controls?: undefined;
1811
1953
  muted?: undefined;
1812
1954
  contentFit?: undefined;
1813
- variableName?: undefined;
1814
- placeholder?: undefined;
1815
- keyboardType?: undefined;
1816
- returnKeyType?: undefined;
1817
- autoCapitalize?: undefined;
1955
+ keyboardVerticalOffset?: undefined;
1956
+ horizontal?: undefined;
1957
+ showsHorizontalScrollIndicator?: undefined;
1958
+ contentContainerPadding?: undefined;
1818
1959
  content?: undefined;
1819
1960
  mode?: undefined;
1820
1961
  fontSize?: undefined;
@@ -1824,6 +1965,7 @@ export declare const onboardingExample: {
1824
1965
  fontStyle?: undefined;
1825
1966
  opacity?: undefined;
1826
1967
  lineHeight?: undefined;
1968
+ variableName?: undefined;
1827
1969
  defaultValue?: undefined;
1828
1970
  gap?: undefined;
1829
1971
  items?: undefined;
@@ -1845,8 +1987,8 @@ export declare const onboardingExample: {
1845
1987
  disabledWhen?: undefined;
1846
1988
  disabledStyle?: undefined;
1847
1989
  };
1848
- renderWhen?: undefined;
1849
1990
  children?: undefined;
1991
+ renderWhen?: undefined;
1850
1992
  } | {
1851
1993
  id: string;
1852
1994
  type: string;
@@ -1872,6 +2014,8 @@ export declare const onboardingExample: {
1872
2014
  autoPlay?: undefined;
1873
2015
  loop?: undefined;
1874
2016
  url?: undefined;
2017
+ width?: undefined;
2018
+ aspectRatio?: undefined;
1875
2019
  fit?: undefined;
1876
2020
  resizeMode?: undefined;
1877
2021
  borderRadius?: undefined;
@@ -1881,11 +2025,10 @@ export declare const onboardingExample: {
1881
2025
  controls?: undefined;
1882
2026
  muted?: undefined;
1883
2027
  contentFit?: undefined;
1884
- variableName?: undefined;
1885
- placeholder?: undefined;
1886
- keyboardType?: undefined;
1887
- returnKeyType?: undefined;
1888
- autoCapitalize?: undefined;
2028
+ keyboardVerticalOffset?: undefined;
2029
+ horizontal?: undefined;
2030
+ showsHorizontalScrollIndicator?: undefined;
2031
+ contentContainerPadding?: undefined;
1889
2032
  content?: undefined;
1890
2033
  mode?: undefined;
1891
2034
  fontSize?: undefined;
@@ -1895,6 +2038,7 @@ export declare const onboardingExample: {
1895
2038
  fontStyle?: undefined;
1896
2039
  opacity?: undefined;
1897
2040
  lineHeight?: undefined;
2041
+ variableName?: undefined;
1898
2042
  defaultValue?: undefined;
1899
2043
  gap?: undefined;
1900
2044
  items?: undefined;
@@ -1916,8 +2060,8 @@ export declare const onboardingExample: {
1916
2060
  transitionDurationMs?: undefined;
1917
2061
  pressedStyle?: undefined;
1918
2062
  };
1919
- renderWhen?: undefined;
1920
2063
  children?: undefined;
2064
+ renderWhen?: undefined;
1921
2065
  } | {
1922
2066
  id: string;
1923
2067
  type: string;
@@ -1936,6 +2080,8 @@ export declare const onboardingExample: {
1936
2080
  autoPlay?: undefined;
1937
2081
  loop?: undefined;
1938
2082
  url?: undefined;
2083
+ width?: undefined;
2084
+ aspectRatio?: undefined;
1939
2085
  fit?: undefined;
1940
2086
  resizeMode?: undefined;
1941
2087
  borderRadius?: undefined;
@@ -1945,11 +2091,10 @@ export declare const onboardingExample: {
1945
2091
  controls?: undefined;
1946
2092
  muted?: undefined;
1947
2093
  contentFit?: undefined;
1948
- variableName?: undefined;
1949
- placeholder?: undefined;
1950
- keyboardType?: undefined;
1951
- returnKeyType?: undefined;
1952
- autoCapitalize?: undefined;
2094
+ keyboardVerticalOffset?: undefined;
2095
+ horizontal?: undefined;
2096
+ showsHorizontalScrollIndicator?: undefined;
2097
+ contentContainerPadding?: undefined;
1953
2098
  content?: undefined;
1954
2099
  mode?: undefined;
1955
2100
  fontSize?: undefined;
@@ -1959,6 +2104,7 @@ export declare const onboardingExample: {
1959
2104
  fontStyle?: undefined;
1960
2105
  opacity?: undefined;
1961
2106
  lineHeight?: undefined;
2107
+ variableName?: undefined;
1962
2108
  defaultValue?: undefined;
1963
2109
  gap?: undefined;
1964
2110
  items?: undefined;
@@ -1982,8 +2128,8 @@ export declare const onboardingExample: {
1982
2128
  disabledWhen?: undefined;
1983
2129
  disabledStyle?: undefined;
1984
2130
  };
1985
- renderWhen?: undefined;
1986
2131
  children?: undefined;
2132
+ renderWhen?: undefined;
1987
2133
  } | {
1988
2134
  id: string;
1989
2135
  type: string;
@@ -2022,6 +2168,8 @@ export declare const onboardingExample: {
2022
2168
  autoPlay?: undefined;
2023
2169
  loop?: undefined;
2024
2170
  url?: undefined;
2171
+ width?: undefined;
2172
+ aspectRatio?: undefined;
2025
2173
  fit?: undefined;
2026
2174
  resizeMode?: undefined;
2027
2175
  borderRadius?: undefined;
@@ -2031,11 +2179,10 @@ export declare const onboardingExample: {
2031
2179
  controls?: undefined;
2032
2180
  muted?: undefined;
2033
2181
  contentFit?: undefined;
2034
- variableName?: undefined;
2035
- placeholder?: undefined;
2036
- keyboardType?: undefined;
2037
- returnKeyType?: undefined;
2038
- autoCapitalize?: undefined;
2182
+ keyboardVerticalOffset?: undefined;
2183
+ horizontal?: undefined;
2184
+ showsHorizontalScrollIndicator?: undefined;
2185
+ contentContainerPadding?: undefined;
2039
2186
  content?: undefined;
2040
2187
  mode?: undefined;
2041
2188
  fontSize?: undefined;
@@ -2045,6 +2192,7 @@ export declare const onboardingExample: {
2045
2192
  fontStyle?: undefined;
2046
2193
  opacity?: undefined;
2047
2194
  lineHeight?: undefined;
2195
+ variableName?: undefined;
2048
2196
  defaultValue?: undefined;
2049
2197
  gap?: undefined;
2050
2198
  items?: undefined;
@@ -2059,8 +2207,8 @@ export declare const onboardingExample: {
2059
2207
  backgroundGradient?: undefined;
2060
2208
  backgroundColor?: undefined;
2061
2209
  };
2062
- renderWhen?: undefined;
2063
2210
  children?: undefined;
2211
+ renderWhen?: undefined;
2064
2212
  })[];
2065
2213
  }[];
2066
2214
  }[];