@rocapine/react-native-onboarding 1.31.0 → 1.33.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.
Files changed (66) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js.map +1 -1
  4. package/dist/onboarding-example.d.ts +330 -30
  5. package/dist/onboarding-example.d.ts.map +1 -1
  6. package/dist/onboarding-example.js +52 -0
  7. package/dist/onboarding-example.js.map +1 -1
  8. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +220 -0
  9. package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
  10. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +83 -0
  11. package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
  12. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +640 -0
  13. package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
  14. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +160 -0
  15. package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
  16. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +160 -0
  17. package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
  18. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +160 -0
  19. package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
  20. package/dist/steps/ComposableScreen/elements/IconElement.d.ts +160 -0
  21. package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
  22. package/dist/steps/ComposableScreen/elements/ImageElement.d.ts +160 -0
  23. package/dist/steps/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
  24. package/dist/steps/ComposableScreen/elements/InputElement.d.ts +160 -0
  25. package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
  26. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +160 -0
  27. package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -1
  28. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +160 -0
  29. package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
  30. package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts +160 -0
  31. package/dist/steps/ComposableScreen/elements/ProgressIndicatorElement.d.ts.map +1 -1
  32. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +160 -0
  33. package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
  34. package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts +303 -0
  35. package/dist/steps/ComposableScreen/elements/RichTextElement.d.ts.map +1 -0
  36. package/dist/steps/ComposableScreen/elements/RichTextElement.js +20 -0
  37. package/dist/steps/ComposableScreen/elements/RichTextElement.js.map +1 -0
  38. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +160 -0
  39. package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
  40. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts +160 -0
  41. package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
  42. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts +160 -0
  43. package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -1
  44. package/dist/steps/ComposableScreen/elements/StackElement.d.ts +160 -0
  45. package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
  46. package/dist/steps/ComposableScreen/elements/TextElement.d.ts +200 -0
  47. package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
  48. package/dist/steps/ComposableScreen/elements/TextElement.js +6 -0
  49. package/dist/steps/ComposableScreen/elements/TextElement.js.map +1 -1
  50. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +160 -0
  51. package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
  52. package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts +160 -0
  53. package/dist/steps/ComposableScreen/elements/WheelPickerElement.d.ts.map +1 -1
  54. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts +160 -0
  55. package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
  56. package/dist/steps/ComposableScreen/types.d.ts +12 -0
  57. package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
  58. package/dist/steps/ComposableScreen/types.js +15 -2
  59. package/dist/steps/ComposableScreen/types.js.map +1 -1
  60. package/package.json +1 -1
  61. package/src/index.ts +13 -0
  62. package/src/onboarding-example.ts +52 -0
  63. package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +211 -0
  64. package/src/steps/ComposableScreen/elements/RichTextElement.ts +55 -0
  65. package/src/steps/ComposableScreen/elements/TextElement.ts +14 -0
  66. package/src/steps/ComposableScreen/types.ts +39 -2
@@ -170,12 +170,14 @@ export declare const onboardingExample: {
170
170
  fit?: undefined;
171
171
  resizeMode?: undefined;
172
172
  borderRadius?: undefined;
173
+ animation?: undefined;
173
174
  name?: undefined;
174
175
  size?: undefined;
175
176
  color?: undefined;
176
177
  fill?: undefined;
177
178
  fillOpacity?: undefined;
178
179
  marginVertical?: undefined;
180
+ transform?: undefined;
179
181
  variant?: undefined;
180
182
  autoplay?: undefined;
181
183
  initialValue?: undefined;
@@ -194,10 +196,12 @@ export declare const onboardingExample: {
194
196
  fontSize?: undefined;
195
197
  textAlign?: undefined;
196
198
  opacity?: undefined;
199
+ alignItems?: undefined;
200
+ justifyContent?: undefined;
201
+ fontWeight?: undefined;
197
202
  horizontal?: undefined;
198
203
  showsHorizontalScrollIndicator?: undefined;
199
204
  contentContainerPadding?: undefined;
200
- fontWeight?: undefined;
201
205
  fontFamily?: undefined;
202
206
  fontStyle?: undefined;
203
207
  lineHeight?: undefined;
@@ -245,12 +249,14 @@ export declare const onboardingExample: {
245
249
  loop?: undefined;
246
250
  resizeMode?: undefined;
247
251
  borderRadius?: undefined;
252
+ animation?: undefined;
248
253
  name?: undefined;
249
254
  size?: undefined;
250
255
  color?: undefined;
251
256
  fill?: undefined;
252
257
  fillOpacity?: undefined;
253
258
  marginVertical?: undefined;
259
+ transform?: undefined;
254
260
  variant?: undefined;
255
261
  autoplay?: undefined;
256
262
  initialValue?: undefined;
@@ -269,10 +275,12 @@ export declare const onboardingExample: {
269
275
  fontSize?: undefined;
270
276
  textAlign?: undefined;
271
277
  opacity?: undefined;
278
+ alignItems?: undefined;
279
+ justifyContent?: undefined;
280
+ fontWeight?: undefined;
272
281
  horizontal?: undefined;
273
282
  showsHorizontalScrollIndicator?: undefined;
274
283
  contentContainerPadding?: undefined;
275
- fontWeight?: undefined;
276
284
  fontFamily?: undefined;
277
285
  fontStyle?: undefined;
278
286
  lineHeight?: undefined;
@@ -314,6 +322,16 @@ export declare const onboardingExample: {
314
322
  height: number;
315
323
  resizeMode: string;
316
324
  borderRadius: number;
325
+ animation: {
326
+ entering: {
327
+ preset: string;
328
+ duration: number;
329
+ delay: number;
330
+ easing: string;
331
+ spring?: undefined;
332
+ };
333
+ effect?: undefined;
334
+ };
317
335
  source?: undefined;
318
336
  autoPlay?: undefined;
319
337
  loop?: undefined;
@@ -326,6 +344,7 @@ export declare const onboardingExample: {
326
344
  fill?: undefined;
327
345
  fillOpacity?: undefined;
328
346
  marginVertical?: undefined;
347
+ transform?: undefined;
329
348
  variant?: undefined;
330
349
  autoplay?: undefined;
331
350
  initialValue?: undefined;
@@ -344,10 +363,12 @@ export declare const onboardingExample: {
344
363
  fontSize?: undefined;
345
364
  textAlign?: undefined;
346
365
  opacity?: undefined;
366
+ alignItems?: undefined;
367
+ justifyContent?: undefined;
368
+ fontWeight?: undefined;
347
369
  horizontal?: undefined;
348
370
  showsHorizontalScrollIndicator?: undefined;
349
371
  contentContainerPadding?: undefined;
350
- fontWeight?: undefined;
351
372
  fontFamily?: undefined;
352
373
  fontStyle?: undefined;
353
374
  lineHeight?: undefined;
@@ -391,6 +412,27 @@ export declare const onboardingExample: {
391
412
  fill: string;
392
413
  fillOpacity: number;
393
414
  marginVertical: number;
415
+ transform: {
416
+ rotate: number;
417
+ };
418
+ animation: {
419
+ entering: {
420
+ preset: string;
421
+ duration: number;
422
+ spring: {
423
+ damping: number;
424
+ stiffness: number;
425
+ };
426
+ delay?: undefined;
427
+ easing?: undefined;
428
+ };
429
+ effect: {
430
+ preset: string;
431
+ duration: number;
432
+ minScale: number;
433
+ maxScale: number;
434
+ };
435
+ };
394
436
  source?: undefined;
395
437
  height?: undefined;
396
438
  autoPlay?: undefined;
@@ -419,10 +461,12 @@ export declare const onboardingExample: {
419
461
  fontSize?: undefined;
420
462
  textAlign?: undefined;
421
463
  opacity?: undefined;
464
+ alignItems?: undefined;
465
+ justifyContent?: undefined;
466
+ fontWeight?: undefined;
422
467
  horizontal?: undefined;
423
468
  showsHorizontalScrollIndicator?: undefined;
424
469
  contentContainerPadding?: undefined;
425
- fontWeight?: undefined;
426
470
  fontFamily?: undefined;
427
471
  fontStyle?: undefined;
428
472
  lineHeight?: undefined;
@@ -478,11 +522,13 @@ export declare const onboardingExample: {
478
522
  fit?: undefined;
479
523
  resizeMode?: undefined;
480
524
  borderRadius?: undefined;
525
+ animation?: undefined;
481
526
  name?: undefined;
482
527
  size?: undefined;
483
528
  color?: undefined;
484
529
  fill?: undefined;
485
530
  fillOpacity?: undefined;
531
+ transform?: undefined;
486
532
  delay?: undefined;
487
533
  alignSelf?: undefined;
488
534
  controls?: undefined;
@@ -494,10 +540,12 @@ export declare const onboardingExample: {
494
540
  fontSize?: undefined;
495
541
  textAlign?: undefined;
496
542
  opacity?: undefined;
543
+ alignItems?: undefined;
544
+ justifyContent?: undefined;
545
+ fontWeight?: undefined;
497
546
  horizontal?: undefined;
498
547
  showsHorizontalScrollIndicator?: undefined;
499
548
  contentContainerPadding?: undefined;
500
- fontWeight?: undefined;
501
549
  fontFamily?: undefined;
502
550
  fontStyle?: undefined;
503
551
  lineHeight?: undefined;
@@ -555,11 +603,13 @@ export declare const onboardingExample: {
555
603
  fit?: undefined;
556
604
  resizeMode?: undefined;
557
605
  borderRadius?: undefined;
606
+ animation?: undefined;
558
607
  name?: undefined;
559
608
  color?: undefined;
560
609
  fill?: undefined;
561
610
  fillOpacity?: undefined;
562
611
  marginVertical?: undefined;
612
+ transform?: undefined;
563
613
  controls?: undefined;
564
614
  muted?: undefined;
565
615
  contentFit?: undefined;
@@ -569,10 +619,12 @@ export declare const onboardingExample: {
569
619
  fontSize?: undefined;
570
620
  textAlign?: undefined;
571
621
  opacity?: undefined;
622
+ alignItems?: undefined;
623
+ justifyContent?: undefined;
624
+ fontWeight?: undefined;
572
625
  horizontal?: undefined;
573
626
  showsHorizontalScrollIndicator?: undefined;
574
627
  contentContainerPadding?: undefined;
575
- fontWeight?: undefined;
576
628
  fontFamily?: undefined;
577
629
  fontStyle?: undefined;
578
630
  lineHeight?: undefined;
@@ -623,12 +675,14 @@ export declare const onboardingExample: {
623
675
  aspectRatio?: undefined;
624
676
  fit?: undefined;
625
677
  resizeMode?: undefined;
678
+ animation?: undefined;
626
679
  name?: undefined;
627
680
  size?: undefined;
628
681
  color?: undefined;
629
682
  fill?: undefined;
630
683
  fillOpacity?: undefined;
631
684
  marginVertical?: undefined;
685
+ transform?: undefined;
632
686
  variant?: undefined;
633
687
  autoplay?: undefined;
634
688
  initialValue?: undefined;
@@ -644,10 +698,12 @@ export declare const onboardingExample: {
644
698
  fontSize?: undefined;
645
699
  textAlign?: undefined;
646
700
  opacity?: undefined;
701
+ alignItems?: undefined;
702
+ justifyContent?: undefined;
703
+ fontWeight?: undefined;
647
704
  horizontal?: undefined;
648
705
  showsHorizontalScrollIndicator?: undefined;
649
706
  contentContainerPadding?: undefined;
650
- fontWeight?: undefined;
651
707
  fontFamily?: undefined;
652
708
  fontStyle?: undefined;
653
709
  lineHeight?: undefined;
@@ -696,12 +752,14 @@ export declare const onboardingExample: {
696
752
  fit?: undefined;
697
753
  resizeMode?: undefined;
698
754
  borderRadius?: undefined;
755
+ animation?: undefined;
699
756
  name?: undefined;
700
757
  size?: undefined;
701
758
  color?: undefined;
702
759
  fill?: undefined;
703
760
  fillOpacity?: undefined;
704
761
  marginVertical?: undefined;
762
+ transform?: undefined;
705
763
  variant?: undefined;
706
764
  autoplay?: undefined;
707
765
  initialValue?: undefined;
@@ -719,10 +777,12 @@ export declare const onboardingExample: {
719
777
  fontSize?: undefined;
720
778
  textAlign?: undefined;
721
779
  opacity?: undefined;
780
+ alignItems?: undefined;
781
+ justifyContent?: undefined;
782
+ fontWeight?: undefined;
722
783
  horizontal?: undefined;
723
784
  showsHorizontalScrollIndicator?: undefined;
724
785
  contentContainerPadding?: undefined;
725
- fontWeight?: undefined;
726
786
  fontFamily?: undefined;
727
787
  fontStyle?: undefined;
728
788
  lineHeight?: undefined;
@@ -792,11 +852,13 @@ export declare const onboardingExample: {
792
852
  fit?: undefined;
793
853
  resizeMode?: undefined;
794
854
  borderRadius?: undefined;
855
+ animation?: undefined;
795
856
  name?: undefined;
796
857
  size?: undefined;
797
858
  color?: undefined;
798
859
  fill?: undefined;
799
860
  fillOpacity?: undefined;
861
+ transform?: undefined;
800
862
  variant?: undefined;
801
863
  autoplay?: undefined;
802
864
  initialValue?: undefined;
@@ -810,10 +872,12 @@ export declare const onboardingExample: {
810
872
  muted?: undefined;
811
873
  contentFit?: undefined;
812
874
  keyboardVerticalOffset?: undefined;
875
+ alignItems?: undefined;
876
+ justifyContent?: undefined;
877
+ fontWeight?: undefined;
813
878
  horizontal?: undefined;
814
879
  showsHorizontalScrollIndicator?: undefined;
815
880
  contentContainerPadding?: undefined;
816
- fontWeight?: undefined;
817
881
  fontFamily?: undefined;
818
882
  fontStyle?: undefined;
819
883
  lineHeight?: undefined;
@@ -882,11 +946,13 @@ export declare const onboardingExample: {
882
946
  fit?: undefined;
883
947
  resizeMode?: undefined;
884
948
  borderRadius?: undefined;
949
+ animation?: undefined;
885
950
  name?: undefined;
886
951
  size?: undefined;
887
952
  color?: undefined;
888
953
  fill?: undefined;
889
954
  fillOpacity?: undefined;
955
+ transform?: undefined;
890
956
  variant?: undefined;
891
957
  autoplay?: undefined;
892
958
  initialValue?: undefined;
@@ -902,10 +968,12 @@ export declare const onboardingExample: {
902
968
  keyboardVerticalOffset?: undefined;
903
969
  mode?: undefined;
904
970
  opacity?: undefined;
971
+ alignItems?: undefined;
972
+ justifyContent?: undefined;
973
+ fontWeight?: undefined;
905
974
  horizontal?: undefined;
906
975
  showsHorizontalScrollIndicator?: undefined;
907
976
  contentContainerPadding?: undefined;
908
- fontWeight?: undefined;
909
977
  fontFamily?: undefined;
910
978
  fontStyle?: undefined;
911
979
  lineHeight?: undefined;
@@ -939,6 +1007,138 @@ export declare const onboardingExample: {
939
1007
  };
940
1008
  children?: undefined;
941
1009
  renderWhen?: undefined;
1010
+ } | {
1011
+ id: string;
1012
+ type: string;
1013
+ props: {
1014
+ alignItems: string;
1015
+ justifyContent: string;
1016
+ marginVertical: number;
1017
+ fontSize: number;
1018
+ fontWeight: string;
1019
+ source?: undefined;
1020
+ height?: undefined;
1021
+ autoPlay?: undefined;
1022
+ loop?: undefined;
1023
+ url?: undefined;
1024
+ width?: undefined;
1025
+ aspectRatio?: undefined;
1026
+ fit?: undefined;
1027
+ resizeMode?: undefined;
1028
+ borderRadius?: undefined;
1029
+ animation?: undefined;
1030
+ name?: undefined;
1031
+ size?: undefined;
1032
+ color?: undefined;
1033
+ fill?: undefined;
1034
+ fillOpacity?: undefined;
1035
+ transform?: undefined;
1036
+ variant?: undefined;
1037
+ autoplay?: undefined;
1038
+ initialValue?: undefined;
1039
+ duration?: undefined;
1040
+ easing?: undefined;
1041
+ thickness?: undefined;
1042
+ showLabel?: undefined;
1043
+ delay?: undefined;
1044
+ alignSelf?: undefined;
1045
+ controls?: undefined;
1046
+ muted?: undefined;
1047
+ contentFit?: undefined;
1048
+ keyboardVerticalOffset?: undefined;
1049
+ content?: undefined;
1050
+ mode?: undefined;
1051
+ textAlign?: undefined;
1052
+ opacity?: undefined;
1053
+ horizontal?: undefined;
1054
+ showsHorizontalScrollIndicator?: undefined;
1055
+ contentContainerPadding?: undefined;
1056
+ fontFamily?: undefined;
1057
+ fontStyle?: undefined;
1058
+ lineHeight?: undefined;
1059
+ variableName?: undefined;
1060
+ defaultValue?: undefined;
1061
+ showTick?: undefined;
1062
+ gap?: undefined;
1063
+ items?: undefined;
1064
+ defaultValues?: undefined;
1065
+ display?: undefined;
1066
+ maximumDate?: undefined;
1067
+ range?: undefined;
1068
+ carouselType?: undefined;
1069
+ showDots?: undefined;
1070
+ defaultIndex?: undefined;
1071
+ overflow?: undefined;
1072
+ label?: undefined;
1073
+ actions?: undefined;
1074
+ padding?: undefined;
1075
+ backgroundGradient?: undefined;
1076
+ backgroundColor?: undefined;
1077
+ shadowColor?: undefined;
1078
+ shadowOffset?: undefined;
1079
+ shadowOpacity?: undefined;
1080
+ shadowRadius?: undefined;
1081
+ elevation?: undefined;
1082
+ transitionDurationMs?: undefined;
1083
+ pressedStyle?: undefined;
1084
+ disabledWhen?: undefined;
1085
+ disabledStyle?: undefined;
1086
+ };
1087
+ children: ({
1088
+ id: string;
1089
+ type: string;
1090
+ props: {
1091
+ content: string;
1092
+ fontWeight?: undefined;
1093
+ color?: undefined;
1094
+ backgroundColor?: undefined;
1095
+ paddingHorizontal?: undefined;
1096
+ paddingVertical?: undefined;
1097
+ borderRadius?: undefined;
1098
+ marginHorizontal?: undefined;
1099
+ transform?: undefined;
1100
+ mode?: undefined;
1101
+ };
1102
+ renderWhen?: undefined;
1103
+ } | {
1104
+ id: string;
1105
+ type: string;
1106
+ props: {
1107
+ content: string;
1108
+ fontWeight: string;
1109
+ color: string;
1110
+ backgroundColor: string;
1111
+ paddingHorizontal: number;
1112
+ paddingVertical: number;
1113
+ borderRadius: number;
1114
+ marginHorizontal: number;
1115
+ transform: {
1116
+ rotate: number;
1117
+ };
1118
+ mode?: undefined;
1119
+ };
1120
+ renderWhen?: undefined;
1121
+ } | {
1122
+ id: string;
1123
+ type: string;
1124
+ renderWhen: {
1125
+ variable: string;
1126
+ operator: string;
1127
+ };
1128
+ props: {
1129
+ content: string;
1130
+ mode: string;
1131
+ fontWeight?: undefined;
1132
+ color?: undefined;
1133
+ backgroundColor?: undefined;
1134
+ paddingHorizontal?: undefined;
1135
+ paddingVertical?: undefined;
1136
+ borderRadius?: undefined;
1137
+ marginHorizontal?: undefined;
1138
+ transform?: undefined;
1139
+ };
1140
+ })[];
1141
+ renderWhen?: undefined;
942
1142
  } | {
943
1143
  id: string;
944
1144
  type: string;
@@ -956,12 +1156,14 @@ export declare const onboardingExample: {
956
1156
  fit?: undefined;
957
1157
  resizeMode?: undefined;
958
1158
  borderRadius?: undefined;
1159
+ animation?: undefined;
959
1160
  name?: undefined;
960
1161
  size?: undefined;
961
1162
  color?: undefined;
962
1163
  fill?: undefined;
963
1164
  fillOpacity?: undefined;
964
1165
  marginVertical?: undefined;
1166
+ transform?: undefined;
965
1167
  variant?: undefined;
966
1168
  autoplay?: undefined;
967
1169
  initialValue?: undefined;
@@ -980,6 +1182,8 @@ export declare const onboardingExample: {
980
1182
  fontSize?: undefined;
981
1183
  textAlign?: undefined;
982
1184
  opacity?: undefined;
1185
+ alignItems?: undefined;
1186
+ justifyContent?: undefined;
983
1187
  fontWeight?: undefined;
984
1188
  fontFamily?: undefined;
985
1189
  fontStyle?: undefined;
@@ -1050,11 +1254,13 @@ export declare const onboardingExample: {
1050
1254
  fit?: undefined;
1051
1255
  resizeMode?: undefined;
1052
1256
  borderRadius?: undefined;
1257
+ animation?: undefined;
1053
1258
  name?: undefined;
1054
1259
  size?: undefined;
1055
1260
  color?: undefined;
1056
1261
  fill?: undefined;
1057
1262
  fillOpacity?: undefined;
1263
+ transform?: undefined;
1058
1264
  variant?: undefined;
1059
1265
  autoplay?: undefined;
1060
1266
  initialValue?: undefined;
@@ -1069,6 +1275,8 @@ export declare const onboardingExample: {
1069
1275
  contentFit?: undefined;
1070
1276
  keyboardVerticalOffset?: undefined;
1071
1277
  opacity?: undefined;
1278
+ alignItems?: undefined;
1279
+ justifyContent?: undefined;
1072
1280
  horizontal?: undefined;
1073
1281
  showsHorizontalScrollIndicator?: undefined;
1074
1282
  contentContainerPadding?: undefined;
@@ -1124,12 +1332,14 @@ export declare const onboardingExample: {
1124
1332
  fit?: undefined;
1125
1333
  resizeMode?: undefined;
1126
1334
  borderRadius?: undefined;
1335
+ animation?: undefined;
1127
1336
  name?: undefined;
1128
1337
  size?: undefined;
1129
1338
  color?: undefined;
1130
1339
  fill?: undefined;
1131
1340
  fillOpacity?: undefined;
1132
1341
  marginVertical?: undefined;
1342
+ transform?: undefined;
1133
1343
  variant?: undefined;
1134
1344
  autoplay?: undefined;
1135
1345
  initialValue?: undefined;
@@ -1145,6 +1355,8 @@ export declare const onboardingExample: {
1145
1355
  keyboardVerticalOffset?: undefined;
1146
1356
  mode?: undefined;
1147
1357
  opacity?: undefined;
1358
+ alignItems?: undefined;
1359
+ justifyContent?: undefined;
1148
1360
  horizontal?: undefined;
1149
1361
  showsHorizontalScrollIndicator?: undefined;
1150
1362
  contentContainerPadding?: undefined;
@@ -1200,11 +1412,13 @@ export declare const onboardingExample: {
1200
1412
  fit?: undefined;
1201
1413
  resizeMode?: undefined;
1202
1414
  borderRadius?: undefined;
1415
+ animation?: undefined;
1203
1416
  name?: undefined;
1204
1417
  size?: undefined;
1205
1418
  color?: undefined;
1206
1419
  fill?: undefined;
1207
1420
  fillOpacity?: undefined;
1421
+ transform?: undefined;
1208
1422
  variant?: undefined;
1209
1423
  autoplay?: undefined;
1210
1424
  initialValue?: undefined;
@@ -1220,10 +1434,12 @@ export declare const onboardingExample: {
1220
1434
  keyboardVerticalOffset?: undefined;
1221
1435
  mode?: undefined;
1222
1436
  opacity?: undefined;
1437
+ alignItems?: undefined;
1438
+ justifyContent?: undefined;
1439
+ fontWeight?: undefined;
1223
1440
  horizontal?: undefined;
1224
1441
  showsHorizontalScrollIndicator?: undefined;
1225
1442
  contentContainerPadding?: undefined;
1226
- fontWeight?: undefined;
1227
1443
  lineHeight?: undefined;
1228
1444
  variableName?: undefined;
1229
1445
  defaultValue?: undefined;
@@ -1273,12 +1489,14 @@ export declare const onboardingExample: {
1273
1489
  fit?: undefined;
1274
1490
  resizeMode?: undefined;
1275
1491
  borderRadius?: undefined;
1492
+ animation?: undefined;
1276
1493
  name?: undefined;
1277
1494
  size?: undefined;
1278
1495
  color?: undefined;
1279
1496
  fill?: undefined;
1280
1497
  fillOpacity?: undefined;
1281
1498
  marginVertical?: undefined;
1499
+ transform?: undefined;
1282
1500
  variant?: undefined;
1283
1501
  autoplay?: undefined;
1284
1502
  initialValue?: undefined;
@@ -1293,10 +1511,12 @@ export declare const onboardingExample: {
1293
1511
  contentFit?: undefined;
1294
1512
  keyboardVerticalOffset?: undefined;
1295
1513
  mode?: undefined;
1514
+ alignItems?: undefined;
1515
+ justifyContent?: undefined;
1516
+ fontWeight?: undefined;
1296
1517
  horizontal?: undefined;
1297
1518
  showsHorizontalScrollIndicator?: undefined;
1298
1519
  contentContainerPadding?: undefined;
1299
- fontWeight?: undefined;
1300
1520
  fontFamily?: undefined;
1301
1521
  fontStyle?: undefined;
1302
1522
  lineHeight?: undefined;
@@ -1349,12 +1569,14 @@ export declare const onboardingExample: {
1349
1569
  fit?: undefined;
1350
1570
  resizeMode?: undefined;
1351
1571
  borderRadius?: undefined;
1572
+ animation?: undefined;
1352
1573
  name?: undefined;
1353
1574
  size?: undefined;
1354
1575
  color?: undefined;
1355
1576
  fill?: undefined;
1356
1577
  fillOpacity?: undefined;
1357
1578
  marginVertical?: undefined;
1579
+ transform?: undefined;
1358
1580
  variant?: undefined;
1359
1581
  autoplay?: undefined;
1360
1582
  initialValue?: undefined;
@@ -1369,10 +1591,12 @@ export declare const onboardingExample: {
1369
1591
  contentFit?: undefined;
1370
1592
  keyboardVerticalOffset?: undefined;
1371
1593
  mode?: undefined;
1594
+ alignItems?: undefined;
1595
+ justifyContent?: undefined;
1596
+ fontWeight?: undefined;
1372
1597
  horizontal?: undefined;
1373
1598
  showsHorizontalScrollIndicator?: undefined;
1374
1599
  contentContainerPadding?: undefined;
1375
- fontWeight?: undefined;
1376
1600
  fontStyle?: undefined;
1377
1601
  lineHeight?: undefined;
1378
1602
  variableName?: undefined;
@@ -1424,12 +1648,14 @@ export declare const onboardingExample: {
1424
1648
  fit?: undefined;
1425
1649
  resizeMode?: undefined;
1426
1650
  borderRadius?: undefined;
1651
+ animation?: undefined;
1427
1652
  name?: undefined;
1428
1653
  size?: undefined;
1429
1654
  color?: undefined;
1430
1655
  fill?: undefined;
1431
1656
  fillOpacity?: undefined;
1432
1657
  marginVertical?: undefined;
1658
+ transform?: undefined;
1433
1659
  variant?: undefined;
1434
1660
  autoplay?: undefined;
1435
1661
  initialValue?: undefined;
@@ -1444,10 +1670,12 @@ export declare const onboardingExample: {
1444
1670
  contentFit?: undefined;
1445
1671
  keyboardVerticalOffset?: undefined;
1446
1672
  mode?: undefined;
1673
+ alignItems?: undefined;
1674
+ justifyContent?: undefined;
1675
+ fontWeight?: undefined;
1447
1676
  horizontal?: undefined;
1448
1677
  showsHorizontalScrollIndicator?: undefined;
1449
1678
  contentContainerPadding?: undefined;
1450
- fontWeight?: undefined;
1451
1679
  fontFamily?: undefined;
1452
1680
  fontStyle?: undefined;
1453
1681
  variableName?: undefined;
@@ -1503,11 +1731,13 @@ export declare const onboardingExample: {
1503
1731
  fit?: undefined;
1504
1732
  resizeMode?: undefined;
1505
1733
  borderRadius?: undefined;
1734
+ animation?: undefined;
1506
1735
  name?: undefined;
1507
1736
  size?: undefined;
1508
1737
  color?: undefined;
1509
1738
  fill?: undefined;
1510
1739
  fillOpacity?: undefined;
1740
+ transform?: undefined;
1511
1741
  variant?: undefined;
1512
1742
  autoplay?: undefined;
1513
1743
  initialValue?: undefined;
@@ -1526,10 +1756,12 @@ export declare const onboardingExample: {
1526
1756
  fontSize?: undefined;
1527
1757
  textAlign?: undefined;
1528
1758
  opacity?: undefined;
1759
+ alignItems?: undefined;
1760
+ justifyContent?: undefined;
1761
+ fontWeight?: undefined;
1529
1762
  horizontal?: undefined;
1530
1763
  showsHorizontalScrollIndicator?: undefined;
1531
1764
  contentContainerPadding?: undefined;
1532
- fontWeight?: undefined;
1533
1765
  fontFamily?: undefined;
1534
1766
  fontStyle?: undefined;
1535
1767
  lineHeight?: undefined;
@@ -1578,11 +1810,13 @@ export declare const onboardingExample: {
1578
1810
  fit?: undefined;
1579
1811
  resizeMode?: undefined;
1580
1812
  borderRadius?: undefined;
1813
+ animation?: undefined;
1581
1814
  name?: undefined;
1582
1815
  size?: undefined;
1583
1816
  color?: undefined;
1584
1817
  fill?: undefined;
1585
1818
  fillOpacity?: undefined;
1819
+ transform?: undefined;
1586
1820
  variant?: undefined;
1587
1821
  autoplay?: undefined;
1588
1822
  initialValue?: undefined;
@@ -1596,10 +1830,12 @@ export declare const onboardingExample: {
1596
1830
  muted?: undefined;
1597
1831
  contentFit?: undefined;
1598
1832
  keyboardVerticalOffset?: undefined;
1833
+ alignItems?: undefined;
1834
+ justifyContent?: undefined;
1835
+ fontWeight?: undefined;
1599
1836
  horizontal?: undefined;
1600
1837
  showsHorizontalScrollIndicator?: undefined;
1601
1838
  contentContainerPadding?: undefined;
1602
- fontWeight?: undefined;
1603
1839
  fontFamily?: undefined;
1604
1840
  fontStyle?: undefined;
1605
1841
  lineHeight?: undefined;
@@ -1657,11 +1893,13 @@ export declare const onboardingExample: {
1657
1893
  fit?: undefined;
1658
1894
  resizeMode?: undefined;
1659
1895
  borderRadius?: undefined;
1896
+ animation?: undefined;
1660
1897
  name?: undefined;
1661
1898
  size?: undefined;
1662
1899
  color?: undefined;
1663
1900
  fill?: undefined;
1664
1901
  fillOpacity?: undefined;
1902
+ transform?: undefined;
1665
1903
  variant?: undefined;
1666
1904
  autoplay?: undefined;
1667
1905
  initialValue?: undefined;
@@ -1677,6 +1915,8 @@ export declare const onboardingExample: {
1677
1915
  keyboardVerticalOffset?: undefined;
1678
1916
  mode?: undefined;
1679
1917
  opacity?: undefined;
1918
+ alignItems?: undefined;
1919
+ justifyContent?: undefined;
1680
1920
  horizontal?: undefined;
1681
1921
  showsHorizontalScrollIndicator?: undefined;
1682
1922
  contentContainerPadding?: undefined;
@@ -1735,11 +1975,13 @@ export declare const onboardingExample: {
1735
1975
  fit?: undefined;
1736
1976
  resizeMode?: undefined;
1737
1977
  borderRadius?: undefined;
1978
+ animation?: undefined;
1738
1979
  name?: undefined;
1739
1980
  size?: undefined;
1740
1981
  color?: undefined;
1741
1982
  fill?: undefined;
1742
1983
  fillOpacity?: undefined;
1984
+ transform?: undefined;
1743
1985
  variant?: undefined;
1744
1986
  autoplay?: undefined;
1745
1987
  initialValue?: undefined;
@@ -1758,10 +2000,12 @@ export declare const onboardingExample: {
1758
2000
  fontSize?: undefined;
1759
2001
  textAlign?: undefined;
1760
2002
  opacity?: undefined;
2003
+ alignItems?: undefined;
2004
+ justifyContent?: undefined;
2005
+ fontWeight?: undefined;
1761
2006
  horizontal?: undefined;
1762
2007
  showsHorizontalScrollIndicator?: undefined;
1763
2008
  contentContainerPadding?: undefined;
1764
- fontWeight?: undefined;
1765
2009
  fontFamily?: undefined;
1766
2010
  fontStyle?: undefined;
1767
2011
  lineHeight?: undefined;
@@ -1810,11 +2054,13 @@ export declare const onboardingExample: {
1810
2054
  fit?: undefined;
1811
2055
  resizeMode?: undefined;
1812
2056
  borderRadius?: undefined;
2057
+ animation?: undefined;
1813
2058
  name?: undefined;
1814
2059
  size?: undefined;
1815
2060
  color?: undefined;
1816
2061
  fill?: undefined;
1817
2062
  fillOpacity?: undefined;
2063
+ transform?: undefined;
1818
2064
  variant?: undefined;
1819
2065
  autoplay?: undefined;
1820
2066
  initialValue?: undefined;
@@ -1832,10 +2078,12 @@ export declare const onboardingExample: {
1832
2078
  fontSize?: undefined;
1833
2079
  textAlign?: undefined;
1834
2080
  opacity?: undefined;
2081
+ alignItems?: undefined;
2082
+ justifyContent?: undefined;
2083
+ fontWeight?: undefined;
1835
2084
  horizontal?: undefined;
1836
2085
  showsHorizontalScrollIndicator?: undefined;
1837
2086
  contentContainerPadding?: undefined;
1838
- fontWeight?: undefined;
1839
2087
  fontFamily?: undefined;
1840
2088
  fontStyle?: undefined;
1841
2089
  lineHeight?: undefined;
@@ -1888,11 +2136,13 @@ export declare const onboardingExample: {
1888
2136
  fit?: undefined;
1889
2137
  resizeMode?: undefined;
1890
2138
  borderRadius?: undefined;
2139
+ animation?: undefined;
1891
2140
  name?: undefined;
1892
2141
  size?: undefined;
1893
2142
  color?: undefined;
1894
2143
  fill?: undefined;
1895
2144
  fillOpacity?: undefined;
2145
+ transform?: undefined;
1896
2146
  variant?: undefined;
1897
2147
  autoplay?: undefined;
1898
2148
  initialValue?: undefined;
@@ -1911,10 +2161,12 @@ export declare const onboardingExample: {
1911
2161
  fontSize?: undefined;
1912
2162
  textAlign?: undefined;
1913
2163
  opacity?: undefined;
2164
+ alignItems?: undefined;
2165
+ justifyContent?: undefined;
2166
+ fontWeight?: undefined;
1914
2167
  horizontal?: undefined;
1915
2168
  showsHorizontalScrollIndicator?: undefined;
1916
2169
  contentContainerPadding?: undefined;
1917
- fontWeight?: undefined;
1918
2170
  fontFamily?: undefined;
1919
2171
  fontStyle?: undefined;
1920
2172
  lineHeight?: undefined;
@@ -1964,11 +2216,13 @@ export declare const onboardingExample: {
1964
2216
  aspectRatio?: undefined;
1965
2217
  fit?: undefined;
1966
2218
  resizeMode?: undefined;
2219
+ animation?: undefined;
1967
2220
  name?: undefined;
1968
2221
  size?: undefined;
1969
2222
  color?: undefined;
1970
2223
  fill?: undefined;
1971
2224
  fillOpacity?: undefined;
2225
+ transform?: undefined;
1972
2226
  variant?: undefined;
1973
2227
  autoplay?: undefined;
1974
2228
  initialValue?: undefined;
@@ -1987,10 +2241,12 @@ export declare const onboardingExample: {
1987
2241
  fontSize?: undefined;
1988
2242
  textAlign?: undefined;
1989
2243
  opacity?: undefined;
2244
+ alignItems?: undefined;
2245
+ justifyContent?: undefined;
2246
+ fontWeight?: undefined;
1990
2247
  horizontal?: undefined;
1991
2248
  showsHorizontalScrollIndicator?: undefined;
1992
2249
  contentContainerPadding?: undefined;
1993
- fontWeight?: undefined;
1994
2250
  fontFamily?: undefined;
1995
2251
  fontStyle?: undefined;
1996
2252
  lineHeight?: undefined;
@@ -2044,11 +2300,13 @@ export declare const onboardingExample: {
2044
2300
  fit?: undefined;
2045
2301
  resizeMode?: undefined;
2046
2302
  borderRadius?: undefined;
2303
+ animation?: undefined;
2047
2304
  name?: undefined;
2048
2305
  size?: undefined;
2049
2306
  color?: undefined;
2050
2307
  fill?: undefined;
2051
2308
  fillOpacity?: undefined;
2309
+ transform?: undefined;
2052
2310
  variant?: undefined;
2053
2311
  autoplay?: undefined;
2054
2312
  initialValue?: undefined;
@@ -2067,10 +2325,12 @@ export declare const onboardingExample: {
2067
2325
  fontSize?: undefined;
2068
2326
  textAlign?: undefined;
2069
2327
  opacity?: undefined;
2328
+ alignItems?: undefined;
2329
+ justifyContent?: undefined;
2330
+ fontWeight?: undefined;
2070
2331
  horizontal?: undefined;
2071
2332
  showsHorizontalScrollIndicator?: undefined;
2072
2333
  contentContainerPadding?: undefined;
2073
- fontWeight?: undefined;
2074
2334
  fontFamily?: undefined;
2075
2335
  fontStyle?: undefined;
2076
2336
  lineHeight?: undefined;
@@ -2133,11 +2393,13 @@ export declare const onboardingExample: {
2133
2393
  aspectRatio?: undefined;
2134
2394
  fit?: undefined;
2135
2395
  resizeMode?: undefined;
2396
+ animation?: undefined;
2136
2397
  name?: undefined;
2137
2398
  size?: undefined;
2138
2399
  color?: undefined;
2139
2400
  fill?: undefined;
2140
2401
  fillOpacity?: undefined;
2402
+ transform?: undefined;
2141
2403
  variant?: undefined;
2142
2404
  autoplay?: undefined;
2143
2405
  initialValue?: undefined;
@@ -2156,10 +2418,12 @@ export declare const onboardingExample: {
2156
2418
  fontSize?: undefined;
2157
2419
  textAlign?: undefined;
2158
2420
  opacity?: undefined;
2421
+ alignItems?: undefined;
2422
+ justifyContent?: undefined;
2423
+ fontWeight?: undefined;
2159
2424
  horizontal?: undefined;
2160
2425
  showsHorizontalScrollIndicator?: undefined;
2161
2426
  contentContainerPadding?: undefined;
2162
- fontWeight?: undefined;
2163
2427
  fontFamily?: undefined;
2164
2428
  fontStyle?: undefined;
2165
2429
  lineHeight?: undefined;
@@ -2249,11 +2513,13 @@ export declare const onboardingExample: {
2249
2513
  fit?: undefined;
2250
2514
  resizeMode?: undefined;
2251
2515
  borderRadius?: undefined;
2516
+ animation?: undefined;
2252
2517
  name?: undefined;
2253
2518
  size?: undefined;
2254
2519
  color?: undefined;
2255
2520
  fill?: undefined;
2256
2521
  fillOpacity?: undefined;
2522
+ transform?: undefined;
2257
2523
  autoplay?: undefined;
2258
2524
  initialValue?: undefined;
2259
2525
  duration?: undefined;
@@ -2271,10 +2537,12 @@ export declare const onboardingExample: {
2271
2537
  fontSize?: undefined;
2272
2538
  textAlign?: undefined;
2273
2539
  opacity?: undefined;
2540
+ alignItems?: undefined;
2541
+ justifyContent?: undefined;
2542
+ fontWeight?: undefined;
2274
2543
  horizontal?: undefined;
2275
2544
  showsHorizontalScrollIndicator?: undefined;
2276
2545
  contentContainerPadding?: undefined;
2277
- fontWeight?: undefined;
2278
2546
  fontFamily?: undefined;
2279
2547
  fontStyle?: undefined;
2280
2548
  lineHeight?: undefined;
@@ -2332,11 +2600,13 @@ export declare const onboardingExample: {
2332
2600
  aspectRatio?: undefined;
2333
2601
  fit?: undefined;
2334
2602
  resizeMode?: undefined;
2603
+ animation?: undefined;
2335
2604
  name?: undefined;
2336
2605
  size?: undefined;
2337
2606
  color?: undefined;
2338
2607
  fill?: undefined;
2339
2608
  fillOpacity?: undefined;
2609
+ transform?: undefined;
2340
2610
  variant?: undefined;
2341
2611
  autoplay?: undefined;
2342
2612
  initialValue?: undefined;
@@ -2355,10 +2625,12 @@ export declare const onboardingExample: {
2355
2625
  fontSize?: undefined;
2356
2626
  textAlign?: undefined;
2357
2627
  opacity?: undefined;
2628
+ alignItems?: undefined;
2629
+ justifyContent?: undefined;
2630
+ fontWeight?: undefined;
2358
2631
  horizontal?: undefined;
2359
2632
  showsHorizontalScrollIndicator?: undefined;
2360
2633
  contentContainerPadding?: undefined;
2361
- fontWeight?: undefined;
2362
2634
  fontFamily?: undefined;
2363
2635
  fontStyle?: undefined;
2364
2636
  lineHeight?: undefined;
@@ -2434,11 +2706,13 @@ export declare const onboardingExample: {
2434
2706
  fit?: undefined;
2435
2707
  resizeMode?: undefined;
2436
2708
  borderRadius?: undefined;
2709
+ animation?: undefined;
2437
2710
  name?: undefined;
2438
2711
  size?: undefined;
2439
2712
  color?: undefined;
2440
2713
  fill?: undefined;
2441
2714
  fillOpacity?: undefined;
2715
+ transform?: undefined;
2442
2716
  autoplay?: undefined;
2443
2717
  initialValue?: undefined;
2444
2718
  duration?: undefined;
@@ -2456,10 +2730,12 @@ export declare const onboardingExample: {
2456
2730
  fontSize?: undefined;
2457
2731
  textAlign?: undefined;
2458
2732
  opacity?: undefined;
2733
+ alignItems?: undefined;
2734
+ justifyContent?: undefined;
2735
+ fontWeight?: undefined;
2459
2736
  horizontal?: undefined;
2460
2737
  showsHorizontalScrollIndicator?: undefined;
2461
2738
  contentContainerPadding?: undefined;
2462
- fontWeight?: undefined;
2463
2739
  fontFamily?: undefined;
2464
2740
  fontStyle?: undefined;
2465
2741
  lineHeight?: undefined;
@@ -2510,11 +2786,13 @@ export declare const onboardingExample: {
2510
2786
  fit?: undefined;
2511
2787
  resizeMode?: undefined;
2512
2788
  borderRadius?: undefined;
2789
+ animation?: undefined;
2513
2790
  name?: undefined;
2514
2791
  size?: undefined;
2515
2792
  color?: undefined;
2516
2793
  fill?: undefined;
2517
2794
  fillOpacity?: undefined;
2795
+ transform?: undefined;
2518
2796
  variant?: undefined;
2519
2797
  autoplay?: undefined;
2520
2798
  initialValue?: undefined;
@@ -2530,6 +2808,8 @@ export declare const onboardingExample: {
2530
2808
  keyboardVerticalOffset?: undefined;
2531
2809
  mode?: undefined;
2532
2810
  textAlign?: undefined;
2811
+ alignItems?: undefined;
2812
+ justifyContent?: undefined;
2533
2813
  horizontal?: undefined;
2534
2814
  showsHorizontalScrollIndicator?: undefined;
2535
2815
  contentContainerPadding?: undefined;
@@ -2592,11 +2872,13 @@ export declare const onboardingExample: {
2592
2872
  fit?: undefined;
2593
2873
  resizeMode?: undefined;
2594
2874
  borderRadius?: undefined;
2875
+ animation?: undefined;
2595
2876
  name?: undefined;
2596
2877
  size?: undefined;
2597
2878
  color?: undefined;
2598
2879
  fill?: undefined;
2599
2880
  fillOpacity?: undefined;
2881
+ transform?: undefined;
2600
2882
  autoplay?: undefined;
2601
2883
  initialValue?: undefined;
2602
2884
  duration?: undefined;
@@ -2614,10 +2896,12 @@ export declare const onboardingExample: {
2614
2896
  fontSize?: undefined;
2615
2897
  textAlign?: undefined;
2616
2898
  opacity?: undefined;
2899
+ alignItems?: undefined;
2900
+ justifyContent?: undefined;
2901
+ fontWeight?: undefined;
2617
2902
  horizontal?: undefined;
2618
2903
  showsHorizontalScrollIndicator?: undefined;
2619
2904
  contentContainerPadding?: undefined;
2620
- fontWeight?: undefined;
2621
2905
  fontFamily?: undefined;
2622
2906
  fontStyle?: undefined;
2623
2907
  lineHeight?: undefined;
@@ -2667,11 +2951,13 @@ export declare const onboardingExample: {
2667
2951
  fit?: undefined;
2668
2952
  resizeMode?: undefined;
2669
2953
  borderRadius?: undefined;
2954
+ animation?: undefined;
2670
2955
  name?: undefined;
2671
2956
  size?: undefined;
2672
2957
  color?: undefined;
2673
2958
  fill?: undefined;
2674
2959
  fillOpacity?: undefined;
2960
+ transform?: undefined;
2675
2961
  autoplay?: undefined;
2676
2962
  initialValue?: undefined;
2677
2963
  duration?: undefined;
@@ -2689,10 +2975,12 @@ export declare const onboardingExample: {
2689
2975
  fontSize?: undefined;
2690
2976
  textAlign?: undefined;
2691
2977
  opacity?: undefined;
2978
+ alignItems?: undefined;
2979
+ justifyContent?: undefined;
2980
+ fontWeight?: undefined;
2692
2981
  horizontal?: undefined;
2693
2982
  showsHorizontalScrollIndicator?: undefined;
2694
2983
  contentContainerPadding?: undefined;
2695
- fontWeight?: undefined;
2696
2984
  fontFamily?: undefined;
2697
2985
  fontStyle?: undefined;
2698
2986
  lineHeight?: undefined;
@@ -2752,11 +3040,13 @@ export declare const onboardingExample: {
2752
3040
  fit?: undefined;
2753
3041
  resizeMode?: undefined;
2754
3042
  borderRadius?: undefined;
3043
+ animation?: undefined;
2755
3044
  name?: undefined;
2756
3045
  size?: undefined;
2757
3046
  color?: undefined;
2758
3047
  fill?: undefined;
2759
3048
  fillOpacity?: undefined;
3049
+ transform?: undefined;
2760
3050
  autoplay?: undefined;
2761
3051
  initialValue?: undefined;
2762
3052
  duration?: undefined;
@@ -2774,10 +3064,12 @@ export declare const onboardingExample: {
2774
3064
  fontSize?: undefined;
2775
3065
  textAlign?: undefined;
2776
3066
  opacity?: undefined;
3067
+ alignItems?: undefined;
3068
+ justifyContent?: undefined;
3069
+ fontWeight?: undefined;
2777
3070
  horizontal?: undefined;
2778
3071
  showsHorizontalScrollIndicator?: undefined;
2779
3072
  contentContainerPadding?: undefined;
2780
- fontWeight?: undefined;
2781
3073
  fontFamily?: undefined;
2782
3074
  fontStyle?: undefined;
2783
3075
  lineHeight?: undefined;
@@ -2830,11 +3122,13 @@ export declare const onboardingExample: {
2830
3122
  fit?: undefined;
2831
3123
  resizeMode?: undefined;
2832
3124
  borderRadius?: undefined;
3125
+ animation?: undefined;
2833
3126
  name?: undefined;
2834
3127
  size?: undefined;
2835
3128
  color?: undefined;
2836
3129
  fill?: undefined;
2837
3130
  fillOpacity?: undefined;
3131
+ transform?: undefined;
2838
3132
  autoplay?: undefined;
2839
3133
  initialValue?: undefined;
2840
3134
  duration?: undefined;
@@ -2852,10 +3146,12 @@ export declare const onboardingExample: {
2852
3146
  fontSize?: undefined;
2853
3147
  textAlign?: undefined;
2854
3148
  opacity?: undefined;
3149
+ alignItems?: undefined;
3150
+ justifyContent?: undefined;
3151
+ fontWeight?: undefined;
2855
3152
  horizontal?: undefined;
2856
3153
  showsHorizontalScrollIndicator?: undefined;
2857
3154
  contentContainerPadding?: undefined;
2858
- fontWeight?: undefined;
2859
3155
  fontFamily?: undefined;
2860
3156
  fontStyle?: undefined;
2861
3157
  lineHeight?: undefined;
@@ -2930,11 +3226,13 @@ export declare const onboardingExample: {
2930
3226
  fit?: undefined;
2931
3227
  resizeMode?: undefined;
2932
3228
  borderRadius?: undefined;
3229
+ animation?: undefined;
2933
3230
  name?: undefined;
2934
3231
  size?: undefined;
2935
3232
  color?: undefined;
2936
3233
  fill?: undefined;
2937
3234
  fillOpacity?: undefined;
3235
+ transform?: undefined;
2938
3236
  autoplay?: undefined;
2939
3237
  initialValue?: undefined;
2940
3238
  duration?: undefined;
@@ -2952,10 +3250,12 @@ export declare const onboardingExample: {
2952
3250
  fontSize?: undefined;
2953
3251
  textAlign?: undefined;
2954
3252
  opacity?: undefined;
3253
+ alignItems?: undefined;
3254
+ justifyContent?: undefined;
3255
+ fontWeight?: undefined;
2955
3256
  horizontal?: undefined;
2956
3257
  showsHorizontalScrollIndicator?: undefined;
2957
3258
  contentContainerPadding?: undefined;
2958
- fontWeight?: undefined;
2959
3259
  fontFamily?: undefined;
2960
3260
  fontStyle?: undefined;
2961
3261
  lineHeight?: undefined;