@hero-design/rn 8.103.1 → 8.103.2
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +6 -0
- package/es/index.js +42 -59
- package/lib/index.js +41 -58
- package/package.json +1 -1
- package/src/components/BottomSheet/StyledBottomSheet.tsx +4 -3
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +153 -170
- package/src/components/BottomSheet/index.tsx +42 -31
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +356 -390
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +3552 -3616
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +2469 -2517
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +177 -194
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +0 -1
- package/src/theme/components/bottomSheet.ts +0 -1
- package/stats/8.103.1/rn-stats.html +1 -3
- package/stats/8.103.2/rn-stats.html +4842 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +1 -1
- package/types/theme/components/bottomSheet.d.ts +0 -1
- package/src/components/BottomSheet/ContentContainer.tsx +0 -34
- package/types/components/BottomSheet/ContentContainer.d.ts +0 -10
|
@@ -390,271 +390,254 @@ exports[`DatePickerIOS renders correctly 1`] = `
|
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
392
|
/>
|
|
393
|
-
<
|
|
394
|
-
|
|
395
|
-
{
|
|
396
|
-
"bottom": "off",
|
|
397
|
-
"left": "additive",
|
|
398
|
-
"right": "additive",
|
|
399
|
-
"top": "additive",
|
|
400
|
-
}
|
|
401
|
-
}
|
|
393
|
+
<RCTSafeAreaView
|
|
394
|
+
collapsable={false}
|
|
402
395
|
style={
|
|
403
396
|
{
|
|
397
|
+
"backgroundColor": "#ffffff",
|
|
398
|
+
"borderTopLeftRadius": 16,
|
|
399
|
+
"borderTopRightRadius": 16,
|
|
404
400
|
"maxHeight": "94%",
|
|
401
|
+
"transform": [
|
|
402
|
+
{
|
|
403
|
+
"scaleY": 1,
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"translateY": 0,
|
|
407
|
+
},
|
|
408
|
+
],
|
|
409
|
+
"width": "100%",
|
|
405
410
|
}
|
|
406
411
|
}
|
|
407
412
|
>
|
|
408
413
|
<View
|
|
409
|
-
collapsable={false}
|
|
410
414
|
style={
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
"scaleY": 1,
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"translateY": 0,
|
|
423
|
-
},
|
|
424
|
-
],
|
|
425
|
-
"width": "100%",
|
|
426
|
-
}
|
|
415
|
+
[
|
|
416
|
+
{
|
|
417
|
+
"flexDirection": "row",
|
|
418
|
+
"paddingHorizontal": 16,
|
|
419
|
+
"paddingVertical": 8,
|
|
420
|
+
},
|
|
421
|
+
undefined,
|
|
422
|
+
]
|
|
427
423
|
}
|
|
428
424
|
>
|
|
429
425
|
<View
|
|
430
426
|
style={
|
|
431
427
|
[
|
|
432
428
|
{
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"paddingVertical": 8,
|
|
429
|
+
"flex": 1,
|
|
430
|
+
"justifyContent": "center",
|
|
436
431
|
},
|
|
437
432
|
undefined,
|
|
438
433
|
]
|
|
439
434
|
}
|
|
440
435
|
>
|
|
441
|
-
<
|
|
436
|
+
<Text
|
|
437
|
+
allowFontScaling={false}
|
|
442
438
|
style={
|
|
443
439
|
[
|
|
444
440
|
{
|
|
445
|
-
"
|
|
446
|
-
"
|
|
441
|
+
"color": "#001f23",
|
|
442
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
443
|
+
"fontSize": 16,
|
|
444
|
+
"letterSpacing": 0.24,
|
|
445
|
+
"lineHeight": 24,
|
|
447
446
|
},
|
|
448
447
|
undefined,
|
|
449
448
|
]
|
|
450
449
|
}
|
|
450
|
+
themeIntent="body"
|
|
451
|
+
themeTypeface="neutral"
|
|
452
|
+
themeVariant="regular-bold"
|
|
451
453
|
>
|
|
452
|
-
|
|
453
|
-
|
|
454
|
+
Start date
|
|
455
|
+
</Text>
|
|
456
|
+
</View>
|
|
457
|
+
<View
|
|
458
|
+
style={
|
|
459
|
+
[
|
|
460
|
+
{
|
|
461
|
+
"alignItems": "flex-end",
|
|
462
|
+
"height": 48,
|
|
463
|
+
"justifyContent": "center",
|
|
464
|
+
"marginLeft": 12,
|
|
465
|
+
"width": 48,
|
|
466
|
+
},
|
|
467
|
+
undefined,
|
|
468
|
+
]
|
|
469
|
+
}
|
|
470
|
+
>
|
|
471
|
+
<View
|
|
472
|
+
accessibilityState={
|
|
473
|
+
{
|
|
474
|
+
"busy": undefined,
|
|
475
|
+
"checked": undefined,
|
|
476
|
+
"disabled": undefined,
|
|
477
|
+
"expanded": undefined,
|
|
478
|
+
"selected": undefined,
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
accessibilityValue={
|
|
482
|
+
{
|
|
483
|
+
"max": undefined,
|
|
484
|
+
"min": undefined,
|
|
485
|
+
"now": undefined,
|
|
486
|
+
"text": undefined,
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
accessible={true}
|
|
490
|
+
collapsable={false}
|
|
491
|
+
focusable={true}
|
|
492
|
+
onClick={[Function]}
|
|
493
|
+
onResponderGrant={[Function]}
|
|
494
|
+
onResponderMove={[Function]}
|
|
495
|
+
onResponderRelease={[Function]}
|
|
496
|
+
onResponderTerminate={[Function]}
|
|
497
|
+
onResponderTerminationRequest={[Function]}
|
|
498
|
+
onStartShouldSetResponder={[Function]}
|
|
499
|
+
style={
|
|
500
|
+
{
|
|
501
|
+
"opacity": 1,
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
testID="bottom-sheet-close-icon"
|
|
505
|
+
>
|
|
506
|
+
<HeroIcon
|
|
507
|
+
name="cancel"
|
|
454
508
|
style={
|
|
455
509
|
[
|
|
456
510
|
{
|
|
457
511
|
"color": "#001f23",
|
|
458
|
-
"fontFamily": "BeVietnamPro-SemiBold",
|
|
459
512
|
"fontSize": 16,
|
|
460
|
-
"letterSpacing": 0.24,
|
|
461
|
-
"lineHeight": 24,
|
|
462
513
|
},
|
|
463
514
|
undefined,
|
|
464
515
|
]
|
|
465
516
|
}
|
|
466
|
-
themeIntent="
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
>
|
|
470
|
-
Start date
|
|
471
|
-
</Text>
|
|
472
|
-
</View>
|
|
473
|
-
<View
|
|
474
|
-
style={
|
|
475
|
-
[
|
|
476
|
-
{
|
|
477
|
-
"alignItems": "flex-end",
|
|
478
|
-
"height": 48,
|
|
479
|
-
"justifyContent": "center",
|
|
480
|
-
"marginLeft": 12,
|
|
481
|
-
"width": 48,
|
|
482
|
-
},
|
|
483
|
-
undefined,
|
|
484
|
-
]
|
|
485
|
-
}
|
|
486
|
-
>
|
|
487
|
-
<View
|
|
488
|
-
accessibilityState={
|
|
489
|
-
{
|
|
490
|
-
"busy": undefined,
|
|
491
|
-
"checked": undefined,
|
|
492
|
-
"disabled": undefined,
|
|
493
|
-
"expanded": undefined,
|
|
494
|
-
"selected": undefined,
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
accessibilityValue={
|
|
498
|
-
{
|
|
499
|
-
"max": undefined,
|
|
500
|
-
"min": undefined,
|
|
501
|
-
"now": undefined,
|
|
502
|
-
"text": undefined,
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
accessible={true}
|
|
506
|
-
collapsable={false}
|
|
507
|
-
focusable={true}
|
|
508
|
-
onClick={[Function]}
|
|
509
|
-
onResponderGrant={[Function]}
|
|
510
|
-
onResponderMove={[Function]}
|
|
511
|
-
onResponderRelease={[Function]}
|
|
512
|
-
onResponderTerminate={[Function]}
|
|
513
|
-
onResponderTerminationRequest={[Function]}
|
|
514
|
-
onStartShouldSetResponder={[Function]}
|
|
515
|
-
style={
|
|
516
|
-
{
|
|
517
|
-
"opacity": 1,
|
|
518
|
-
}
|
|
519
|
-
}
|
|
520
|
-
testID="bottom-sheet-close-icon"
|
|
521
|
-
>
|
|
522
|
-
<HeroIcon
|
|
523
|
-
name="cancel"
|
|
524
|
-
style={
|
|
525
|
-
[
|
|
526
|
-
{
|
|
527
|
-
"color": "#001f23",
|
|
528
|
-
"fontSize": 16,
|
|
529
|
-
},
|
|
530
|
-
undefined,
|
|
531
|
-
]
|
|
532
|
-
}
|
|
533
|
-
themeIntent="text"
|
|
534
|
-
themeSize="xsmall"
|
|
535
|
-
/>
|
|
536
|
-
</View>
|
|
517
|
+
themeIntent="text"
|
|
518
|
+
themeSize="xsmall"
|
|
519
|
+
/>
|
|
537
520
|
</View>
|
|
538
521
|
</View>
|
|
522
|
+
</View>
|
|
523
|
+
<View
|
|
524
|
+
style={
|
|
525
|
+
[
|
|
526
|
+
{
|
|
527
|
+
"height": 176,
|
|
528
|
+
},
|
|
529
|
+
undefined,
|
|
530
|
+
]
|
|
531
|
+
}
|
|
532
|
+
>
|
|
533
|
+
<Picker
|
|
534
|
+
display="spinner"
|
|
535
|
+
locale="en-AU"
|
|
536
|
+
mode="date"
|
|
537
|
+
onChange={[Function]}
|
|
538
|
+
style={
|
|
539
|
+
{
|
|
540
|
+
"flex": 1,
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
testID="datePickerIOS"
|
|
544
|
+
textColor="#001f23"
|
|
545
|
+
value={1995-12-21T00:00:00.000Z}
|
|
546
|
+
/>
|
|
547
|
+
</View>
|
|
548
|
+
<View>
|
|
539
549
|
<View
|
|
540
550
|
style={
|
|
541
551
|
[
|
|
542
552
|
{
|
|
543
|
-
"
|
|
553
|
+
"alignItems": "center",
|
|
554
|
+
"flexDirection": "row",
|
|
555
|
+
"justifyContent": "flex-end",
|
|
556
|
+
"paddingHorizontal": 12,
|
|
557
|
+
"paddingVertical": 2,
|
|
544
558
|
},
|
|
545
559
|
undefined,
|
|
546
560
|
]
|
|
547
561
|
}
|
|
548
562
|
>
|
|
549
|
-
<
|
|
550
|
-
|
|
551
|
-
locale="en-AU"
|
|
552
|
-
mode="date"
|
|
553
|
-
onChange={[Function]}
|
|
554
|
-
style={
|
|
563
|
+
<View
|
|
564
|
+
accessibilityState={
|
|
555
565
|
{
|
|
556
|
-
"
|
|
566
|
+
"disabled": false,
|
|
557
567
|
}
|
|
558
568
|
}
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
569
|
+
accessibilityValue={
|
|
570
|
+
{
|
|
571
|
+
"max": undefined,
|
|
572
|
+
"min": undefined,
|
|
573
|
+
"now": undefined,
|
|
574
|
+
"text": undefined,
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
accessible={true}
|
|
578
|
+
focusable={true}
|
|
579
|
+
onClick={[Function]}
|
|
580
|
+
onResponderGrant={[Function]}
|
|
581
|
+
onResponderMove={[Function]}
|
|
582
|
+
onResponderRelease={[Function]}
|
|
583
|
+
onResponderTerminate={[Function]}
|
|
584
|
+
onResponderTerminationRequest={[Function]}
|
|
585
|
+
onStartShouldSetResponder={[Function]}
|
|
566
586
|
style={
|
|
567
587
|
[
|
|
568
588
|
{
|
|
569
589
|
"alignItems": "center",
|
|
590
|
+
"backgroundColor": "transparent",
|
|
591
|
+
"borderRadius": 4,
|
|
592
|
+
"borderWidth": 0,
|
|
570
593
|
"flexDirection": "row",
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
594
|
+
"height": 60,
|
|
595
|
+
"justifyContent": "center",
|
|
596
|
+
"padding": 12,
|
|
574
597
|
},
|
|
575
598
|
undefined,
|
|
576
599
|
]
|
|
577
600
|
}
|
|
578
601
|
>
|
|
579
|
-
<
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
}
|
|
585
|
-
accessibilityValue={
|
|
586
|
-
{
|
|
587
|
-
"max": undefined,
|
|
588
|
-
"min": undefined,
|
|
589
|
-
"now": undefined,
|
|
590
|
-
"text": undefined,
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
accessible={true}
|
|
594
|
-
focusable={true}
|
|
595
|
-
onClick={[Function]}
|
|
596
|
-
onResponderGrant={[Function]}
|
|
597
|
-
onResponderMove={[Function]}
|
|
598
|
-
onResponderRelease={[Function]}
|
|
599
|
-
onResponderTerminate={[Function]}
|
|
600
|
-
onResponderTerminationRequest={[Function]}
|
|
601
|
-
onStartShouldSetResponder={[Function]}
|
|
602
|
+
<Text
|
|
603
|
+
allowFontScaling={false}
|
|
604
|
+
disabled={false}
|
|
605
|
+
ellipsizeMode="tail"
|
|
606
|
+
numberOfLines={1}
|
|
602
607
|
style={
|
|
603
608
|
[
|
|
604
609
|
{
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"height": 60,
|
|
611
|
-
"justifyContent": "center",
|
|
612
|
-
"padding": 12,
|
|
610
|
+
"color": "#001f23",
|
|
611
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
612
|
+
"fontSize": 16,
|
|
613
|
+
"letterSpacing": 0.24,
|
|
614
|
+
"lineHeight": 24,
|
|
613
615
|
},
|
|
614
|
-
undefined,
|
|
615
|
-
]
|
|
616
|
-
}
|
|
617
|
-
>
|
|
618
|
-
<Text
|
|
619
|
-
allowFontScaling={false}
|
|
620
|
-
disabled={false}
|
|
621
|
-
ellipsizeMode="tail"
|
|
622
|
-
numberOfLines={1}
|
|
623
|
-
style={
|
|
624
616
|
[
|
|
625
617
|
{
|
|
626
|
-
"color": "#
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
618
|
+
"color": "#401960",
|
|
619
|
+
"flexShrink": 1,
|
|
620
|
+
"lineHeight": 22,
|
|
621
|
+
"textAlign": "center",
|
|
622
|
+
"textAlignVertical": "center",
|
|
631
623
|
},
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
themeIntent="body"
|
|
646
|
-
themeIsCompact={false}
|
|
647
|
-
themeIsPressed={false}
|
|
648
|
-
themeTypeface="neutral"
|
|
649
|
-
themeVariant="regular-bold"
|
|
650
|
-
>
|
|
651
|
-
Confirm
|
|
652
|
-
</Text>
|
|
653
|
-
</View>
|
|
624
|
+
undefined,
|
|
625
|
+
],
|
|
626
|
+
]
|
|
627
|
+
}
|
|
628
|
+
themeButtonVariant="text-primary"
|
|
629
|
+
themeIntent="body"
|
|
630
|
+
themeIsCompact={false}
|
|
631
|
+
themeIsPressed={false}
|
|
632
|
+
themeTypeface="neutral"
|
|
633
|
+
themeVariant="regular-bold"
|
|
634
|
+
>
|
|
635
|
+
Confirm
|
|
636
|
+
</Text>
|
|
654
637
|
</View>
|
|
655
638
|
</View>
|
|
656
639
|
</View>
|
|
657
|
-
</
|
|
640
|
+
</RCTSafeAreaView>
|
|
658
641
|
</View>
|
|
659
642
|
</View>
|
|
660
643
|
</View>
|
|
@@ -1075,271 +1058,254 @@ exports[`DatePickerIOS renders correctly with custom locale 1`] = `
|
|
|
1075
1058
|
}
|
|
1076
1059
|
}
|
|
1077
1060
|
/>
|
|
1078
|
-
<
|
|
1079
|
-
|
|
1080
|
-
{
|
|
1081
|
-
"bottom": "off",
|
|
1082
|
-
"left": "additive",
|
|
1083
|
-
"right": "additive",
|
|
1084
|
-
"top": "additive",
|
|
1085
|
-
}
|
|
1086
|
-
}
|
|
1061
|
+
<RCTSafeAreaView
|
|
1062
|
+
collapsable={false}
|
|
1087
1063
|
style={
|
|
1088
1064
|
{
|
|
1065
|
+
"backgroundColor": "#ffffff",
|
|
1066
|
+
"borderTopLeftRadius": 16,
|
|
1067
|
+
"borderTopRightRadius": 16,
|
|
1089
1068
|
"maxHeight": "94%",
|
|
1069
|
+
"transform": [
|
|
1070
|
+
{
|
|
1071
|
+
"scaleY": 1,
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"translateY": 0,
|
|
1075
|
+
},
|
|
1076
|
+
],
|
|
1077
|
+
"width": "100%",
|
|
1090
1078
|
}
|
|
1091
1079
|
}
|
|
1092
1080
|
>
|
|
1093
1081
|
<View
|
|
1094
|
-
collapsable={false}
|
|
1095
1082
|
style={
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
"scaleY": 1,
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"translateY": 0,
|
|
1108
|
-
},
|
|
1109
|
-
],
|
|
1110
|
-
"width": "100%",
|
|
1111
|
-
}
|
|
1083
|
+
[
|
|
1084
|
+
{
|
|
1085
|
+
"flexDirection": "row",
|
|
1086
|
+
"paddingHorizontal": 16,
|
|
1087
|
+
"paddingVertical": 8,
|
|
1088
|
+
},
|
|
1089
|
+
undefined,
|
|
1090
|
+
]
|
|
1112
1091
|
}
|
|
1113
1092
|
>
|
|
1114
1093
|
<View
|
|
1115
1094
|
style={
|
|
1116
1095
|
[
|
|
1117
1096
|
{
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
1120
|
-
"paddingVertical": 8,
|
|
1097
|
+
"flex": 1,
|
|
1098
|
+
"justifyContent": "center",
|
|
1121
1099
|
},
|
|
1122
1100
|
undefined,
|
|
1123
1101
|
]
|
|
1124
1102
|
}
|
|
1125
1103
|
>
|
|
1126
|
-
<
|
|
1104
|
+
<Text
|
|
1105
|
+
allowFontScaling={false}
|
|
1127
1106
|
style={
|
|
1128
1107
|
[
|
|
1129
1108
|
{
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1109
|
+
"color": "#001f23",
|
|
1110
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1111
|
+
"fontSize": 16,
|
|
1112
|
+
"letterSpacing": 0.24,
|
|
1113
|
+
"lineHeight": 24,
|
|
1132
1114
|
},
|
|
1133
1115
|
undefined,
|
|
1134
1116
|
]
|
|
1135
1117
|
}
|
|
1118
|
+
themeIntent="body"
|
|
1119
|
+
themeTypeface="neutral"
|
|
1120
|
+
themeVariant="regular-bold"
|
|
1136
1121
|
>
|
|
1137
|
-
|
|
1138
|
-
|
|
1122
|
+
Start date
|
|
1123
|
+
</Text>
|
|
1124
|
+
</View>
|
|
1125
|
+
<View
|
|
1126
|
+
style={
|
|
1127
|
+
[
|
|
1128
|
+
{
|
|
1129
|
+
"alignItems": "flex-end",
|
|
1130
|
+
"height": 48,
|
|
1131
|
+
"justifyContent": "center",
|
|
1132
|
+
"marginLeft": 12,
|
|
1133
|
+
"width": 48,
|
|
1134
|
+
},
|
|
1135
|
+
undefined,
|
|
1136
|
+
]
|
|
1137
|
+
}
|
|
1138
|
+
>
|
|
1139
|
+
<View
|
|
1140
|
+
accessibilityState={
|
|
1141
|
+
{
|
|
1142
|
+
"busy": undefined,
|
|
1143
|
+
"checked": undefined,
|
|
1144
|
+
"disabled": undefined,
|
|
1145
|
+
"expanded": undefined,
|
|
1146
|
+
"selected": undefined,
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
accessibilityValue={
|
|
1150
|
+
{
|
|
1151
|
+
"max": undefined,
|
|
1152
|
+
"min": undefined,
|
|
1153
|
+
"now": undefined,
|
|
1154
|
+
"text": undefined,
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
accessible={true}
|
|
1158
|
+
collapsable={false}
|
|
1159
|
+
focusable={true}
|
|
1160
|
+
onClick={[Function]}
|
|
1161
|
+
onResponderGrant={[Function]}
|
|
1162
|
+
onResponderMove={[Function]}
|
|
1163
|
+
onResponderRelease={[Function]}
|
|
1164
|
+
onResponderTerminate={[Function]}
|
|
1165
|
+
onResponderTerminationRequest={[Function]}
|
|
1166
|
+
onStartShouldSetResponder={[Function]}
|
|
1167
|
+
style={
|
|
1168
|
+
{
|
|
1169
|
+
"opacity": 1,
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
testID="bottom-sheet-close-icon"
|
|
1173
|
+
>
|
|
1174
|
+
<HeroIcon
|
|
1175
|
+
name="cancel"
|
|
1139
1176
|
style={
|
|
1140
1177
|
[
|
|
1141
1178
|
{
|
|
1142
1179
|
"color": "#001f23",
|
|
1143
|
-
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1144
1180
|
"fontSize": 16,
|
|
1145
|
-
"letterSpacing": 0.24,
|
|
1146
|
-
"lineHeight": 24,
|
|
1147
1181
|
},
|
|
1148
1182
|
undefined,
|
|
1149
1183
|
]
|
|
1150
1184
|
}
|
|
1151
|
-
themeIntent="
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
>
|
|
1155
|
-
Start date
|
|
1156
|
-
</Text>
|
|
1157
|
-
</View>
|
|
1158
|
-
<View
|
|
1159
|
-
style={
|
|
1160
|
-
[
|
|
1161
|
-
{
|
|
1162
|
-
"alignItems": "flex-end",
|
|
1163
|
-
"height": 48,
|
|
1164
|
-
"justifyContent": "center",
|
|
1165
|
-
"marginLeft": 12,
|
|
1166
|
-
"width": 48,
|
|
1167
|
-
},
|
|
1168
|
-
undefined,
|
|
1169
|
-
]
|
|
1170
|
-
}
|
|
1171
|
-
>
|
|
1172
|
-
<View
|
|
1173
|
-
accessibilityState={
|
|
1174
|
-
{
|
|
1175
|
-
"busy": undefined,
|
|
1176
|
-
"checked": undefined,
|
|
1177
|
-
"disabled": undefined,
|
|
1178
|
-
"expanded": undefined,
|
|
1179
|
-
"selected": undefined,
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1182
|
-
accessibilityValue={
|
|
1183
|
-
{
|
|
1184
|
-
"max": undefined,
|
|
1185
|
-
"min": undefined,
|
|
1186
|
-
"now": undefined,
|
|
1187
|
-
"text": undefined,
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
accessible={true}
|
|
1191
|
-
collapsable={false}
|
|
1192
|
-
focusable={true}
|
|
1193
|
-
onClick={[Function]}
|
|
1194
|
-
onResponderGrant={[Function]}
|
|
1195
|
-
onResponderMove={[Function]}
|
|
1196
|
-
onResponderRelease={[Function]}
|
|
1197
|
-
onResponderTerminate={[Function]}
|
|
1198
|
-
onResponderTerminationRequest={[Function]}
|
|
1199
|
-
onStartShouldSetResponder={[Function]}
|
|
1200
|
-
style={
|
|
1201
|
-
{
|
|
1202
|
-
"opacity": 1,
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
testID="bottom-sheet-close-icon"
|
|
1206
|
-
>
|
|
1207
|
-
<HeroIcon
|
|
1208
|
-
name="cancel"
|
|
1209
|
-
style={
|
|
1210
|
-
[
|
|
1211
|
-
{
|
|
1212
|
-
"color": "#001f23",
|
|
1213
|
-
"fontSize": 16,
|
|
1214
|
-
},
|
|
1215
|
-
undefined,
|
|
1216
|
-
]
|
|
1217
|
-
}
|
|
1218
|
-
themeIntent="text"
|
|
1219
|
-
themeSize="xsmall"
|
|
1220
|
-
/>
|
|
1221
|
-
</View>
|
|
1185
|
+
themeIntent="text"
|
|
1186
|
+
themeSize="xsmall"
|
|
1187
|
+
/>
|
|
1222
1188
|
</View>
|
|
1223
1189
|
</View>
|
|
1190
|
+
</View>
|
|
1191
|
+
<View
|
|
1192
|
+
style={
|
|
1193
|
+
[
|
|
1194
|
+
{
|
|
1195
|
+
"height": 176,
|
|
1196
|
+
},
|
|
1197
|
+
undefined,
|
|
1198
|
+
]
|
|
1199
|
+
}
|
|
1200
|
+
>
|
|
1201
|
+
<Picker
|
|
1202
|
+
display="spinner"
|
|
1203
|
+
locale="zh-CN"
|
|
1204
|
+
mode="date"
|
|
1205
|
+
onChange={[Function]}
|
|
1206
|
+
style={
|
|
1207
|
+
{
|
|
1208
|
+
"flex": 1,
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
testID="datePickerIOS"
|
|
1212
|
+
textColor="#001f23"
|
|
1213
|
+
value={1995-12-21T00:00:00.000Z}
|
|
1214
|
+
/>
|
|
1215
|
+
</View>
|
|
1216
|
+
<View>
|
|
1224
1217
|
<View
|
|
1225
1218
|
style={
|
|
1226
1219
|
[
|
|
1227
1220
|
{
|
|
1228
|
-
"
|
|
1221
|
+
"alignItems": "center",
|
|
1222
|
+
"flexDirection": "row",
|
|
1223
|
+
"justifyContent": "flex-end",
|
|
1224
|
+
"paddingHorizontal": 12,
|
|
1225
|
+
"paddingVertical": 2,
|
|
1229
1226
|
},
|
|
1230
1227
|
undefined,
|
|
1231
1228
|
]
|
|
1232
1229
|
}
|
|
1233
1230
|
>
|
|
1234
|
-
<
|
|
1235
|
-
|
|
1236
|
-
locale="zh-CN"
|
|
1237
|
-
mode="date"
|
|
1238
|
-
onChange={[Function]}
|
|
1239
|
-
style={
|
|
1231
|
+
<View
|
|
1232
|
+
accessibilityState={
|
|
1240
1233
|
{
|
|
1241
|
-
"
|
|
1234
|
+
"disabled": false,
|
|
1242
1235
|
}
|
|
1243
1236
|
}
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1237
|
+
accessibilityValue={
|
|
1238
|
+
{
|
|
1239
|
+
"max": undefined,
|
|
1240
|
+
"min": undefined,
|
|
1241
|
+
"now": undefined,
|
|
1242
|
+
"text": undefined,
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
accessible={true}
|
|
1246
|
+
focusable={true}
|
|
1247
|
+
onClick={[Function]}
|
|
1248
|
+
onResponderGrant={[Function]}
|
|
1249
|
+
onResponderMove={[Function]}
|
|
1250
|
+
onResponderRelease={[Function]}
|
|
1251
|
+
onResponderTerminate={[Function]}
|
|
1252
|
+
onResponderTerminationRequest={[Function]}
|
|
1253
|
+
onStartShouldSetResponder={[Function]}
|
|
1251
1254
|
style={
|
|
1252
1255
|
[
|
|
1253
1256
|
{
|
|
1254
1257
|
"alignItems": "center",
|
|
1258
|
+
"backgroundColor": "transparent",
|
|
1259
|
+
"borderRadius": 4,
|
|
1260
|
+
"borderWidth": 0,
|
|
1255
1261
|
"flexDirection": "row",
|
|
1256
|
-
"
|
|
1257
|
-
"
|
|
1258
|
-
"
|
|
1262
|
+
"height": 60,
|
|
1263
|
+
"justifyContent": "center",
|
|
1264
|
+
"padding": 12,
|
|
1259
1265
|
},
|
|
1260
1266
|
undefined,
|
|
1261
1267
|
]
|
|
1262
1268
|
}
|
|
1263
1269
|
>
|
|
1264
|
-
<
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
}
|
|
1270
|
-
accessibilityValue={
|
|
1271
|
-
{
|
|
1272
|
-
"max": undefined,
|
|
1273
|
-
"min": undefined,
|
|
1274
|
-
"now": undefined,
|
|
1275
|
-
"text": undefined,
|
|
1276
|
-
}
|
|
1277
|
-
}
|
|
1278
|
-
accessible={true}
|
|
1279
|
-
focusable={true}
|
|
1280
|
-
onClick={[Function]}
|
|
1281
|
-
onResponderGrant={[Function]}
|
|
1282
|
-
onResponderMove={[Function]}
|
|
1283
|
-
onResponderRelease={[Function]}
|
|
1284
|
-
onResponderTerminate={[Function]}
|
|
1285
|
-
onResponderTerminationRequest={[Function]}
|
|
1286
|
-
onStartShouldSetResponder={[Function]}
|
|
1270
|
+
<Text
|
|
1271
|
+
allowFontScaling={false}
|
|
1272
|
+
disabled={false}
|
|
1273
|
+
ellipsizeMode="tail"
|
|
1274
|
+
numberOfLines={1}
|
|
1287
1275
|
style={
|
|
1288
1276
|
[
|
|
1289
1277
|
{
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1295
|
-
"height": 60,
|
|
1296
|
-
"justifyContent": "center",
|
|
1297
|
-
"padding": 12,
|
|
1278
|
+
"color": "#001f23",
|
|
1279
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1280
|
+
"fontSize": 16,
|
|
1281
|
+
"letterSpacing": 0.24,
|
|
1282
|
+
"lineHeight": 24,
|
|
1298
1283
|
},
|
|
1299
|
-
undefined,
|
|
1300
|
-
]
|
|
1301
|
-
}
|
|
1302
|
-
>
|
|
1303
|
-
<Text
|
|
1304
|
-
allowFontScaling={false}
|
|
1305
|
-
disabled={false}
|
|
1306
|
-
ellipsizeMode="tail"
|
|
1307
|
-
numberOfLines={1}
|
|
1308
|
-
style={
|
|
1309
1284
|
[
|
|
1310
1285
|
{
|
|
1311
|
-
"color": "#
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1286
|
+
"color": "#401960",
|
|
1287
|
+
"flexShrink": 1,
|
|
1288
|
+
"lineHeight": 22,
|
|
1289
|
+
"textAlign": "center",
|
|
1290
|
+
"textAlignVertical": "center",
|
|
1316
1291
|
},
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
themeIntent="body"
|
|
1331
|
-
themeIsCompact={false}
|
|
1332
|
-
themeIsPressed={false}
|
|
1333
|
-
themeTypeface="neutral"
|
|
1334
|
-
themeVariant="regular-bold"
|
|
1335
|
-
>
|
|
1336
|
-
Confirm
|
|
1337
|
-
</Text>
|
|
1338
|
-
</View>
|
|
1292
|
+
undefined,
|
|
1293
|
+
],
|
|
1294
|
+
]
|
|
1295
|
+
}
|
|
1296
|
+
themeButtonVariant="text-primary"
|
|
1297
|
+
themeIntent="body"
|
|
1298
|
+
themeIsCompact={false}
|
|
1299
|
+
themeIsPressed={false}
|
|
1300
|
+
themeTypeface="neutral"
|
|
1301
|
+
themeVariant="regular-bold"
|
|
1302
|
+
>
|
|
1303
|
+
Confirm
|
|
1304
|
+
</Text>
|
|
1339
1305
|
</View>
|
|
1340
1306
|
</View>
|
|
1341
1307
|
</View>
|
|
1342
|
-
</
|
|
1308
|
+
</RCTSafeAreaView>
|
|
1343
1309
|
</View>
|
|
1344
1310
|
</View>
|
|
1345
1311
|
</View>
|