@rocapine/react-native-onboarding 1.23.0 → 1.25.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 +724 -139
- package/dist/onboarding-example.d.ts.map +1 -1
- package/dist/onboarding-example.js +171 -8
- package/dist/onboarding-example.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts +21 -0
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js +10 -1
- package/dist/steps/ComposableScreen/elements/BaseBoxProps.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts +294 -2
- package/dist/steps/ComposableScreen/elements/ButtonElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.js +14 -1
- package/dist/steps/ComposableScreen/elements/ButtonElement.js.map +1 -1
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/CarouselElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/CheckboxGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/DatePickerElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/IconElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/ImageElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/InputElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts +86 -0
- package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.js +11 -0
- package/dist/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.js.map +1 -0
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/LottieElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/RadioGroupElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/RiveElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/SafeAreaViewElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts +108 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.d.ts.map +1 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.js +23 -0
- package/dist/steps/ComposableScreen/elements/ScrollViewElement.js.map +1 -0
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/StackElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/TextElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/VideoElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts +8 -0
- package/dist/steps/ComposableScreen/elements/ZStackElement.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.d.ts +18 -0
- package/dist/steps/ComposableScreen/types.d.ts.map +1 -1
- package/dist/steps/ComposableScreen/types.js +52 -1
- package/dist/steps/ComposableScreen/types.js.map +1 -1
- package/package.json +1 -1
- package/src/onboarding-example.ts +171 -8
- package/src/steps/ComposableScreen/elements/BaseBoxProps.ts +20 -0
- package/src/steps/ComposableScreen/elements/ButtonElement.ts +36 -2
- package/src/steps/ComposableScreen/elements/KeyboardAvoidingViewElement.ts +16 -0
- package/src/steps/ComposableScreen/elements/ScrollViewElement.ts +40 -0
- package/src/steps/ComposableScreen/types.ts +84 -3
|
@@ -168,11 +168,10 @@ export declare const onboardingExample: {
|
|
|
168
168
|
controls?: undefined;
|
|
169
169
|
muted?: undefined;
|
|
170
170
|
contentFit?: undefined;
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
autoCapitalize?: undefined;
|
|
171
|
+
keyboardVerticalOffset?: undefined;
|
|
172
|
+
horizontal?: undefined;
|
|
173
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
174
|
+
contentContainerPadding?: undefined;
|
|
176
175
|
content?: undefined;
|
|
177
176
|
mode?: undefined;
|
|
178
177
|
fontSize?: undefined;
|
|
@@ -182,6 +181,7 @@ export declare const onboardingExample: {
|
|
|
182
181
|
fontStyle?: undefined;
|
|
183
182
|
opacity?: undefined;
|
|
184
183
|
lineHeight?: undefined;
|
|
184
|
+
variableName?: undefined;
|
|
185
185
|
defaultValue?: undefined;
|
|
186
186
|
gap?: undefined;
|
|
187
187
|
items?: undefined;
|
|
@@ -197,10 +197,19 @@ export declare const onboardingExample: {
|
|
|
197
197
|
actions?: undefined;
|
|
198
198
|
padding?: undefined;
|
|
199
199
|
backgroundGradient?: undefined;
|
|
200
|
+
backgroundColor?: undefined;
|
|
201
|
+
shadowColor?: undefined;
|
|
202
|
+
shadowOffset?: undefined;
|
|
203
|
+
shadowOpacity?: undefined;
|
|
204
|
+
shadowRadius?: undefined;
|
|
205
|
+
elevation?: undefined;
|
|
206
|
+
transitionDurationMs?: undefined;
|
|
207
|
+
pressedStyle?: undefined;
|
|
200
208
|
disabledWhen?: undefined;
|
|
209
|
+
disabledStyle?: undefined;
|
|
201
210
|
};
|
|
202
|
-
renderWhen?: undefined;
|
|
203
211
|
children?: undefined;
|
|
212
|
+
renderWhen?: undefined;
|
|
204
213
|
} | {
|
|
205
214
|
id: string;
|
|
206
215
|
type: string;
|
|
@@ -220,11 +229,10 @@ export declare const onboardingExample: {
|
|
|
220
229
|
controls?: undefined;
|
|
221
230
|
muted?: undefined;
|
|
222
231
|
contentFit?: undefined;
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
autoCapitalize?: undefined;
|
|
232
|
+
keyboardVerticalOffset?: undefined;
|
|
233
|
+
horizontal?: undefined;
|
|
234
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
235
|
+
contentContainerPadding?: undefined;
|
|
228
236
|
content?: undefined;
|
|
229
237
|
mode?: undefined;
|
|
230
238
|
fontSize?: undefined;
|
|
@@ -234,6 +242,7 @@ export declare const onboardingExample: {
|
|
|
234
242
|
fontStyle?: undefined;
|
|
235
243
|
opacity?: undefined;
|
|
236
244
|
lineHeight?: undefined;
|
|
245
|
+
variableName?: undefined;
|
|
237
246
|
defaultValue?: undefined;
|
|
238
247
|
gap?: undefined;
|
|
239
248
|
items?: undefined;
|
|
@@ -249,10 +258,19 @@ export declare const onboardingExample: {
|
|
|
249
258
|
actions?: undefined;
|
|
250
259
|
padding?: undefined;
|
|
251
260
|
backgroundGradient?: undefined;
|
|
261
|
+
backgroundColor?: undefined;
|
|
262
|
+
shadowColor?: undefined;
|
|
263
|
+
shadowOffset?: undefined;
|
|
264
|
+
shadowOpacity?: undefined;
|
|
265
|
+
shadowRadius?: undefined;
|
|
266
|
+
elevation?: undefined;
|
|
267
|
+
transitionDurationMs?: undefined;
|
|
268
|
+
pressedStyle?: undefined;
|
|
252
269
|
disabledWhen?: undefined;
|
|
270
|
+
disabledStyle?: undefined;
|
|
253
271
|
};
|
|
254
|
-
renderWhen?: undefined;
|
|
255
272
|
children?: undefined;
|
|
273
|
+
renderWhen?: undefined;
|
|
256
274
|
} | {
|
|
257
275
|
id: string;
|
|
258
276
|
type: string;
|
|
@@ -272,11 +290,10 @@ export declare const onboardingExample: {
|
|
|
272
290
|
controls?: undefined;
|
|
273
291
|
muted?: undefined;
|
|
274
292
|
contentFit?: undefined;
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
autoCapitalize?: undefined;
|
|
293
|
+
keyboardVerticalOffset?: undefined;
|
|
294
|
+
horizontal?: undefined;
|
|
295
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
296
|
+
contentContainerPadding?: undefined;
|
|
280
297
|
content?: undefined;
|
|
281
298
|
mode?: undefined;
|
|
282
299
|
fontSize?: undefined;
|
|
@@ -286,6 +303,7 @@ export declare const onboardingExample: {
|
|
|
286
303
|
fontStyle?: undefined;
|
|
287
304
|
opacity?: undefined;
|
|
288
305
|
lineHeight?: undefined;
|
|
306
|
+
variableName?: undefined;
|
|
289
307
|
defaultValue?: undefined;
|
|
290
308
|
gap?: undefined;
|
|
291
309
|
items?: undefined;
|
|
@@ -301,10 +319,19 @@ export declare const onboardingExample: {
|
|
|
301
319
|
actions?: undefined;
|
|
302
320
|
padding?: undefined;
|
|
303
321
|
backgroundGradient?: undefined;
|
|
322
|
+
backgroundColor?: undefined;
|
|
323
|
+
shadowColor?: undefined;
|
|
324
|
+
shadowOffset?: undefined;
|
|
325
|
+
shadowOpacity?: undefined;
|
|
326
|
+
shadowRadius?: undefined;
|
|
327
|
+
elevation?: undefined;
|
|
328
|
+
transitionDurationMs?: undefined;
|
|
329
|
+
pressedStyle?: undefined;
|
|
304
330
|
disabledWhen?: undefined;
|
|
331
|
+
disabledStyle?: undefined;
|
|
305
332
|
};
|
|
306
|
-
renderWhen?: undefined;
|
|
307
333
|
children?: undefined;
|
|
334
|
+
renderWhen?: undefined;
|
|
308
335
|
} | {
|
|
309
336
|
id: string;
|
|
310
337
|
type: string;
|
|
@@ -324,11 +351,10 @@ export declare const onboardingExample: {
|
|
|
324
351
|
controls?: undefined;
|
|
325
352
|
muted?: undefined;
|
|
326
353
|
contentFit?: undefined;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
autoCapitalize?: undefined;
|
|
354
|
+
keyboardVerticalOffset?: undefined;
|
|
355
|
+
horizontal?: undefined;
|
|
356
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
357
|
+
contentContainerPadding?: undefined;
|
|
332
358
|
content?: undefined;
|
|
333
359
|
mode?: undefined;
|
|
334
360
|
fontSize?: undefined;
|
|
@@ -338,6 +364,7 @@ export declare const onboardingExample: {
|
|
|
338
364
|
fontStyle?: undefined;
|
|
339
365
|
opacity?: undefined;
|
|
340
366
|
lineHeight?: undefined;
|
|
367
|
+
variableName?: undefined;
|
|
341
368
|
defaultValue?: undefined;
|
|
342
369
|
gap?: undefined;
|
|
343
370
|
items?: undefined;
|
|
@@ -353,10 +380,19 @@ export declare const onboardingExample: {
|
|
|
353
380
|
actions?: undefined;
|
|
354
381
|
padding?: undefined;
|
|
355
382
|
backgroundGradient?: undefined;
|
|
383
|
+
backgroundColor?: undefined;
|
|
384
|
+
shadowColor?: undefined;
|
|
385
|
+
shadowOffset?: undefined;
|
|
386
|
+
shadowOpacity?: undefined;
|
|
387
|
+
shadowRadius?: undefined;
|
|
388
|
+
elevation?: undefined;
|
|
389
|
+
transitionDurationMs?: undefined;
|
|
390
|
+
pressedStyle?: undefined;
|
|
356
391
|
disabledWhen?: undefined;
|
|
392
|
+
disabledStyle?: undefined;
|
|
357
393
|
};
|
|
358
|
-
renderWhen?: undefined;
|
|
359
394
|
children?: undefined;
|
|
395
|
+
renderWhen?: undefined;
|
|
360
396
|
} | {
|
|
361
397
|
id: string;
|
|
362
398
|
type: string;
|
|
@@ -376,11 +412,71 @@ export declare const onboardingExample: {
|
|
|
376
412
|
size?: undefined;
|
|
377
413
|
color?: undefined;
|
|
378
414
|
marginVertical?: undefined;
|
|
415
|
+
keyboardVerticalOffset?: undefined;
|
|
416
|
+
horizontal?: undefined;
|
|
417
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
418
|
+
contentContainerPadding?: undefined;
|
|
419
|
+
content?: undefined;
|
|
420
|
+
mode?: undefined;
|
|
421
|
+
fontSize?: undefined;
|
|
422
|
+
fontWeight?: undefined;
|
|
423
|
+
textAlign?: undefined;
|
|
424
|
+
fontFamily?: undefined;
|
|
425
|
+
fontStyle?: undefined;
|
|
426
|
+
opacity?: undefined;
|
|
427
|
+
lineHeight?: undefined;
|
|
379
428
|
variableName?: undefined;
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
429
|
+
defaultValue?: undefined;
|
|
430
|
+
gap?: undefined;
|
|
431
|
+
items?: undefined;
|
|
432
|
+
defaultValues?: undefined;
|
|
433
|
+
display?: undefined;
|
|
434
|
+
maximumDate?: undefined;
|
|
435
|
+
carouselType?: undefined;
|
|
436
|
+
showDots?: undefined;
|
|
437
|
+
defaultIndex?: undefined;
|
|
438
|
+
overflow?: undefined;
|
|
439
|
+
label?: undefined;
|
|
440
|
+
variant?: undefined;
|
|
441
|
+
actions?: undefined;
|
|
442
|
+
padding?: undefined;
|
|
443
|
+
backgroundGradient?: undefined;
|
|
444
|
+
backgroundColor?: undefined;
|
|
445
|
+
shadowColor?: undefined;
|
|
446
|
+
shadowOffset?: undefined;
|
|
447
|
+
shadowOpacity?: undefined;
|
|
448
|
+
shadowRadius?: undefined;
|
|
449
|
+
elevation?: undefined;
|
|
450
|
+
transitionDurationMs?: undefined;
|
|
451
|
+
pressedStyle?: undefined;
|
|
452
|
+
disabledWhen?: undefined;
|
|
453
|
+
disabledStyle?: undefined;
|
|
454
|
+
};
|
|
455
|
+
children?: undefined;
|
|
456
|
+
renderWhen?: undefined;
|
|
457
|
+
} | {
|
|
458
|
+
id: string;
|
|
459
|
+
type: string;
|
|
460
|
+
props: {
|
|
461
|
+
keyboardVerticalOffset: number;
|
|
462
|
+
source?: undefined;
|
|
463
|
+
height?: undefined;
|
|
464
|
+
autoPlay?: undefined;
|
|
465
|
+
loop?: undefined;
|
|
466
|
+
url?: undefined;
|
|
467
|
+
fit?: undefined;
|
|
468
|
+
resizeMode?: undefined;
|
|
469
|
+
borderRadius?: undefined;
|
|
470
|
+
name?: undefined;
|
|
471
|
+
size?: undefined;
|
|
472
|
+
color?: undefined;
|
|
473
|
+
marginVertical?: undefined;
|
|
474
|
+
controls?: undefined;
|
|
475
|
+
muted?: undefined;
|
|
476
|
+
contentFit?: undefined;
|
|
477
|
+
horizontal?: undefined;
|
|
478
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
479
|
+
contentContainerPadding?: undefined;
|
|
384
480
|
content?: undefined;
|
|
385
481
|
mode?: undefined;
|
|
386
482
|
fontSize?: undefined;
|
|
@@ -390,6 +486,7 @@ export declare const onboardingExample: {
|
|
|
390
486
|
fontStyle?: undefined;
|
|
391
487
|
opacity?: undefined;
|
|
392
488
|
lineHeight?: undefined;
|
|
489
|
+
variableName?: undefined;
|
|
393
490
|
defaultValue?: undefined;
|
|
394
491
|
gap?: undefined;
|
|
395
492
|
items?: undefined;
|
|
@@ -405,20 +502,37 @@ export declare const onboardingExample: {
|
|
|
405
502
|
actions?: undefined;
|
|
406
503
|
padding?: undefined;
|
|
407
504
|
backgroundGradient?: undefined;
|
|
505
|
+
backgroundColor?: undefined;
|
|
506
|
+
shadowColor?: undefined;
|
|
507
|
+
shadowOffset?: undefined;
|
|
508
|
+
shadowOpacity?: undefined;
|
|
509
|
+
shadowRadius?: undefined;
|
|
510
|
+
elevation?: undefined;
|
|
511
|
+
transitionDurationMs?: undefined;
|
|
512
|
+
pressedStyle?: undefined;
|
|
408
513
|
disabledWhen?: undefined;
|
|
514
|
+
disabledStyle?: undefined;
|
|
409
515
|
};
|
|
516
|
+
children: {
|
|
517
|
+
id: string;
|
|
518
|
+
type: string;
|
|
519
|
+
props: {
|
|
520
|
+
variableName: string;
|
|
521
|
+
placeholder: string;
|
|
522
|
+
keyboardType: string;
|
|
523
|
+
returnKeyType: string;
|
|
524
|
+
autoCapitalize: string;
|
|
525
|
+
marginVertical: number;
|
|
526
|
+
};
|
|
527
|
+
}[];
|
|
410
528
|
renderWhen?: undefined;
|
|
411
|
-
children?: undefined;
|
|
412
529
|
} | {
|
|
413
530
|
id: string;
|
|
414
531
|
type: string;
|
|
415
532
|
props: {
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
returnKeyType: string;
|
|
420
|
-
autoCapitalize: string;
|
|
421
|
-
marginVertical: number;
|
|
533
|
+
horizontal: boolean;
|
|
534
|
+
showsHorizontalScrollIndicator: boolean;
|
|
535
|
+
contentContainerPadding: number;
|
|
422
536
|
source?: undefined;
|
|
423
537
|
height?: undefined;
|
|
424
538
|
autoPlay?: undefined;
|
|
@@ -430,9 +544,11 @@ export declare const onboardingExample: {
|
|
|
430
544
|
name?: undefined;
|
|
431
545
|
size?: undefined;
|
|
432
546
|
color?: undefined;
|
|
547
|
+
marginVertical?: undefined;
|
|
433
548
|
controls?: undefined;
|
|
434
549
|
muted?: undefined;
|
|
435
550
|
contentFit?: undefined;
|
|
551
|
+
keyboardVerticalOffset?: undefined;
|
|
436
552
|
content?: undefined;
|
|
437
553
|
mode?: undefined;
|
|
438
554
|
fontSize?: undefined;
|
|
@@ -442,6 +558,7 @@ export declare const onboardingExample: {
|
|
|
442
558
|
fontStyle?: undefined;
|
|
443
559
|
opacity?: undefined;
|
|
444
560
|
lineHeight?: undefined;
|
|
561
|
+
variableName?: undefined;
|
|
445
562
|
defaultValue?: undefined;
|
|
446
563
|
gap?: undefined;
|
|
447
564
|
items?: undefined;
|
|
@@ -457,10 +574,35 @@ export declare const onboardingExample: {
|
|
|
457
574
|
actions?: undefined;
|
|
458
575
|
padding?: undefined;
|
|
459
576
|
backgroundGradient?: undefined;
|
|
577
|
+
backgroundColor?: undefined;
|
|
578
|
+
shadowColor?: undefined;
|
|
579
|
+
shadowOffset?: undefined;
|
|
580
|
+
shadowOpacity?: undefined;
|
|
581
|
+
shadowRadius?: undefined;
|
|
582
|
+
elevation?: undefined;
|
|
583
|
+
transitionDurationMs?: undefined;
|
|
584
|
+
pressedStyle?: undefined;
|
|
460
585
|
disabledWhen?: undefined;
|
|
586
|
+
disabledStyle?: undefined;
|
|
461
587
|
};
|
|
588
|
+
children: {
|
|
589
|
+
id: string;
|
|
590
|
+
type: string;
|
|
591
|
+
props: {
|
|
592
|
+
content: string;
|
|
593
|
+
width: number;
|
|
594
|
+
height: number;
|
|
595
|
+
marginHorizontal: number;
|
|
596
|
+
borderWidth: number;
|
|
597
|
+
borderRadius: number;
|
|
598
|
+
borderColor: string;
|
|
599
|
+
paddingVertical: number;
|
|
600
|
+
textAlign: string;
|
|
601
|
+
fontSize: number;
|
|
602
|
+
fontWeight: string;
|
|
603
|
+
};
|
|
604
|
+
}[];
|
|
462
605
|
renderWhen?: undefined;
|
|
463
|
-
children?: undefined;
|
|
464
606
|
} | {
|
|
465
607
|
id: string;
|
|
466
608
|
type: string;
|
|
@@ -485,15 +627,15 @@ export declare const onboardingExample: {
|
|
|
485
627
|
controls?: undefined;
|
|
486
628
|
muted?: undefined;
|
|
487
629
|
contentFit?: undefined;
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
autoCapitalize?: undefined;
|
|
630
|
+
keyboardVerticalOffset?: undefined;
|
|
631
|
+
horizontal?: undefined;
|
|
632
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
633
|
+
contentContainerPadding?: undefined;
|
|
493
634
|
fontFamily?: undefined;
|
|
494
635
|
fontStyle?: undefined;
|
|
495
636
|
opacity?: undefined;
|
|
496
637
|
lineHeight?: undefined;
|
|
638
|
+
variableName?: undefined;
|
|
497
639
|
defaultValue?: undefined;
|
|
498
640
|
gap?: undefined;
|
|
499
641
|
items?: undefined;
|
|
@@ -509,10 +651,19 @@ export declare const onboardingExample: {
|
|
|
509
651
|
actions?: undefined;
|
|
510
652
|
padding?: undefined;
|
|
511
653
|
backgroundGradient?: undefined;
|
|
654
|
+
backgroundColor?: undefined;
|
|
655
|
+
shadowColor?: undefined;
|
|
656
|
+
shadowOffset?: undefined;
|
|
657
|
+
shadowOpacity?: undefined;
|
|
658
|
+
shadowRadius?: undefined;
|
|
659
|
+
elevation?: undefined;
|
|
660
|
+
transitionDurationMs?: undefined;
|
|
661
|
+
pressedStyle?: undefined;
|
|
512
662
|
disabledWhen?: undefined;
|
|
663
|
+
disabledStyle?: undefined;
|
|
513
664
|
};
|
|
514
|
-
renderWhen?: undefined;
|
|
515
665
|
children?: undefined;
|
|
666
|
+
renderWhen?: undefined;
|
|
516
667
|
} | {
|
|
517
668
|
id: string;
|
|
518
669
|
type: string;
|
|
@@ -537,15 +688,15 @@ export declare const onboardingExample: {
|
|
|
537
688
|
controls?: undefined;
|
|
538
689
|
muted?: undefined;
|
|
539
690
|
contentFit?: undefined;
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
autoCapitalize?: undefined;
|
|
691
|
+
keyboardVerticalOffset?: undefined;
|
|
692
|
+
horizontal?: undefined;
|
|
693
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
694
|
+
contentContainerPadding?: undefined;
|
|
545
695
|
mode?: undefined;
|
|
546
696
|
fontStyle?: undefined;
|
|
547
697
|
opacity?: undefined;
|
|
548
698
|
lineHeight?: undefined;
|
|
699
|
+
variableName?: undefined;
|
|
549
700
|
defaultValue?: undefined;
|
|
550
701
|
gap?: undefined;
|
|
551
702
|
items?: undefined;
|
|
@@ -561,10 +712,19 @@ export declare const onboardingExample: {
|
|
|
561
712
|
actions?: undefined;
|
|
562
713
|
padding?: undefined;
|
|
563
714
|
backgroundGradient?: undefined;
|
|
715
|
+
backgroundColor?: undefined;
|
|
716
|
+
shadowColor?: undefined;
|
|
717
|
+
shadowOffset?: undefined;
|
|
718
|
+
shadowOpacity?: undefined;
|
|
719
|
+
shadowRadius?: undefined;
|
|
720
|
+
elevation?: undefined;
|
|
721
|
+
transitionDurationMs?: undefined;
|
|
722
|
+
pressedStyle?: undefined;
|
|
564
723
|
disabledWhen?: undefined;
|
|
724
|
+
disabledStyle?: undefined;
|
|
565
725
|
};
|
|
566
|
-
renderWhen?: undefined;
|
|
567
726
|
children?: undefined;
|
|
727
|
+
renderWhen?: undefined;
|
|
568
728
|
} | {
|
|
569
729
|
id: string;
|
|
570
730
|
type: string;
|
|
@@ -589,15 +749,15 @@ export declare const onboardingExample: {
|
|
|
589
749
|
controls?: undefined;
|
|
590
750
|
muted?: undefined;
|
|
591
751
|
contentFit?: undefined;
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
autoCapitalize?: undefined;
|
|
752
|
+
keyboardVerticalOffset?: undefined;
|
|
753
|
+
horizontal?: undefined;
|
|
754
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
755
|
+
contentContainerPadding?: undefined;
|
|
597
756
|
mode?: undefined;
|
|
598
757
|
fontWeight?: undefined;
|
|
599
758
|
opacity?: undefined;
|
|
600
759
|
lineHeight?: undefined;
|
|
760
|
+
variableName?: undefined;
|
|
601
761
|
defaultValue?: undefined;
|
|
602
762
|
gap?: undefined;
|
|
603
763
|
items?: undefined;
|
|
@@ -613,10 +773,19 @@ export declare const onboardingExample: {
|
|
|
613
773
|
actions?: undefined;
|
|
614
774
|
padding?: undefined;
|
|
615
775
|
backgroundGradient?: undefined;
|
|
776
|
+
backgroundColor?: undefined;
|
|
777
|
+
shadowColor?: undefined;
|
|
778
|
+
shadowOffset?: undefined;
|
|
779
|
+
shadowOpacity?: undefined;
|
|
780
|
+
shadowRadius?: undefined;
|
|
781
|
+
elevation?: undefined;
|
|
782
|
+
transitionDurationMs?: undefined;
|
|
783
|
+
pressedStyle?: undefined;
|
|
616
784
|
disabledWhen?: undefined;
|
|
785
|
+
disabledStyle?: undefined;
|
|
617
786
|
};
|
|
618
|
-
renderWhen?: undefined;
|
|
619
787
|
children?: undefined;
|
|
788
|
+
renderWhen?: undefined;
|
|
620
789
|
} | {
|
|
621
790
|
id: string;
|
|
622
791
|
type: string;
|
|
@@ -640,16 +809,16 @@ export declare const onboardingExample: {
|
|
|
640
809
|
controls?: undefined;
|
|
641
810
|
muted?: undefined;
|
|
642
811
|
contentFit?: undefined;
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
autoCapitalize?: undefined;
|
|
812
|
+
keyboardVerticalOffset?: undefined;
|
|
813
|
+
horizontal?: undefined;
|
|
814
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
815
|
+
contentContainerPadding?: undefined;
|
|
648
816
|
mode?: undefined;
|
|
649
817
|
fontWeight?: undefined;
|
|
650
818
|
fontFamily?: undefined;
|
|
651
819
|
fontStyle?: undefined;
|
|
652
820
|
lineHeight?: undefined;
|
|
821
|
+
variableName?: undefined;
|
|
653
822
|
defaultValue?: undefined;
|
|
654
823
|
gap?: undefined;
|
|
655
824
|
items?: undefined;
|
|
@@ -665,10 +834,19 @@ export declare const onboardingExample: {
|
|
|
665
834
|
actions?: undefined;
|
|
666
835
|
padding?: undefined;
|
|
667
836
|
backgroundGradient?: undefined;
|
|
837
|
+
backgroundColor?: undefined;
|
|
838
|
+
shadowColor?: undefined;
|
|
839
|
+
shadowOffset?: undefined;
|
|
840
|
+
shadowOpacity?: undefined;
|
|
841
|
+
shadowRadius?: undefined;
|
|
842
|
+
elevation?: undefined;
|
|
843
|
+
transitionDurationMs?: undefined;
|
|
844
|
+
pressedStyle?: undefined;
|
|
668
845
|
disabledWhen?: undefined;
|
|
846
|
+
disabledStyle?: undefined;
|
|
669
847
|
};
|
|
670
|
-
renderWhen?: undefined;
|
|
671
848
|
children?: undefined;
|
|
849
|
+
renderWhen?: undefined;
|
|
672
850
|
} | {
|
|
673
851
|
id: string;
|
|
674
852
|
type: string;
|
|
@@ -693,15 +871,15 @@ export declare const onboardingExample: {
|
|
|
693
871
|
controls?: undefined;
|
|
694
872
|
muted?: undefined;
|
|
695
873
|
contentFit?: undefined;
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
autoCapitalize?: undefined;
|
|
874
|
+
keyboardVerticalOffset?: undefined;
|
|
875
|
+
horizontal?: undefined;
|
|
876
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
877
|
+
contentContainerPadding?: undefined;
|
|
701
878
|
mode?: undefined;
|
|
702
879
|
fontWeight?: undefined;
|
|
703
880
|
fontStyle?: undefined;
|
|
704
881
|
lineHeight?: undefined;
|
|
882
|
+
variableName?: undefined;
|
|
705
883
|
defaultValue?: undefined;
|
|
706
884
|
gap?: undefined;
|
|
707
885
|
items?: undefined;
|
|
@@ -717,10 +895,19 @@ export declare const onboardingExample: {
|
|
|
717
895
|
actions?: undefined;
|
|
718
896
|
padding?: undefined;
|
|
719
897
|
backgroundGradient?: undefined;
|
|
898
|
+
backgroundColor?: undefined;
|
|
899
|
+
shadowColor?: undefined;
|
|
900
|
+
shadowOffset?: undefined;
|
|
901
|
+
shadowOpacity?: undefined;
|
|
902
|
+
shadowRadius?: undefined;
|
|
903
|
+
elevation?: undefined;
|
|
904
|
+
transitionDurationMs?: undefined;
|
|
905
|
+
pressedStyle?: undefined;
|
|
720
906
|
disabledWhen?: undefined;
|
|
907
|
+
disabledStyle?: undefined;
|
|
721
908
|
};
|
|
722
|
-
renderWhen?: undefined;
|
|
723
909
|
children?: undefined;
|
|
910
|
+
renderWhen?: undefined;
|
|
724
911
|
} | {
|
|
725
912
|
id: string;
|
|
726
913
|
type: string;
|
|
@@ -745,15 +932,15 @@ export declare const onboardingExample: {
|
|
|
745
932
|
controls?: undefined;
|
|
746
933
|
muted?: undefined;
|
|
747
934
|
contentFit?: undefined;
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
autoCapitalize?: undefined;
|
|
935
|
+
keyboardVerticalOffset?: undefined;
|
|
936
|
+
horizontal?: undefined;
|
|
937
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
938
|
+
contentContainerPadding?: undefined;
|
|
753
939
|
mode?: undefined;
|
|
754
940
|
fontWeight?: undefined;
|
|
755
941
|
fontFamily?: undefined;
|
|
756
942
|
fontStyle?: undefined;
|
|
943
|
+
variableName?: undefined;
|
|
757
944
|
defaultValue?: undefined;
|
|
758
945
|
gap?: undefined;
|
|
759
946
|
items?: undefined;
|
|
@@ -769,10 +956,19 @@ export declare const onboardingExample: {
|
|
|
769
956
|
actions?: undefined;
|
|
770
957
|
padding?: undefined;
|
|
771
958
|
backgroundGradient?: undefined;
|
|
959
|
+
backgroundColor?: undefined;
|
|
960
|
+
shadowColor?: undefined;
|
|
961
|
+
shadowOffset?: undefined;
|
|
962
|
+
shadowOpacity?: undefined;
|
|
963
|
+
shadowRadius?: undefined;
|
|
964
|
+
elevation?: undefined;
|
|
965
|
+
transitionDurationMs?: undefined;
|
|
966
|
+
pressedStyle?: undefined;
|
|
772
967
|
disabledWhen?: undefined;
|
|
968
|
+
disabledStyle?: undefined;
|
|
773
969
|
};
|
|
774
|
-
renderWhen?: undefined;
|
|
775
970
|
children?: undefined;
|
|
971
|
+
renderWhen?: undefined;
|
|
776
972
|
} | {
|
|
777
973
|
id: string;
|
|
778
974
|
type: string;
|
|
@@ -799,10 +995,10 @@ export declare const onboardingExample: {
|
|
|
799
995
|
controls?: undefined;
|
|
800
996
|
muted?: undefined;
|
|
801
997
|
contentFit?: undefined;
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
998
|
+
keyboardVerticalOffset?: undefined;
|
|
999
|
+
horizontal?: undefined;
|
|
1000
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1001
|
+
contentContainerPadding?: undefined;
|
|
806
1002
|
content?: undefined;
|
|
807
1003
|
mode?: undefined;
|
|
808
1004
|
fontSize?: undefined;
|
|
@@ -824,10 +1020,19 @@ export declare const onboardingExample: {
|
|
|
824
1020
|
actions?: undefined;
|
|
825
1021
|
padding?: undefined;
|
|
826
1022
|
backgroundGradient?: undefined;
|
|
1023
|
+
backgroundColor?: undefined;
|
|
1024
|
+
shadowColor?: undefined;
|
|
1025
|
+
shadowOffset?: undefined;
|
|
1026
|
+
shadowOpacity?: undefined;
|
|
1027
|
+
shadowRadius?: undefined;
|
|
1028
|
+
elevation?: undefined;
|
|
1029
|
+
transitionDurationMs?: undefined;
|
|
1030
|
+
pressedStyle?: undefined;
|
|
827
1031
|
disabledWhen?: undefined;
|
|
1032
|
+
disabledStyle?: undefined;
|
|
828
1033
|
};
|
|
829
|
-
renderWhen?: undefined;
|
|
830
1034
|
children?: undefined;
|
|
1035
|
+
renderWhen?: undefined;
|
|
831
1036
|
} | {
|
|
832
1037
|
id: string;
|
|
833
1038
|
type: string;
|
|
@@ -852,15 +1057,15 @@ export declare const onboardingExample: {
|
|
|
852
1057
|
controls?: undefined;
|
|
853
1058
|
muted?: undefined;
|
|
854
1059
|
contentFit?: undefined;
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
autoCapitalize?: undefined;
|
|
1060
|
+
keyboardVerticalOffset?: undefined;
|
|
1061
|
+
horizontal?: undefined;
|
|
1062
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1063
|
+
contentContainerPadding?: undefined;
|
|
860
1064
|
fontWeight?: undefined;
|
|
861
1065
|
fontFamily?: undefined;
|
|
862
1066
|
fontStyle?: undefined;
|
|
863
1067
|
lineHeight?: undefined;
|
|
1068
|
+
variableName?: undefined;
|
|
864
1069
|
defaultValue?: undefined;
|
|
865
1070
|
gap?: undefined;
|
|
866
1071
|
items?: undefined;
|
|
@@ -876,10 +1081,19 @@ export declare const onboardingExample: {
|
|
|
876
1081
|
actions?: undefined;
|
|
877
1082
|
padding?: undefined;
|
|
878
1083
|
backgroundGradient?: undefined;
|
|
1084
|
+
backgroundColor?: undefined;
|
|
1085
|
+
shadowColor?: undefined;
|
|
1086
|
+
shadowOffset?: undefined;
|
|
1087
|
+
shadowOpacity?: undefined;
|
|
1088
|
+
shadowRadius?: undefined;
|
|
1089
|
+
elevation?: undefined;
|
|
1090
|
+
transitionDurationMs?: undefined;
|
|
1091
|
+
pressedStyle?: undefined;
|
|
879
1092
|
disabledWhen?: undefined;
|
|
1093
|
+
disabledStyle?: undefined;
|
|
880
1094
|
};
|
|
881
|
-
renderWhen?: undefined;
|
|
882
1095
|
children?: undefined;
|
|
1096
|
+
renderWhen?: undefined;
|
|
883
1097
|
} | {
|
|
884
1098
|
id: string;
|
|
885
1099
|
renderWhen: {
|
|
@@ -908,16 +1122,16 @@ export declare const onboardingExample: {
|
|
|
908
1122
|
controls?: undefined;
|
|
909
1123
|
muted?: undefined;
|
|
910
1124
|
contentFit?: undefined;
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
autoCapitalize?: undefined;
|
|
1125
|
+
keyboardVerticalOffset?: undefined;
|
|
1126
|
+
horizontal?: undefined;
|
|
1127
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1128
|
+
contentContainerPadding?: undefined;
|
|
916
1129
|
mode?: undefined;
|
|
917
1130
|
fontFamily?: undefined;
|
|
918
1131
|
fontStyle?: undefined;
|
|
919
1132
|
opacity?: undefined;
|
|
920
1133
|
lineHeight?: undefined;
|
|
1134
|
+
variableName?: undefined;
|
|
921
1135
|
defaultValue?: undefined;
|
|
922
1136
|
gap?: undefined;
|
|
923
1137
|
items?: undefined;
|
|
@@ -933,7 +1147,16 @@ export declare const onboardingExample: {
|
|
|
933
1147
|
actions?: undefined;
|
|
934
1148
|
padding?: undefined;
|
|
935
1149
|
backgroundGradient?: undefined;
|
|
1150
|
+
backgroundColor?: undefined;
|
|
1151
|
+
shadowColor?: undefined;
|
|
1152
|
+
shadowOffset?: undefined;
|
|
1153
|
+
shadowOpacity?: undefined;
|
|
1154
|
+
shadowRadius?: undefined;
|
|
1155
|
+
elevation?: undefined;
|
|
1156
|
+
transitionDurationMs?: undefined;
|
|
1157
|
+
pressedStyle?: undefined;
|
|
936
1158
|
disabledWhen?: undefined;
|
|
1159
|
+
disabledStyle?: undefined;
|
|
937
1160
|
};
|
|
938
1161
|
children?: undefined;
|
|
939
1162
|
} | {
|
|
@@ -962,10 +1185,10 @@ export declare const onboardingExample: {
|
|
|
962
1185
|
controls?: undefined;
|
|
963
1186
|
muted?: undefined;
|
|
964
1187
|
contentFit?: undefined;
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
1188
|
+
keyboardVerticalOffset?: undefined;
|
|
1189
|
+
horizontal?: undefined;
|
|
1190
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1191
|
+
contentContainerPadding?: undefined;
|
|
969
1192
|
content?: undefined;
|
|
970
1193
|
mode?: undefined;
|
|
971
1194
|
fontSize?: undefined;
|
|
@@ -987,10 +1210,19 @@ export declare const onboardingExample: {
|
|
|
987
1210
|
actions?: undefined;
|
|
988
1211
|
padding?: undefined;
|
|
989
1212
|
backgroundGradient?: undefined;
|
|
1213
|
+
backgroundColor?: undefined;
|
|
1214
|
+
shadowColor?: undefined;
|
|
1215
|
+
shadowOffset?: undefined;
|
|
1216
|
+
shadowOpacity?: undefined;
|
|
1217
|
+
shadowRadius?: undefined;
|
|
1218
|
+
elevation?: undefined;
|
|
1219
|
+
transitionDurationMs?: undefined;
|
|
1220
|
+
pressedStyle?: undefined;
|
|
990
1221
|
disabledWhen?: undefined;
|
|
1222
|
+
disabledStyle?: undefined;
|
|
991
1223
|
};
|
|
992
|
-
renderWhen?: undefined;
|
|
993
1224
|
children?: undefined;
|
|
1225
|
+
renderWhen?: undefined;
|
|
994
1226
|
} | {
|
|
995
1227
|
id: string;
|
|
996
1228
|
type: string;
|
|
@@ -1015,10 +1247,10 @@ export declare const onboardingExample: {
|
|
|
1015
1247
|
controls?: undefined;
|
|
1016
1248
|
muted?: undefined;
|
|
1017
1249
|
contentFit?: undefined;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1250
|
+
keyboardVerticalOffset?: undefined;
|
|
1251
|
+
horizontal?: undefined;
|
|
1252
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1253
|
+
contentContainerPadding?: undefined;
|
|
1022
1254
|
content?: undefined;
|
|
1023
1255
|
fontSize?: undefined;
|
|
1024
1256
|
fontWeight?: undefined;
|
|
@@ -1039,10 +1271,19 @@ export declare const onboardingExample: {
|
|
|
1039
1271
|
actions?: undefined;
|
|
1040
1272
|
padding?: undefined;
|
|
1041
1273
|
backgroundGradient?: undefined;
|
|
1274
|
+
backgroundColor?: undefined;
|
|
1275
|
+
shadowColor?: undefined;
|
|
1276
|
+
shadowOffset?: undefined;
|
|
1277
|
+
shadowOpacity?: undefined;
|
|
1278
|
+
shadowRadius?: undefined;
|
|
1279
|
+
elevation?: undefined;
|
|
1280
|
+
transitionDurationMs?: undefined;
|
|
1281
|
+
pressedStyle?: undefined;
|
|
1042
1282
|
disabledWhen?: undefined;
|
|
1283
|
+
disabledStyle?: undefined;
|
|
1043
1284
|
};
|
|
1044
|
-
renderWhen?: undefined;
|
|
1045
1285
|
children?: undefined;
|
|
1286
|
+
renderWhen?: undefined;
|
|
1046
1287
|
} | {
|
|
1047
1288
|
id: string;
|
|
1048
1289
|
type: string;
|
|
@@ -1066,10 +1307,10 @@ export declare const onboardingExample: {
|
|
|
1066
1307
|
controls?: undefined;
|
|
1067
1308
|
muted?: undefined;
|
|
1068
1309
|
contentFit?: undefined;
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1310
|
+
keyboardVerticalOffset?: undefined;
|
|
1311
|
+
horizontal?: undefined;
|
|
1312
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1313
|
+
contentContainerPadding?: undefined;
|
|
1073
1314
|
content?: undefined;
|
|
1074
1315
|
mode?: undefined;
|
|
1075
1316
|
fontSize?: undefined;
|
|
@@ -1091,7 +1332,16 @@ export declare const onboardingExample: {
|
|
|
1091
1332
|
actions?: undefined;
|
|
1092
1333
|
padding?: undefined;
|
|
1093
1334
|
backgroundGradient?: undefined;
|
|
1335
|
+
backgroundColor?: undefined;
|
|
1336
|
+
shadowColor?: undefined;
|
|
1337
|
+
shadowOffset?: undefined;
|
|
1338
|
+
shadowOpacity?: undefined;
|
|
1339
|
+
shadowRadius?: undefined;
|
|
1340
|
+
elevation?: undefined;
|
|
1341
|
+
transitionDurationMs?: undefined;
|
|
1342
|
+
pressedStyle?: undefined;
|
|
1094
1343
|
disabledWhen?: undefined;
|
|
1344
|
+
disabledStyle?: undefined;
|
|
1095
1345
|
};
|
|
1096
1346
|
children: {
|
|
1097
1347
|
id: string;
|
|
@@ -1123,11 +1373,10 @@ export declare const onboardingExample: {
|
|
|
1123
1373
|
controls?: undefined;
|
|
1124
1374
|
muted?: undefined;
|
|
1125
1375
|
contentFit?: undefined;
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
autoCapitalize?: undefined;
|
|
1376
|
+
keyboardVerticalOffset?: undefined;
|
|
1377
|
+
horizontal?: undefined;
|
|
1378
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1379
|
+
contentContainerPadding?: undefined;
|
|
1131
1380
|
content?: undefined;
|
|
1132
1381
|
mode?: undefined;
|
|
1133
1382
|
fontSize?: undefined;
|
|
@@ -1137,6 +1386,7 @@ export declare const onboardingExample: {
|
|
|
1137
1386
|
fontStyle?: undefined;
|
|
1138
1387
|
opacity?: undefined;
|
|
1139
1388
|
lineHeight?: undefined;
|
|
1389
|
+
variableName?: undefined;
|
|
1140
1390
|
defaultValue?: undefined;
|
|
1141
1391
|
items?: undefined;
|
|
1142
1392
|
defaultValues?: undefined;
|
|
@@ -1151,7 +1401,16 @@ export declare const onboardingExample: {
|
|
|
1151
1401
|
actions?: undefined;
|
|
1152
1402
|
padding?: undefined;
|
|
1153
1403
|
backgroundGradient?: undefined;
|
|
1404
|
+
backgroundColor?: undefined;
|
|
1405
|
+
shadowColor?: undefined;
|
|
1406
|
+
shadowOffset?: undefined;
|
|
1407
|
+
shadowOpacity?: undefined;
|
|
1408
|
+
shadowRadius?: undefined;
|
|
1409
|
+
elevation?: undefined;
|
|
1410
|
+
transitionDurationMs?: undefined;
|
|
1411
|
+
pressedStyle?: undefined;
|
|
1154
1412
|
disabledWhen?: undefined;
|
|
1413
|
+
disabledStyle?: undefined;
|
|
1155
1414
|
};
|
|
1156
1415
|
children: {
|
|
1157
1416
|
id: string;
|
|
@@ -1189,11 +1448,10 @@ export declare const onboardingExample: {
|
|
|
1189
1448
|
controls?: undefined;
|
|
1190
1449
|
muted?: undefined;
|
|
1191
1450
|
contentFit?: undefined;
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
autoCapitalize?: undefined;
|
|
1451
|
+
keyboardVerticalOffset?: undefined;
|
|
1452
|
+
horizontal?: undefined;
|
|
1453
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1454
|
+
contentContainerPadding?: undefined;
|
|
1197
1455
|
content?: undefined;
|
|
1198
1456
|
mode?: undefined;
|
|
1199
1457
|
fontSize?: undefined;
|
|
@@ -1203,6 +1461,7 @@ export declare const onboardingExample: {
|
|
|
1203
1461
|
fontStyle?: undefined;
|
|
1204
1462
|
opacity?: undefined;
|
|
1205
1463
|
lineHeight?: undefined;
|
|
1464
|
+
variableName?: undefined;
|
|
1206
1465
|
defaultValue?: undefined;
|
|
1207
1466
|
gap?: undefined;
|
|
1208
1467
|
items?: undefined;
|
|
@@ -1217,7 +1476,16 @@ export declare const onboardingExample: {
|
|
|
1217
1476
|
actions?: undefined;
|
|
1218
1477
|
padding?: undefined;
|
|
1219
1478
|
backgroundGradient?: undefined;
|
|
1479
|
+
backgroundColor?: undefined;
|
|
1480
|
+
shadowColor?: undefined;
|
|
1481
|
+
shadowOffset?: undefined;
|
|
1482
|
+
shadowOpacity?: undefined;
|
|
1483
|
+
shadowRadius?: undefined;
|
|
1484
|
+
elevation?: undefined;
|
|
1485
|
+
transitionDurationMs?: undefined;
|
|
1486
|
+
pressedStyle?: undefined;
|
|
1220
1487
|
disabledWhen?: undefined;
|
|
1488
|
+
disabledStyle?: undefined;
|
|
1221
1489
|
};
|
|
1222
1490
|
children: ({
|
|
1223
1491
|
id: string;
|
|
@@ -1282,11 +1550,10 @@ export declare const onboardingExample: {
|
|
|
1282
1550
|
controls?: undefined;
|
|
1283
1551
|
muted?: undefined;
|
|
1284
1552
|
contentFit?: undefined;
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
autoCapitalize?: undefined;
|
|
1553
|
+
keyboardVerticalOffset?: undefined;
|
|
1554
|
+
horizontal?: undefined;
|
|
1555
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1556
|
+
contentContainerPadding?: undefined;
|
|
1290
1557
|
content?: undefined;
|
|
1291
1558
|
mode?: undefined;
|
|
1292
1559
|
fontSize?: undefined;
|
|
@@ -1296,6 +1563,7 @@ export declare const onboardingExample: {
|
|
|
1296
1563
|
fontStyle?: undefined;
|
|
1297
1564
|
opacity?: undefined;
|
|
1298
1565
|
lineHeight?: undefined;
|
|
1566
|
+
variableName?: undefined;
|
|
1299
1567
|
defaultValue?: undefined;
|
|
1300
1568
|
gap?: undefined;
|
|
1301
1569
|
items?: undefined;
|
|
@@ -1308,10 +1576,19 @@ export declare const onboardingExample: {
|
|
|
1308
1576
|
overflow?: undefined;
|
|
1309
1577
|
padding?: undefined;
|
|
1310
1578
|
backgroundGradient?: undefined;
|
|
1579
|
+
backgroundColor?: undefined;
|
|
1580
|
+
shadowColor?: undefined;
|
|
1581
|
+
shadowOffset?: undefined;
|
|
1582
|
+
shadowOpacity?: undefined;
|
|
1583
|
+
shadowRadius?: undefined;
|
|
1584
|
+
elevation?: undefined;
|
|
1585
|
+
transitionDurationMs?: undefined;
|
|
1586
|
+
pressedStyle?: undefined;
|
|
1311
1587
|
disabledWhen?: undefined;
|
|
1588
|
+
disabledStyle?: undefined;
|
|
1312
1589
|
};
|
|
1313
|
-
renderWhen?: undefined;
|
|
1314
1590
|
children?: undefined;
|
|
1591
|
+
renderWhen?: undefined;
|
|
1315
1592
|
} | {
|
|
1316
1593
|
id: string;
|
|
1317
1594
|
type: string;
|
|
@@ -1342,11 +1619,10 @@ export declare const onboardingExample: {
|
|
|
1342
1619
|
controls?: undefined;
|
|
1343
1620
|
muted?: undefined;
|
|
1344
1621
|
contentFit?: undefined;
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
autoCapitalize?: undefined;
|
|
1622
|
+
keyboardVerticalOffset?: undefined;
|
|
1623
|
+
horizontal?: undefined;
|
|
1624
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1625
|
+
contentContainerPadding?: undefined;
|
|
1350
1626
|
content?: undefined;
|
|
1351
1627
|
mode?: undefined;
|
|
1352
1628
|
fontSize?: undefined;
|
|
@@ -1356,6 +1632,7 @@ export declare const onboardingExample: {
|
|
|
1356
1632
|
fontStyle?: undefined;
|
|
1357
1633
|
opacity?: undefined;
|
|
1358
1634
|
lineHeight?: undefined;
|
|
1635
|
+
variableName?: undefined;
|
|
1359
1636
|
defaultValue?: undefined;
|
|
1360
1637
|
items?: undefined;
|
|
1361
1638
|
defaultValues?: undefined;
|
|
@@ -1367,7 +1644,16 @@ export declare const onboardingExample: {
|
|
|
1367
1644
|
label?: undefined;
|
|
1368
1645
|
variant?: undefined;
|
|
1369
1646
|
actions?: undefined;
|
|
1647
|
+
backgroundColor?: undefined;
|
|
1648
|
+
shadowColor?: undefined;
|
|
1649
|
+
shadowOffset?: undefined;
|
|
1650
|
+
shadowOpacity?: undefined;
|
|
1651
|
+
shadowRadius?: undefined;
|
|
1652
|
+
elevation?: undefined;
|
|
1653
|
+
transitionDurationMs?: undefined;
|
|
1654
|
+
pressedStyle?: undefined;
|
|
1370
1655
|
disabledWhen?: undefined;
|
|
1656
|
+
disabledStyle?: undefined;
|
|
1371
1657
|
};
|
|
1372
1658
|
children: ({
|
|
1373
1659
|
id: string;
|
|
@@ -1421,11 +1707,201 @@ export declare const onboardingExample: {
|
|
|
1421
1707
|
controls?: undefined;
|
|
1422
1708
|
muted?: undefined;
|
|
1423
1709
|
contentFit?: undefined;
|
|
1710
|
+
keyboardVerticalOffset?: undefined;
|
|
1711
|
+
horizontal?: undefined;
|
|
1712
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1713
|
+
contentContainerPadding?: undefined;
|
|
1714
|
+
content?: undefined;
|
|
1715
|
+
mode?: undefined;
|
|
1716
|
+
fontSize?: undefined;
|
|
1717
|
+
fontWeight?: undefined;
|
|
1718
|
+
textAlign?: undefined;
|
|
1719
|
+
fontFamily?: undefined;
|
|
1720
|
+
fontStyle?: undefined;
|
|
1721
|
+
opacity?: undefined;
|
|
1722
|
+
lineHeight?: undefined;
|
|
1723
|
+
variableName?: undefined;
|
|
1724
|
+
defaultValue?: undefined;
|
|
1725
|
+
gap?: undefined;
|
|
1726
|
+
items?: undefined;
|
|
1727
|
+
defaultValues?: undefined;
|
|
1728
|
+
display?: undefined;
|
|
1729
|
+
maximumDate?: undefined;
|
|
1730
|
+
carouselType?: undefined;
|
|
1731
|
+
showDots?: undefined;
|
|
1732
|
+
defaultIndex?: undefined;
|
|
1733
|
+
overflow?: undefined;
|
|
1734
|
+
actions?: undefined;
|
|
1735
|
+
padding?: undefined;
|
|
1736
|
+
backgroundColor?: undefined;
|
|
1737
|
+
shadowColor?: undefined;
|
|
1738
|
+
shadowOffset?: undefined;
|
|
1739
|
+
shadowOpacity?: undefined;
|
|
1740
|
+
shadowRadius?: undefined;
|
|
1741
|
+
elevation?: undefined;
|
|
1742
|
+
transitionDurationMs?: undefined;
|
|
1743
|
+
pressedStyle?: undefined;
|
|
1744
|
+
disabledWhen?: undefined;
|
|
1745
|
+
disabledStyle?: undefined;
|
|
1746
|
+
};
|
|
1747
|
+
children?: undefined;
|
|
1748
|
+
renderWhen?: undefined;
|
|
1749
|
+
} | {
|
|
1750
|
+
id: string;
|
|
1751
|
+
type: string;
|
|
1752
|
+
props: {
|
|
1753
|
+
content: string;
|
|
1754
|
+
fontSize: number;
|
|
1755
|
+
fontWeight: string;
|
|
1756
|
+
marginVertical: number;
|
|
1757
|
+
opacity: number;
|
|
1758
|
+
source?: undefined;
|
|
1759
|
+
height?: undefined;
|
|
1760
|
+
autoPlay?: undefined;
|
|
1761
|
+
loop?: undefined;
|
|
1762
|
+
url?: undefined;
|
|
1763
|
+
fit?: undefined;
|
|
1764
|
+
resizeMode?: undefined;
|
|
1765
|
+
borderRadius?: undefined;
|
|
1766
|
+
name?: undefined;
|
|
1767
|
+
size?: undefined;
|
|
1768
|
+
color?: undefined;
|
|
1769
|
+
controls?: undefined;
|
|
1770
|
+
muted?: undefined;
|
|
1771
|
+
contentFit?: undefined;
|
|
1772
|
+
keyboardVerticalOffset?: undefined;
|
|
1773
|
+
horizontal?: undefined;
|
|
1774
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1775
|
+
contentContainerPadding?: undefined;
|
|
1776
|
+
mode?: undefined;
|
|
1777
|
+
textAlign?: undefined;
|
|
1778
|
+
fontFamily?: undefined;
|
|
1779
|
+
fontStyle?: undefined;
|
|
1780
|
+
lineHeight?: undefined;
|
|
1781
|
+
variableName?: undefined;
|
|
1782
|
+
defaultValue?: undefined;
|
|
1783
|
+
gap?: undefined;
|
|
1784
|
+
items?: undefined;
|
|
1785
|
+
defaultValues?: undefined;
|
|
1786
|
+
display?: undefined;
|
|
1787
|
+
maximumDate?: undefined;
|
|
1788
|
+
carouselType?: undefined;
|
|
1789
|
+
showDots?: undefined;
|
|
1790
|
+
defaultIndex?: undefined;
|
|
1791
|
+
overflow?: undefined;
|
|
1792
|
+
label?: undefined;
|
|
1793
|
+
variant?: undefined;
|
|
1794
|
+
actions?: undefined;
|
|
1795
|
+
padding?: undefined;
|
|
1796
|
+
backgroundGradient?: undefined;
|
|
1797
|
+
backgroundColor?: undefined;
|
|
1798
|
+
shadowColor?: undefined;
|
|
1799
|
+
shadowOffset?: undefined;
|
|
1800
|
+
shadowOpacity?: undefined;
|
|
1801
|
+
shadowRadius?: undefined;
|
|
1802
|
+
elevation?: undefined;
|
|
1803
|
+
transitionDurationMs?: undefined;
|
|
1804
|
+
pressedStyle?: undefined;
|
|
1805
|
+
disabledWhen?: undefined;
|
|
1806
|
+
disabledStyle?: undefined;
|
|
1807
|
+
};
|
|
1808
|
+
children?: undefined;
|
|
1809
|
+
renderWhen?: undefined;
|
|
1810
|
+
} | {
|
|
1811
|
+
id: string;
|
|
1812
|
+
type: string;
|
|
1813
|
+
props: {
|
|
1814
|
+
label: string;
|
|
1815
|
+
variant: string;
|
|
1816
|
+
marginVertical: number;
|
|
1817
|
+
backgroundColor: string;
|
|
1818
|
+
shadowColor: string;
|
|
1819
|
+
shadowOffset: {
|
|
1820
|
+
width: number;
|
|
1821
|
+
height: number;
|
|
1822
|
+
};
|
|
1823
|
+
shadowOpacity: number;
|
|
1824
|
+
shadowRadius: number;
|
|
1825
|
+
elevation: number;
|
|
1826
|
+
source?: undefined;
|
|
1827
|
+
height?: undefined;
|
|
1828
|
+
autoPlay?: undefined;
|
|
1829
|
+
loop?: undefined;
|
|
1830
|
+
url?: undefined;
|
|
1831
|
+
fit?: undefined;
|
|
1832
|
+
resizeMode?: undefined;
|
|
1833
|
+
borderRadius?: undefined;
|
|
1834
|
+
name?: undefined;
|
|
1835
|
+
size?: undefined;
|
|
1836
|
+
color?: undefined;
|
|
1837
|
+
controls?: undefined;
|
|
1838
|
+
muted?: undefined;
|
|
1839
|
+
contentFit?: undefined;
|
|
1840
|
+
keyboardVerticalOffset?: undefined;
|
|
1841
|
+
horizontal?: undefined;
|
|
1842
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1843
|
+
contentContainerPadding?: undefined;
|
|
1844
|
+
content?: undefined;
|
|
1845
|
+
mode?: undefined;
|
|
1846
|
+
fontSize?: undefined;
|
|
1847
|
+
fontWeight?: undefined;
|
|
1848
|
+
textAlign?: undefined;
|
|
1849
|
+
fontFamily?: undefined;
|
|
1850
|
+
fontStyle?: undefined;
|
|
1851
|
+
opacity?: undefined;
|
|
1852
|
+
lineHeight?: undefined;
|
|
1424
1853
|
variableName?: undefined;
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1854
|
+
defaultValue?: undefined;
|
|
1855
|
+
gap?: undefined;
|
|
1856
|
+
items?: undefined;
|
|
1857
|
+
defaultValues?: undefined;
|
|
1858
|
+
display?: undefined;
|
|
1859
|
+
maximumDate?: undefined;
|
|
1860
|
+
carouselType?: undefined;
|
|
1861
|
+
showDots?: undefined;
|
|
1862
|
+
defaultIndex?: undefined;
|
|
1863
|
+
overflow?: undefined;
|
|
1864
|
+
actions?: undefined;
|
|
1865
|
+
padding?: undefined;
|
|
1866
|
+
backgroundGradient?: undefined;
|
|
1867
|
+
transitionDurationMs?: undefined;
|
|
1868
|
+
pressedStyle?: undefined;
|
|
1869
|
+
disabledWhen?: undefined;
|
|
1870
|
+
disabledStyle?: undefined;
|
|
1871
|
+
};
|
|
1872
|
+
children?: undefined;
|
|
1873
|
+
renderWhen?: undefined;
|
|
1874
|
+
} | {
|
|
1875
|
+
id: string;
|
|
1876
|
+
type: string;
|
|
1877
|
+
props: {
|
|
1878
|
+
label: string;
|
|
1879
|
+
variant: string;
|
|
1880
|
+
marginVertical: number;
|
|
1881
|
+
backgroundColor: string;
|
|
1882
|
+
transitionDurationMs: number;
|
|
1883
|
+
pressedStyle: {
|
|
1884
|
+
opacity: number;
|
|
1885
|
+
backgroundColor: string;
|
|
1886
|
+
};
|
|
1887
|
+
source?: undefined;
|
|
1888
|
+
height?: undefined;
|
|
1889
|
+
autoPlay?: undefined;
|
|
1890
|
+
loop?: undefined;
|
|
1891
|
+
url?: undefined;
|
|
1892
|
+
fit?: undefined;
|
|
1893
|
+
resizeMode?: undefined;
|
|
1894
|
+
borderRadius?: undefined;
|
|
1895
|
+
name?: undefined;
|
|
1896
|
+
size?: undefined;
|
|
1897
|
+
color?: undefined;
|
|
1898
|
+
controls?: undefined;
|
|
1899
|
+
muted?: undefined;
|
|
1900
|
+
contentFit?: undefined;
|
|
1901
|
+
keyboardVerticalOffset?: undefined;
|
|
1902
|
+
horizontal?: undefined;
|
|
1903
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1904
|
+
contentContainerPadding?: undefined;
|
|
1429
1905
|
content?: undefined;
|
|
1430
1906
|
mode?: undefined;
|
|
1431
1907
|
fontSize?: undefined;
|
|
@@ -1435,6 +1911,7 @@ export declare const onboardingExample: {
|
|
|
1435
1911
|
fontStyle?: undefined;
|
|
1436
1912
|
opacity?: undefined;
|
|
1437
1913
|
lineHeight?: undefined;
|
|
1914
|
+
variableName?: undefined;
|
|
1438
1915
|
defaultValue?: undefined;
|
|
1439
1916
|
gap?: undefined;
|
|
1440
1917
|
items?: undefined;
|
|
@@ -1447,10 +1924,88 @@ export declare const onboardingExample: {
|
|
|
1447
1924
|
overflow?: undefined;
|
|
1448
1925
|
actions?: undefined;
|
|
1449
1926
|
padding?: undefined;
|
|
1927
|
+
backgroundGradient?: undefined;
|
|
1928
|
+
shadowColor?: undefined;
|
|
1929
|
+
shadowOffset?: undefined;
|
|
1930
|
+
shadowOpacity?: undefined;
|
|
1931
|
+
shadowRadius?: undefined;
|
|
1932
|
+
elevation?: undefined;
|
|
1450
1933
|
disabledWhen?: undefined;
|
|
1934
|
+
disabledStyle?: undefined;
|
|
1451
1935
|
};
|
|
1936
|
+
children?: undefined;
|
|
1452
1937
|
renderWhen?: undefined;
|
|
1938
|
+
} | {
|
|
1939
|
+
id: string;
|
|
1940
|
+
type: string;
|
|
1941
|
+
props: {
|
|
1942
|
+
label: string;
|
|
1943
|
+
variant: string;
|
|
1944
|
+
marginVertical: number;
|
|
1945
|
+
actions: string[];
|
|
1946
|
+
disabledWhen: {
|
|
1947
|
+
variable: string;
|
|
1948
|
+
operator: string;
|
|
1949
|
+
value: string;
|
|
1950
|
+
};
|
|
1951
|
+
disabledStyle: {
|
|
1952
|
+
backgroundColor: string;
|
|
1953
|
+
color: string;
|
|
1954
|
+
borderRadius: number;
|
|
1955
|
+
shadowOpacity?: undefined;
|
|
1956
|
+
elevation?: undefined;
|
|
1957
|
+
};
|
|
1958
|
+
source?: undefined;
|
|
1959
|
+
height?: undefined;
|
|
1960
|
+
autoPlay?: undefined;
|
|
1961
|
+
loop?: undefined;
|
|
1962
|
+
url?: undefined;
|
|
1963
|
+
fit?: undefined;
|
|
1964
|
+
resizeMode?: undefined;
|
|
1965
|
+
borderRadius?: undefined;
|
|
1966
|
+
name?: undefined;
|
|
1967
|
+
size?: undefined;
|
|
1968
|
+
color?: undefined;
|
|
1969
|
+
controls?: undefined;
|
|
1970
|
+
muted?: undefined;
|
|
1971
|
+
contentFit?: undefined;
|
|
1972
|
+
keyboardVerticalOffset?: undefined;
|
|
1973
|
+
horizontal?: undefined;
|
|
1974
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
1975
|
+
contentContainerPadding?: undefined;
|
|
1976
|
+
content?: undefined;
|
|
1977
|
+
mode?: undefined;
|
|
1978
|
+
fontSize?: undefined;
|
|
1979
|
+
fontWeight?: undefined;
|
|
1980
|
+
textAlign?: undefined;
|
|
1981
|
+
fontFamily?: undefined;
|
|
1982
|
+
fontStyle?: undefined;
|
|
1983
|
+
opacity?: undefined;
|
|
1984
|
+
lineHeight?: undefined;
|
|
1985
|
+
variableName?: undefined;
|
|
1986
|
+
defaultValue?: undefined;
|
|
1987
|
+
gap?: undefined;
|
|
1988
|
+
items?: undefined;
|
|
1989
|
+
defaultValues?: undefined;
|
|
1990
|
+
display?: undefined;
|
|
1991
|
+
maximumDate?: undefined;
|
|
1992
|
+
carouselType?: undefined;
|
|
1993
|
+
showDots?: undefined;
|
|
1994
|
+
defaultIndex?: undefined;
|
|
1995
|
+
overflow?: undefined;
|
|
1996
|
+
padding?: undefined;
|
|
1997
|
+
backgroundGradient?: undefined;
|
|
1998
|
+
backgroundColor?: undefined;
|
|
1999
|
+
shadowColor?: undefined;
|
|
2000
|
+
shadowOffset?: undefined;
|
|
2001
|
+
shadowOpacity?: undefined;
|
|
2002
|
+
shadowRadius?: undefined;
|
|
2003
|
+
elevation?: undefined;
|
|
2004
|
+
transitionDurationMs?: undefined;
|
|
2005
|
+
pressedStyle?: undefined;
|
|
2006
|
+
};
|
|
1453
2007
|
children?: undefined;
|
|
2008
|
+
renderWhen?: undefined;
|
|
1454
2009
|
} | {
|
|
1455
2010
|
id: string;
|
|
1456
2011
|
type: string;
|
|
@@ -1478,11 +2033,10 @@ export declare const onboardingExample: {
|
|
|
1478
2033
|
controls?: undefined;
|
|
1479
2034
|
muted?: undefined;
|
|
1480
2035
|
contentFit?: undefined;
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
autoCapitalize?: undefined;
|
|
2036
|
+
keyboardVerticalOffset?: undefined;
|
|
2037
|
+
horizontal?: undefined;
|
|
2038
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2039
|
+
contentContainerPadding?: undefined;
|
|
1486
2040
|
content?: undefined;
|
|
1487
2041
|
mode?: undefined;
|
|
1488
2042
|
fontSize?: undefined;
|
|
@@ -1492,6 +2046,7 @@ export declare const onboardingExample: {
|
|
|
1492
2046
|
fontStyle?: undefined;
|
|
1493
2047
|
opacity?: undefined;
|
|
1494
2048
|
lineHeight?: undefined;
|
|
2049
|
+
variableName?: undefined;
|
|
1495
2050
|
defaultValue?: undefined;
|
|
1496
2051
|
gap?: undefined;
|
|
1497
2052
|
items?: undefined;
|
|
@@ -1504,10 +2059,19 @@ export declare const onboardingExample: {
|
|
|
1504
2059
|
overflow?: undefined;
|
|
1505
2060
|
padding?: undefined;
|
|
1506
2061
|
backgroundGradient?: undefined;
|
|
2062
|
+
backgroundColor?: undefined;
|
|
2063
|
+
shadowColor?: undefined;
|
|
2064
|
+
shadowOffset?: undefined;
|
|
2065
|
+
shadowOpacity?: undefined;
|
|
2066
|
+
shadowRadius?: undefined;
|
|
2067
|
+
elevation?: undefined;
|
|
2068
|
+
transitionDurationMs?: undefined;
|
|
2069
|
+
pressedStyle?: undefined;
|
|
1507
2070
|
disabledWhen?: undefined;
|
|
2071
|
+
disabledStyle?: undefined;
|
|
1508
2072
|
};
|
|
1509
|
-
renderWhen?: undefined;
|
|
1510
2073
|
children?: undefined;
|
|
2074
|
+
renderWhen?: undefined;
|
|
1511
2075
|
} | {
|
|
1512
2076
|
id: string;
|
|
1513
2077
|
type: string;
|
|
@@ -1521,6 +2085,26 @@ export declare const onboardingExample: {
|
|
|
1521
2085
|
operator: string;
|
|
1522
2086
|
value: string;
|
|
1523
2087
|
};
|
|
2088
|
+
transitionDurationMs: number;
|
|
2089
|
+
shadowColor: string;
|
|
2090
|
+
shadowOffset: {
|
|
2091
|
+
width: number;
|
|
2092
|
+
height: number;
|
|
2093
|
+
};
|
|
2094
|
+
shadowOpacity: number;
|
|
2095
|
+
shadowRadius: number;
|
|
2096
|
+
elevation: number;
|
|
2097
|
+
pressedStyle: {
|
|
2098
|
+
opacity: number;
|
|
2099
|
+
backgroundColor: string;
|
|
2100
|
+
};
|
|
2101
|
+
disabledStyle: {
|
|
2102
|
+
backgroundColor: string;
|
|
2103
|
+
color: string;
|
|
2104
|
+
shadowOpacity: number;
|
|
2105
|
+
elevation: number;
|
|
2106
|
+
borderRadius?: undefined;
|
|
2107
|
+
};
|
|
1524
2108
|
source?: undefined;
|
|
1525
2109
|
height?: undefined;
|
|
1526
2110
|
autoPlay?: undefined;
|
|
@@ -1535,11 +2119,10 @@ export declare const onboardingExample: {
|
|
|
1535
2119
|
controls?: undefined;
|
|
1536
2120
|
muted?: undefined;
|
|
1537
2121
|
contentFit?: undefined;
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
autoCapitalize?: undefined;
|
|
2122
|
+
keyboardVerticalOffset?: undefined;
|
|
2123
|
+
horizontal?: undefined;
|
|
2124
|
+
showsHorizontalScrollIndicator?: undefined;
|
|
2125
|
+
contentContainerPadding?: undefined;
|
|
1543
2126
|
content?: undefined;
|
|
1544
2127
|
mode?: undefined;
|
|
1545
2128
|
fontSize?: undefined;
|
|
@@ -1549,6 +2132,7 @@ export declare const onboardingExample: {
|
|
|
1549
2132
|
fontStyle?: undefined;
|
|
1550
2133
|
opacity?: undefined;
|
|
1551
2134
|
lineHeight?: undefined;
|
|
2135
|
+
variableName?: undefined;
|
|
1552
2136
|
defaultValue?: undefined;
|
|
1553
2137
|
gap?: undefined;
|
|
1554
2138
|
items?: undefined;
|
|
@@ -1561,9 +2145,10 @@ export declare const onboardingExample: {
|
|
|
1561
2145
|
overflow?: undefined;
|
|
1562
2146
|
padding?: undefined;
|
|
1563
2147
|
backgroundGradient?: undefined;
|
|
2148
|
+
backgroundColor?: undefined;
|
|
1564
2149
|
};
|
|
1565
|
-
renderWhen?: undefined;
|
|
1566
2150
|
children?: undefined;
|
|
2151
|
+
renderWhen?: undefined;
|
|
1567
2152
|
})[];
|
|
1568
2153
|
}[];
|
|
1569
2154
|
}[];
|