@hero-design/rn 8.84.3 → 8.86.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +12 -0
- package/es/index.js +112 -27
- package/lib/index.js +112 -27
- package/package.json +1 -1
- package/src/components/Box/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/Box/__tests__/index.spec.tsx +1 -0
- package/src/components/Box/config.ts +4 -0
- package/src/components/Button/Button.tsx +22 -6
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +8 -2
- package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +3 -0
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +139 -1
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +408 -3
- package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +3 -0
- package/src/components/Button/LoadingIndicator/index.tsx +4 -1
- package/src/components/Button/StyledButton.tsx +95 -5
- package/src/components/Button/__tests__/Button.spec.tsx +12 -0
- package/src/components/Button/__tests__/StyledButton.spec.tsx +10 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1240 -90
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +630 -40
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +5 -0
- package/src/theme/components/button.ts +5 -0
- package/stats/8.85.0/rn-stats.html +4842 -0
- package/stats/8.86.0/rn-stats.html +4842 -0
- package/types/components/Box/config.d.ts +4 -0
- package/types/components/Button/Button.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
- package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +3 -3
- package/types/theme/components/button.d.ts +5 -0
|
@@ -569,13 +569,1061 @@ exports[`Button renders correctly 4`] = `
|
|
|
569
569
|
onResponderTerminate={[Function]}
|
|
570
570
|
onResponderTerminationRequest={[Function]}
|
|
571
571
|
onStartShouldSetResponder={[Function]}
|
|
572
|
+
style={
|
|
573
|
+
[
|
|
574
|
+
{
|
|
575
|
+
"alignItems": "center",
|
|
576
|
+
"alignSelf": "stretch",
|
|
577
|
+
"backgroundColor": "#ffffff",
|
|
578
|
+
"borderRadius": 32,
|
|
579
|
+
"flexDirection": "row",
|
|
580
|
+
"height": 60,
|
|
581
|
+
"justifyContent": "center",
|
|
582
|
+
"padding": 16,
|
|
583
|
+
},
|
|
584
|
+
undefined,
|
|
585
|
+
]
|
|
586
|
+
}
|
|
587
|
+
>
|
|
588
|
+
<Text
|
|
589
|
+
allowFontScaling={false}
|
|
590
|
+
disabled={false}
|
|
591
|
+
ellipsizeMode="tail"
|
|
592
|
+
numberOfLines={1}
|
|
593
|
+
style={
|
|
594
|
+
[
|
|
595
|
+
{
|
|
596
|
+
"color": "#001f23",
|
|
597
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
598
|
+
"fontSize": 18,
|
|
599
|
+
"letterSpacing": 0.24,
|
|
600
|
+
"lineHeight": 28,
|
|
601
|
+
},
|
|
602
|
+
[
|
|
603
|
+
{
|
|
604
|
+
"color": "#401960",
|
|
605
|
+
"flexShrink": 1,
|
|
606
|
+
"textAlign": "center",
|
|
607
|
+
},
|
|
608
|
+
undefined,
|
|
609
|
+
],
|
|
610
|
+
]
|
|
611
|
+
}
|
|
612
|
+
themeButtonVariant="filled-white"
|
|
613
|
+
themeIntent="body"
|
|
614
|
+
themeLevel="h5"
|
|
615
|
+
themeTypeface="neutral"
|
|
616
|
+
>
|
|
617
|
+
A button
|
|
618
|
+
</Text>
|
|
619
|
+
</View>
|
|
620
|
+
<View
|
|
621
|
+
pointerEvents="box-none"
|
|
622
|
+
position="bottom"
|
|
623
|
+
style={
|
|
624
|
+
[
|
|
625
|
+
{
|
|
626
|
+
"bottom": 0,
|
|
627
|
+
"elevation": 9999,
|
|
628
|
+
"flexDirection": "column-reverse",
|
|
629
|
+
"left": 0,
|
|
630
|
+
"paddingHorizontal": 24,
|
|
631
|
+
"paddingVertical": 16,
|
|
632
|
+
"position": "absolute",
|
|
633
|
+
"right": 0,
|
|
634
|
+
"top": 0,
|
|
635
|
+
},
|
|
636
|
+
undefined,
|
|
637
|
+
]
|
|
638
|
+
}
|
|
639
|
+
/>
|
|
640
|
+
</View>
|
|
641
|
+
`;
|
|
642
|
+
|
|
643
|
+
exports[`Button renders correctly 5`] = `
|
|
644
|
+
<View
|
|
645
|
+
style={
|
|
646
|
+
{
|
|
647
|
+
"flex": 1,
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
>
|
|
651
|
+
<View
|
|
652
|
+
accessibilityState={
|
|
653
|
+
{
|
|
654
|
+
"disabled": true,
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
accessibilityValue={
|
|
658
|
+
{
|
|
659
|
+
"max": undefined,
|
|
660
|
+
"min": undefined,
|
|
661
|
+
"now": undefined,
|
|
662
|
+
"text": undefined,
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
accessible={true}
|
|
666
|
+
focusable={true}
|
|
667
|
+
onClick={[Function]}
|
|
668
|
+
onResponderGrant={[Function]}
|
|
669
|
+
onResponderMove={[Function]}
|
|
670
|
+
onResponderRelease={[Function]}
|
|
671
|
+
onResponderTerminate={[Function]}
|
|
672
|
+
onResponderTerminationRequest={[Function]}
|
|
673
|
+
onStartShouldSetResponder={[Function]}
|
|
674
|
+
style={
|
|
675
|
+
[
|
|
676
|
+
{
|
|
677
|
+
"alignItems": "center",
|
|
678
|
+
"alignSelf": "stretch",
|
|
679
|
+
"backgroundColor": "#ffffff",
|
|
680
|
+
"borderRadius": 32,
|
|
681
|
+
"flexDirection": "row",
|
|
682
|
+
"height": 60,
|
|
683
|
+
"justifyContent": "center",
|
|
684
|
+
"padding": 16,
|
|
685
|
+
},
|
|
686
|
+
undefined,
|
|
687
|
+
]
|
|
688
|
+
}
|
|
689
|
+
>
|
|
690
|
+
<View
|
|
691
|
+
collapsable={false}
|
|
692
|
+
style={
|
|
693
|
+
[
|
|
694
|
+
{
|
|
695
|
+
"alignItems": "center",
|
|
696
|
+
"flexDirection": "row",
|
|
697
|
+
"justifyContent": "center",
|
|
698
|
+
},
|
|
699
|
+
{},
|
|
700
|
+
]
|
|
701
|
+
}
|
|
702
|
+
testID="undefined-loading-indicator"
|
|
703
|
+
>
|
|
704
|
+
<View
|
|
705
|
+
collapsable={false}
|
|
706
|
+
style={
|
|
707
|
+
{
|
|
708
|
+
"transform": [
|
|
709
|
+
{
|
|
710
|
+
"scale": 1,
|
|
711
|
+
},
|
|
712
|
+
],
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
>
|
|
716
|
+
<View
|
|
717
|
+
collapsable={false}
|
|
718
|
+
size={12}
|
|
719
|
+
style={
|
|
720
|
+
[
|
|
721
|
+
{
|
|
722
|
+
"backgroundColor": "#401960",
|
|
723
|
+
"borderRadius": 8,
|
|
724
|
+
"height": 12,
|
|
725
|
+
"marginHorizontal": 8,
|
|
726
|
+
"width": 12,
|
|
727
|
+
},
|
|
728
|
+
{},
|
|
729
|
+
]
|
|
730
|
+
}
|
|
731
|
+
themeVariant="filled-white"
|
|
732
|
+
/>
|
|
733
|
+
</View>
|
|
734
|
+
<View
|
|
735
|
+
collapsable={false}
|
|
736
|
+
style={
|
|
737
|
+
{
|
|
738
|
+
"transform": [
|
|
739
|
+
{
|
|
740
|
+
"scale": 1,
|
|
741
|
+
},
|
|
742
|
+
],
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
>
|
|
746
|
+
<View
|
|
747
|
+
collapsable={false}
|
|
748
|
+
size={12}
|
|
749
|
+
style={
|
|
750
|
+
[
|
|
751
|
+
{
|
|
752
|
+
"backgroundColor": "#401960",
|
|
753
|
+
"borderRadius": 8,
|
|
754
|
+
"height": 12,
|
|
755
|
+
"marginHorizontal": 8,
|
|
756
|
+
"width": 12,
|
|
757
|
+
},
|
|
758
|
+
{},
|
|
759
|
+
]
|
|
760
|
+
}
|
|
761
|
+
themeVariant="filled-white"
|
|
762
|
+
/>
|
|
763
|
+
</View>
|
|
764
|
+
<View
|
|
765
|
+
collapsable={false}
|
|
766
|
+
style={
|
|
767
|
+
{
|
|
768
|
+
"transform": [
|
|
769
|
+
{
|
|
770
|
+
"scale": 1,
|
|
771
|
+
},
|
|
772
|
+
],
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
>
|
|
776
|
+
<View
|
|
777
|
+
collapsable={false}
|
|
778
|
+
size={12}
|
|
779
|
+
style={
|
|
780
|
+
[
|
|
781
|
+
{
|
|
782
|
+
"backgroundColor": "#401960",
|
|
783
|
+
"borderRadius": 8,
|
|
784
|
+
"height": 12,
|
|
785
|
+
"marginHorizontal": 8,
|
|
786
|
+
"width": 12,
|
|
787
|
+
},
|
|
788
|
+
{},
|
|
789
|
+
]
|
|
790
|
+
}
|
|
791
|
+
themeVariant="filled-white"
|
|
792
|
+
/>
|
|
793
|
+
</View>
|
|
794
|
+
</View>
|
|
795
|
+
</View>
|
|
796
|
+
<View
|
|
797
|
+
pointerEvents="box-none"
|
|
798
|
+
position="bottom"
|
|
799
|
+
style={
|
|
800
|
+
[
|
|
801
|
+
{
|
|
802
|
+
"bottom": 0,
|
|
803
|
+
"elevation": 9999,
|
|
804
|
+
"flexDirection": "column-reverse",
|
|
805
|
+
"left": 0,
|
|
806
|
+
"paddingHorizontal": 24,
|
|
807
|
+
"paddingVertical": 16,
|
|
808
|
+
"position": "absolute",
|
|
809
|
+
"right": 0,
|
|
810
|
+
"top": 0,
|
|
811
|
+
},
|
|
812
|
+
undefined,
|
|
813
|
+
]
|
|
814
|
+
}
|
|
815
|
+
/>
|
|
816
|
+
</View>
|
|
817
|
+
`;
|
|
818
|
+
|
|
819
|
+
exports[`Button renders correctly 6`] = `
|
|
820
|
+
<View
|
|
821
|
+
style={
|
|
822
|
+
{
|
|
823
|
+
"flex": 1,
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
>
|
|
827
|
+
<View
|
|
828
|
+
accessibilityState={
|
|
829
|
+
{
|
|
830
|
+
"disabled": true,
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
accessibilityValue={
|
|
834
|
+
{
|
|
835
|
+
"max": undefined,
|
|
836
|
+
"min": undefined,
|
|
837
|
+
"now": undefined,
|
|
838
|
+
"text": undefined,
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
accessible={true}
|
|
842
|
+
focusable={true}
|
|
843
|
+
onClick={[Function]}
|
|
844
|
+
onResponderGrant={[Function]}
|
|
845
|
+
onResponderMove={[Function]}
|
|
846
|
+
onResponderRelease={[Function]}
|
|
847
|
+
onResponderTerminate={[Function]}
|
|
848
|
+
onResponderTerminationRequest={[Function]}
|
|
849
|
+
onStartShouldSetResponder={[Function]}
|
|
850
|
+
style={
|
|
851
|
+
[
|
|
852
|
+
{
|
|
853
|
+
"alignItems": "center",
|
|
854
|
+
"alignSelf": "stretch",
|
|
855
|
+
"backgroundColor": "#bfc1c5",
|
|
856
|
+
"borderRadius": 32,
|
|
857
|
+
"flexDirection": "row",
|
|
858
|
+
"height": 60,
|
|
859
|
+
"justifyContent": "center",
|
|
860
|
+
"padding": 16,
|
|
861
|
+
},
|
|
862
|
+
undefined,
|
|
863
|
+
]
|
|
864
|
+
}
|
|
865
|
+
>
|
|
866
|
+
<Text
|
|
867
|
+
allowFontScaling={false}
|
|
868
|
+
disabled={true}
|
|
869
|
+
ellipsizeMode="tail"
|
|
870
|
+
numberOfLines={1}
|
|
871
|
+
style={
|
|
872
|
+
[
|
|
873
|
+
{
|
|
874
|
+
"color": "#001f23",
|
|
875
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
876
|
+
"fontSize": 18,
|
|
877
|
+
"letterSpacing": 0.24,
|
|
878
|
+
"lineHeight": 28,
|
|
879
|
+
},
|
|
880
|
+
[
|
|
881
|
+
{
|
|
882
|
+
"color": "#ffffff",
|
|
883
|
+
"flexShrink": 1,
|
|
884
|
+
"textAlign": "center",
|
|
885
|
+
},
|
|
886
|
+
undefined,
|
|
887
|
+
],
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
themeButtonVariant="filled-white"
|
|
891
|
+
themeIntent="body"
|
|
892
|
+
themeLevel="h5"
|
|
893
|
+
themeTypeface="neutral"
|
|
894
|
+
>
|
|
895
|
+
A button
|
|
896
|
+
</Text>
|
|
897
|
+
</View>
|
|
898
|
+
<View
|
|
899
|
+
pointerEvents="box-none"
|
|
900
|
+
position="bottom"
|
|
901
|
+
style={
|
|
902
|
+
[
|
|
903
|
+
{
|
|
904
|
+
"bottom": 0,
|
|
905
|
+
"elevation": 9999,
|
|
906
|
+
"flexDirection": "column-reverse",
|
|
907
|
+
"left": 0,
|
|
908
|
+
"paddingHorizontal": 24,
|
|
909
|
+
"paddingVertical": 16,
|
|
910
|
+
"position": "absolute",
|
|
911
|
+
"right": 0,
|
|
912
|
+
"top": 0,
|
|
913
|
+
},
|
|
914
|
+
undefined,
|
|
915
|
+
]
|
|
916
|
+
}
|
|
917
|
+
/>
|
|
918
|
+
</View>
|
|
919
|
+
`;
|
|
920
|
+
|
|
921
|
+
exports[`Button renders correctly 7`] = `
|
|
922
|
+
<View
|
|
923
|
+
style={
|
|
924
|
+
{
|
|
925
|
+
"flex": 1,
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
>
|
|
929
|
+
<View
|
|
930
|
+
accessibilityState={
|
|
931
|
+
{
|
|
932
|
+
"disabled": false,
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
accessibilityValue={
|
|
936
|
+
{
|
|
937
|
+
"max": undefined,
|
|
938
|
+
"min": undefined,
|
|
939
|
+
"now": undefined,
|
|
940
|
+
"text": undefined,
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
accessible={true}
|
|
944
|
+
focusable={true}
|
|
945
|
+
onClick={[Function]}
|
|
946
|
+
onResponderGrant={[Function]}
|
|
947
|
+
onResponderMove={[Function]}
|
|
948
|
+
onResponderRelease={[Function]}
|
|
949
|
+
onResponderTerminate={[Function]}
|
|
950
|
+
onResponderTerminationRequest={[Function]}
|
|
951
|
+
onStartShouldSetResponder={[Function]}
|
|
952
|
+
style={
|
|
953
|
+
[
|
|
954
|
+
{
|
|
955
|
+
"alignItems": "center",
|
|
956
|
+
"alignSelf": "stretch",
|
|
957
|
+
"backgroundColor": "transparent",
|
|
958
|
+
"borderColor": "#401960",
|
|
959
|
+
"borderRadius": 32,
|
|
960
|
+
"borderWidth": 2,
|
|
961
|
+
"flexDirection": "row",
|
|
962
|
+
"height": 60,
|
|
963
|
+
"justifyContent": "center",
|
|
964
|
+
"padding": 14,
|
|
965
|
+
},
|
|
966
|
+
undefined,
|
|
967
|
+
]
|
|
968
|
+
}
|
|
969
|
+
>
|
|
970
|
+
<Text
|
|
971
|
+
allowFontScaling={false}
|
|
972
|
+
disabled={false}
|
|
973
|
+
ellipsizeMode="tail"
|
|
974
|
+
numberOfLines={1}
|
|
975
|
+
style={
|
|
976
|
+
[
|
|
977
|
+
{
|
|
978
|
+
"color": "#001f23",
|
|
979
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
980
|
+
"fontSize": 18,
|
|
981
|
+
"letterSpacing": 0.24,
|
|
982
|
+
"lineHeight": 28,
|
|
983
|
+
},
|
|
984
|
+
[
|
|
985
|
+
{
|
|
986
|
+
"color": "#401960",
|
|
987
|
+
"flexShrink": 1,
|
|
988
|
+
"textAlign": "center",
|
|
989
|
+
},
|
|
990
|
+
undefined,
|
|
991
|
+
],
|
|
992
|
+
]
|
|
993
|
+
}
|
|
994
|
+
themeButtonVariant="outlined-primary"
|
|
995
|
+
themeIntent="body"
|
|
996
|
+
themeLevel="h5"
|
|
997
|
+
themeTypeface="neutral"
|
|
998
|
+
>
|
|
999
|
+
A button
|
|
1000
|
+
</Text>
|
|
1001
|
+
</View>
|
|
1002
|
+
<View
|
|
1003
|
+
pointerEvents="box-none"
|
|
1004
|
+
position="bottom"
|
|
1005
|
+
style={
|
|
1006
|
+
[
|
|
1007
|
+
{
|
|
1008
|
+
"bottom": 0,
|
|
1009
|
+
"elevation": 9999,
|
|
1010
|
+
"flexDirection": "column-reverse",
|
|
1011
|
+
"left": 0,
|
|
1012
|
+
"paddingHorizontal": 24,
|
|
1013
|
+
"paddingVertical": 16,
|
|
1014
|
+
"position": "absolute",
|
|
1015
|
+
"right": 0,
|
|
1016
|
+
"top": 0,
|
|
1017
|
+
},
|
|
1018
|
+
undefined,
|
|
1019
|
+
]
|
|
1020
|
+
}
|
|
1021
|
+
/>
|
|
1022
|
+
</View>
|
|
1023
|
+
`;
|
|
1024
|
+
|
|
1025
|
+
exports[`Button renders correctly 8`] = `
|
|
1026
|
+
<View
|
|
1027
|
+
style={
|
|
1028
|
+
{
|
|
1029
|
+
"flex": 1,
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
>
|
|
1033
|
+
<View
|
|
1034
|
+
accessibilityState={
|
|
1035
|
+
{
|
|
1036
|
+
"disabled": true,
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
accessibilityValue={
|
|
1040
|
+
{
|
|
1041
|
+
"max": undefined,
|
|
1042
|
+
"min": undefined,
|
|
1043
|
+
"now": undefined,
|
|
1044
|
+
"text": undefined,
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
accessible={true}
|
|
1048
|
+
focusable={true}
|
|
1049
|
+
onClick={[Function]}
|
|
1050
|
+
onResponderGrant={[Function]}
|
|
1051
|
+
onResponderMove={[Function]}
|
|
1052
|
+
onResponderRelease={[Function]}
|
|
1053
|
+
onResponderTerminate={[Function]}
|
|
1054
|
+
onResponderTerminationRequest={[Function]}
|
|
1055
|
+
onStartShouldSetResponder={[Function]}
|
|
1056
|
+
style={
|
|
1057
|
+
[
|
|
1058
|
+
{
|
|
1059
|
+
"alignItems": "center",
|
|
1060
|
+
"alignSelf": "stretch",
|
|
1061
|
+
"backgroundColor": "transparent",
|
|
1062
|
+
"borderColor": "#401960",
|
|
1063
|
+
"borderRadius": 32,
|
|
1064
|
+
"borderWidth": 2,
|
|
1065
|
+
"flexDirection": "row",
|
|
1066
|
+
"height": 60,
|
|
1067
|
+
"justifyContent": "center",
|
|
1068
|
+
"padding": 14,
|
|
1069
|
+
},
|
|
1070
|
+
undefined,
|
|
1071
|
+
]
|
|
1072
|
+
}
|
|
1073
|
+
>
|
|
1074
|
+
<View
|
|
1075
|
+
collapsable={false}
|
|
1076
|
+
style={
|
|
1077
|
+
[
|
|
1078
|
+
{
|
|
1079
|
+
"alignItems": "center",
|
|
1080
|
+
"flexDirection": "row",
|
|
1081
|
+
"justifyContent": "center",
|
|
1082
|
+
},
|
|
1083
|
+
{},
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
testID="undefined-loading-indicator"
|
|
1087
|
+
>
|
|
1088
|
+
<View
|
|
1089
|
+
collapsable={false}
|
|
1090
|
+
style={
|
|
1091
|
+
{
|
|
1092
|
+
"transform": [
|
|
1093
|
+
{
|
|
1094
|
+
"scale": 1,
|
|
1095
|
+
},
|
|
1096
|
+
],
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
>
|
|
1100
|
+
<View
|
|
1101
|
+
collapsable={false}
|
|
1102
|
+
size={12}
|
|
1103
|
+
style={
|
|
1104
|
+
[
|
|
1105
|
+
{
|
|
1106
|
+
"backgroundColor": "#401960",
|
|
1107
|
+
"borderRadius": 8,
|
|
1108
|
+
"height": 12,
|
|
1109
|
+
"marginHorizontal": 8,
|
|
1110
|
+
"width": 12,
|
|
1111
|
+
},
|
|
1112
|
+
{},
|
|
1113
|
+
]
|
|
1114
|
+
}
|
|
1115
|
+
themeVariant="outlined-primary"
|
|
1116
|
+
/>
|
|
1117
|
+
</View>
|
|
1118
|
+
<View
|
|
1119
|
+
collapsable={false}
|
|
1120
|
+
style={
|
|
1121
|
+
{
|
|
1122
|
+
"transform": [
|
|
1123
|
+
{
|
|
1124
|
+
"scale": 1,
|
|
1125
|
+
},
|
|
1126
|
+
],
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
>
|
|
1130
|
+
<View
|
|
1131
|
+
collapsable={false}
|
|
1132
|
+
size={12}
|
|
1133
|
+
style={
|
|
1134
|
+
[
|
|
1135
|
+
{
|
|
1136
|
+
"backgroundColor": "#401960",
|
|
1137
|
+
"borderRadius": 8,
|
|
1138
|
+
"height": 12,
|
|
1139
|
+
"marginHorizontal": 8,
|
|
1140
|
+
"width": 12,
|
|
1141
|
+
},
|
|
1142
|
+
{},
|
|
1143
|
+
]
|
|
1144
|
+
}
|
|
1145
|
+
themeVariant="outlined-primary"
|
|
1146
|
+
/>
|
|
1147
|
+
</View>
|
|
1148
|
+
<View
|
|
1149
|
+
collapsable={false}
|
|
1150
|
+
style={
|
|
1151
|
+
{
|
|
1152
|
+
"transform": [
|
|
1153
|
+
{
|
|
1154
|
+
"scale": 1,
|
|
1155
|
+
},
|
|
1156
|
+
],
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
>
|
|
1160
|
+
<View
|
|
1161
|
+
collapsable={false}
|
|
1162
|
+
size={12}
|
|
1163
|
+
style={
|
|
1164
|
+
[
|
|
1165
|
+
{
|
|
1166
|
+
"backgroundColor": "#401960",
|
|
1167
|
+
"borderRadius": 8,
|
|
1168
|
+
"height": 12,
|
|
1169
|
+
"marginHorizontal": 8,
|
|
1170
|
+
"width": 12,
|
|
1171
|
+
},
|
|
1172
|
+
{},
|
|
1173
|
+
]
|
|
1174
|
+
}
|
|
1175
|
+
themeVariant="outlined-primary"
|
|
1176
|
+
/>
|
|
1177
|
+
</View>
|
|
1178
|
+
</View>
|
|
1179
|
+
</View>
|
|
1180
|
+
<View
|
|
1181
|
+
pointerEvents="box-none"
|
|
1182
|
+
position="bottom"
|
|
1183
|
+
style={
|
|
1184
|
+
[
|
|
1185
|
+
{
|
|
1186
|
+
"bottom": 0,
|
|
1187
|
+
"elevation": 9999,
|
|
1188
|
+
"flexDirection": "column-reverse",
|
|
1189
|
+
"left": 0,
|
|
1190
|
+
"paddingHorizontal": 24,
|
|
1191
|
+
"paddingVertical": 16,
|
|
1192
|
+
"position": "absolute",
|
|
1193
|
+
"right": 0,
|
|
1194
|
+
"top": 0,
|
|
1195
|
+
},
|
|
1196
|
+
undefined,
|
|
1197
|
+
]
|
|
1198
|
+
}
|
|
1199
|
+
/>
|
|
1200
|
+
</View>
|
|
1201
|
+
`;
|
|
1202
|
+
|
|
1203
|
+
exports[`Button renders correctly 9`] = `
|
|
1204
|
+
<View
|
|
1205
|
+
style={
|
|
1206
|
+
{
|
|
1207
|
+
"flex": 1,
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
>
|
|
1211
|
+
<View
|
|
1212
|
+
accessibilityState={
|
|
1213
|
+
{
|
|
1214
|
+
"disabled": true,
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
accessibilityValue={
|
|
1218
|
+
{
|
|
1219
|
+
"max": undefined,
|
|
1220
|
+
"min": undefined,
|
|
1221
|
+
"now": undefined,
|
|
1222
|
+
"text": undefined,
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
accessible={true}
|
|
1226
|
+
focusable={true}
|
|
1227
|
+
onClick={[Function]}
|
|
1228
|
+
onResponderGrant={[Function]}
|
|
1229
|
+
onResponderMove={[Function]}
|
|
1230
|
+
onResponderRelease={[Function]}
|
|
1231
|
+
onResponderTerminate={[Function]}
|
|
1232
|
+
onResponderTerminationRequest={[Function]}
|
|
1233
|
+
onStartShouldSetResponder={[Function]}
|
|
1234
|
+
style={
|
|
1235
|
+
[
|
|
1236
|
+
{
|
|
1237
|
+
"alignItems": "center",
|
|
1238
|
+
"alignSelf": "stretch",
|
|
1239
|
+
"backgroundColor": "transparent",
|
|
1240
|
+
"borderColor": "#bfc1c5",
|
|
1241
|
+
"borderRadius": 32,
|
|
1242
|
+
"borderWidth": 2,
|
|
1243
|
+
"flexDirection": "row",
|
|
1244
|
+
"height": 60,
|
|
1245
|
+
"justifyContent": "center",
|
|
1246
|
+
"padding": 14,
|
|
1247
|
+
},
|
|
1248
|
+
undefined,
|
|
1249
|
+
]
|
|
1250
|
+
}
|
|
1251
|
+
>
|
|
1252
|
+
<Text
|
|
1253
|
+
allowFontScaling={false}
|
|
1254
|
+
disabled={true}
|
|
1255
|
+
ellipsizeMode="tail"
|
|
1256
|
+
numberOfLines={1}
|
|
1257
|
+
style={
|
|
1258
|
+
[
|
|
1259
|
+
{
|
|
1260
|
+
"color": "#001f23",
|
|
1261
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1262
|
+
"fontSize": 18,
|
|
1263
|
+
"letterSpacing": 0.24,
|
|
1264
|
+
"lineHeight": 28,
|
|
1265
|
+
},
|
|
1266
|
+
[
|
|
1267
|
+
{
|
|
1268
|
+
"color": "#bfc1c5",
|
|
1269
|
+
"flexShrink": 1,
|
|
1270
|
+
"textAlign": "center",
|
|
1271
|
+
},
|
|
1272
|
+
undefined,
|
|
1273
|
+
],
|
|
1274
|
+
]
|
|
1275
|
+
}
|
|
1276
|
+
themeButtonVariant="outlined-primary"
|
|
1277
|
+
themeIntent="body"
|
|
1278
|
+
themeLevel="h5"
|
|
1279
|
+
themeTypeface="neutral"
|
|
1280
|
+
>
|
|
1281
|
+
A button
|
|
1282
|
+
</Text>
|
|
1283
|
+
</View>
|
|
1284
|
+
<View
|
|
1285
|
+
pointerEvents="box-none"
|
|
1286
|
+
position="bottom"
|
|
1287
|
+
style={
|
|
1288
|
+
[
|
|
1289
|
+
{
|
|
1290
|
+
"bottom": 0,
|
|
1291
|
+
"elevation": 9999,
|
|
1292
|
+
"flexDirection": "column-reverse",
|
|
1293
|
+
"left": 0,
|
|
1294
|
+
"paddingHorizontal": 24,
|
|
1295
|
+
"paddingVertical": 16,
|
|
1296
|
+
"position": "absolute",
|
|
1297
|
+
"right": 0,
|
|
1298
|
+
"top": 0,
|
|
1299
|
+
},
|
|
1300
|
+
undefined,
|
|
1301
|
+
]
|
|
1302
|
+
}
|
|
1303
|
+
/>
|
|
1304
|
+
</View>
|
|
1305
|
+
`;
|
|
1306
|
+
|
|
1307
|
+
exports[`Button renders correctly 10`] = `
|
|
1308
|
+
<View
|
|
1309
|
+
style={
|
|
1310
|
+
{
|
|
1311
|
+
"flex": 1,
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
>
|
|
1315
|
+
<View
|
|
1316
|
+
accessibilityState={
|
|
1317
|
+
{
|
|
1318
|
+
"disabled": false,
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
accessibilityValue={
|
|
1322
|
+
{
|
|
1323
|
+
"max": undefined,
|
|
1324
|
+
"min": undefined,
|
|
1325
|
+
"now": undefined,
|
|
1326
|
+
"text": undefined,
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
accessible={true}
|
|
1330
|
+
focusable={true}
|
|
1331
|
+
onClick={[Function]}
|
|
1332
|
+
onResponderGrant={[Function]}
|
|
1333
|
+
onResponderMove={[Function]}
|
|
1334
|
+
onResponderRelease={[Function]}
|
|
1335
|
+
onResponderTerminate={[Function]}
|
|
1336
|
+
onResponderTerminationRequest={[Function]}
|
|
1337
|
+
onStartShouldSetResponder={[Function]}
|
|
1338
|
+
style={
|
|
1339
|
+
[
|
|
1340
|
+
{
|
|
1341
|
+
"alignItems": "center",
|
|
1342
|
+
"alignSelf": "stretch",
|
|
1343
|
+
"backgroundColor": "transparent",
|
|
1344
|
+
"borderColor": "#ffffff",
|
|
1345
|
+
"borderRadius": 32,
|
|
1346
|
+
"borderWidth": 2,
|
|
1347
|
+
"flexDirection": "row",
|
|
1348
|
+
"height": 60,
|
|
1349
|
+
"justifyContent": "center",
|
|
1350
|
+
"padding": 14,
|
|
1351
|
+
},
|
|
1352
|
+
undefined,
|
|
1353
|
+
]
|
|
1354
|
+
}
|
|
1355
|
+
>
|
|
1356
|
+
<Text
|
|
1357
|
+
allowFontScaling={false}
|
|
1358
|
+
disabled={false}
|
|
1359
|
+
ellipsizeMode="tail"
|
|
1360
|
+
numberOfLines={1}
|
|
1361
|
+
style={
|
|
1362
|
+
[
|
|
1363
|
+
{
|
|
1364
|
+
"color": "#001f23",
|
|
1365
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1366
|
+
"fontSize": 18,
|
|
1367
|
+
"letterSpacing": 0.24,
|
|
1368
|
+
"lineHeight": 28,
|
|
1369
|
+
},
|
|
1370
|
+
[
|
|
1371
|
+
{
|
|
1372
|
+
"color": "#ffffff",
|
|
1373
|
+
"flexShrink": 1,
|
|
1374
|
+
"textAlign": "center",
|
|
1375
|
+
},
|
|
1376
|
+
undefined,
|
|
1377
|
+
],
|
|
1378
|
+
]
|
|
1379
|
+
}
|
|
1380
|
+
themeButtonVariant="outlined-white"
|
|
1381
|
+
themeIntent="body"
|
|
1382
|
+
themeLevel="h5"
|
|
1383
|
+
themeTypeface="neutral"
|
|
1384
|
+
>
|
|
1385
|
+
A button
|
|
1386
|
+
</Text>
|
|
1387
|
+
</View>
|
|
1388
|
+
<View
|
|
1389
|
+
pointerEvents="box-none"
|
|
1390
|
+
position="bottom"
|
|
1391
|
+
style={
|
|
1392
|
+
[
|
|
1393
|
+
{
|
|
1394
|
+
"bottom": 0,
|
|
1395
|
+
"elevation": 9999,
|
|
1396
|
+
"flexDirection": "column-reverse",
|
|
1397
|
+
"left": 0,
|
|
1398
|
+
"paddingHorizontal": 24,
|
|
1399
|
+
"paddingVertical": 16,
|
|
1400
|
+
"position": "absolute",
|
|
1401
|
+
"right": 0,
|
|
1402
|
+
"top": 0,
|
|
1403
|
+
},
|
|
1404
|
+
undefined,
|
|
1405
|
+
]
|
|
1406
|
+
}
|
|
1407
|
+
/>
|
|
1408
|
+
</View>
|
|
1409
|
+
`;
|
|
1410
|
+
|
|
1411
|
+
exports[`Button renders correctly 11`] = `
|
|
1412
|
+
<View
|
|
1413
|
+
style={
|
|
1414
|
+
{
|
|
1415
|
+
"flex": 1,
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
>
|
|
1419
|
+
<View
|
|
1420
|
+
accessibilityState={
|
|
1421
|
+
{
|
|
1422
|
+
"disabled": true,
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
accessibilityValue={
|
|
1426
|
+
{
|
|
1427
|
+
"max": undefined,
|
|
1428
|
+
"min": undefined,
|
|
1429
|
+
"now": undefined,
|
|
1430
|
+
"text": undefined,
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
accessible={true}
|
|
1434
|
+
focusable={true}
|
|
1435
|
+
onClick={[Function]}
|
|
1436
|
+
onResponderGrant={[Function]}
|
|
1437
|
+
onResponderMove={[Function]}
|
|
1438
|
+
onResponderRelease={[Function]}
|
|
1439
|
+
onResponderTerminate={[Function]}
|
|
1440
|
+
onResponderTerminationRequest={[Function]}
|
|
1441
|
+
onStartShouldSetResponder={[Function]}
|
|
1442
|
+
style={
|
|
1443
|
+
[
|
|
1444
|
+
{
|
|
1445
|
+
"alignItems": "center",
|
|
1446
|
+
"alignSelf": "stretch",
|
|
1447
|
+
"backgroundColor": "transparent",
|
|
1448
|
+
"borderColor": "#ffffff",
|
|
1449
|
+
"borderRadius": 32,
|
|
1450
|
+
"borderWidth": 2,
|
|
1451
|
+
"flexDirection": "row",
|
|
1452
|
+
"height": 60,
|
|
1453
|
+
"justifyContent": "center",
|
|
1454
|
+
"padding": 14,
|
|
1455
|
+
},
|
|
1456
|
+
undefined,
|
|
1457
|
+
]
|
|
1458
|
+
}
|
|
1459
|
+
>
|
|
1460
|
+
<View
|
|
1461
|
+
collapsable={false}
|
|
1462
|
+
style={
|
|
1463
|
+
[
|
|
1464
|
+
{
|
|
1465
|
+
"alignItems": "center",
|
|
1466
|
+
"flexDirection": "row",
|
|
1467
|
+
"justifyContent": "center",
|
|
1468
|
+
},
|
|
1469
|
+
{},
|
|
1470
|
+
]
|
|
1471
|
+
}
|
|
1472
|
+
testID="undefined-loading-indicator"
|
|
1473
|
+
>
|
|
1474
|
+
<View
|
|
1475
|
+
collapsable={false}
|
|
1476
|
+
style={
|
|
1477
|
+
{
|
|
1478
|
+
"transform": [
|
|
1479
|
+
{
|
|
1480
|
+
"scale": 1,
|
|
1481
|
+
},
|
|
1482
|
+
],
|
|
1483
|
+
}
|
|
1484
|
+
}
|
|
1485
|
+
>
|
|
1486
|
+
<View
|
|
1487
|
+
collapsable={false}
|
|
1488
|
+
size={12}
|
|
1489
|
+
style={
|
|
1490
|
+
[
|
|
1491
|
+
{
|
|
1492
|
+
"backgroundColor": "#ffffff",
|
|
1493
|
+
"borderRadius": 8,
|
|
1494
|
+
"height": 12,
|
|
1495
|
+
"marginHorizontal": 8,
|
|
1496
|
+
"width": 12,
|
|
1497
|
+
},
|
|
1498
|
+
{},
|
|
1499
|
+
]
|
|
1500
|
+
}
|
|
1501
|
+
themeVariant="outlined-white"
|
|
1502
|
+
/>
|
|
1503
|
+
</View>
|
|
1504
|
+
<View
|
|
1505
|
+
collapsable={false}
|
|
1506
|
+
style={
|
|
1507
|
+
{
|
|
1508
|
+
"transform": [
|
|
1509
|
+
{
|
|
1510
|
+
"scale": 1,
|
|
1511
|
+
},
|
|
1512
|
+
],
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
>
|
|
1516
|
+
<View
|
|
1517
|
+
collapsable={false}
|
|
1518
|
+
size={12}
|
|
1519
|
+
style={
|
|
1520
|
+
[
|
|
1521
|
+
{
|
|
1522
|
+
"backgroundColor": "#ffffff",
|
|
1523
|
+
"borderRadius": 8,
|
|
1524
|
+
"height": 12,
|
|
1525
|
+
"marginHorizontal": 8,
|
|
1526
|
+
"width": 12,
|
|
1527
|
+
},
|
|
1528
|
+
{},
|
|
1529
|
+
]
|
|
1530
|
+
}
|
|
1531
|
+
themeVariant="outlined-white"
|
|
1532
|
+
/>
|
|
1533
|
+
</View>
|
|
1534
|
+
<View
|
|
1535
|
+
collapsable={false}
|
|
1536
|
+
style={
|
|
1537
|
+
{
|
|
1538
|
+
"transform": [
|
|
1539
|
+
{
|
|
1540
|
+
"scale": 1,
|
|
1541
|
+
},
|
|
1542
|
+
],
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
>
|
|
1546
|
+
<View
|
|
1547
|
+
collapsable={false}
|
|
1548
|
+
size={12}
|
|
1549
|
+
style={
|
|
1550
|
+
[
|
|
1551
|
+
{
|
|
1552
|
+
"backgroundColor": "#ffffff",
|
|
1553
|
+
"borderRadius": 8,
|
|
1554
|
+
"height": 12,
|
|
1555
|
+
"marginHorizontal": 8,
|
|
1556
|
+
"width": 12,
|
|
1557
|
+
},
|
|
1558
|
+
{},
|
|
1559
|
+
]
|
|
1560
|
+
}
|
|
1561
|
+
themeVariant="outlined-white"
|
|
1562
|
+
/>
|
|
1563
|
+
</View>
|
|
1564
|
+
</View>
|
|
1565
|
+
</View>
|
|
1566
|
+
<View
|
|
1567
|
+
pointerEvents="box-none"
|
|
1568
|
+
position="bottom"
|
|
1569
|
+
style={
|
|
1570
|
+
[
|
|
1571
|
+
{
|
|
1572
|
+
"bottom": 0,
|
|
1573
|
+
"elevation": 9999,
|
|
1574
|
+
"flexDirection": "column-reverse",
|
|
1575
|
+
"left": 0,
|
|
1576
|
+
"paddingHorizontal": 24,
|
|
1577
|
+
"paddingVertical": 16,
|
|
1578
|
+
"position": "absolute",
|
|
1579
|
+
"right": 0,
|
|
1580
|
+
"top": 0,
|
|
1581
|
+
},
|
|
1582
|
+
undefined,
|
|
1583
|
+
]
|
|
1584
|
+
}
|
|
1585
|
+
/>
|
|
1586
|
+
</View>
|
|
1587
|
+
`;
|
|
1588
|
+
|
|
1589
|
+
exports[`Button renders correctly 12`] = `
|
|
1590
|
+
<View
|
|
1591
|
+
style={
|
|
1592
|
+
{
|
|
1593
|
+
"flex": 1,
|
|
1594
|
+
}
|
|
1595
|
+
}
|
|
1596
|
+
>
|
|
1597
|
+
<View
|
|
1598
|
+
accessibilityState={
|
|
1599
|
+
{
|
|
1600
|
+
"disabled": true,
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
accessibilityValue={
|
|
1604
|
+
{
|
|
1605
|
+
"max": undefined,
|
|
1606
|
+
"min": undefined,
|
|
1607
|
+
"now": undefined,
|
|
1608
|
+
"text": undefined,
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
accessible={true}
|
|
1612
|
+
focusable={true}
|
|
1613
|
+
onClick={[Function]}
|
|
1614
|
+
onResponderGrant={[Function]}
|
|
1615
|
+
onResponderMove={[Function]}
|
|
1616
|
+
onResponderRelease={[Function]}
|
|
1617
|
+
onResponderTerminate={[Function]}
|
|
1618
|
+
onResponderTerminationRequest={[Function]}
|
|
1619
|
+
onStartShouldSetResponder={[Function]}
|
|
572
1620
|
style={
|
|
573
1621
|
[
|
|
574
1622
|
{
|
|
575
1623
|
"alignItems": "center",
|
|
576
1624
|
"alignSelf": "stretch",
|
|
577
1625
|
"backgroundColor": "transparent",
|
|
578
|
-
"borderColor": "#
|
|
1626
|
+
"borderColor": "#bfc1c5",
|
|
579
1627
|
"borderRadius": 32,
|
|
580
1628
|
"borderWidth": 2,
|
|
581
1629
|
"flexDirection": "row",
|
|
@@ -589,7 +1637,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
589
1637
|
>
|
|
590
1638
|
<Text
|
|
591
1639
|
allowFontScaling={false}
|
|
592
|
-
disabled={
|
|
1640
|
+
disabled={true}
|
|
593
1641
|
ellipsizeMode="tail"
|
|
594
1642
|
numberOfLines={1}
|
|
595
1643
|
style={
|
|
@@ -603,7 +1651,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
603
1651
|
},
|
|
604
1652
|
[
|
|
605
1653
|
{
|
|
606
|
-
"color": "#
|
|
1654
|
+
"color": "#bfc1c5",
|
|
607
1655
|
"flexShrink": 1,
|
|
608
1656
|
"textAlign": "center",
|
|
609
1657
|
},
|
|
@@ -611,7 +1659,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
611
1659
|
],
|
|
612
1660
|
]
|
|
613
1661
|
}
|
|
614
|
-
themeButtonVariant="outlined-
|
|
1662
|
+
themeButtonVariant="outlined-white"
|
|
615
1663
|
themeIntent="body"
|
|
616
1664
|
themeLevel="h5"
|
|
617
1665
|
themeTypeface="neutral"
|
|
@@ -642,7 +1690,7 @@ exports[`Button renders correctly 4`] = `
|
|
|
642
1690
|
</View>
|
|
643
1691
|
`;
|
|
644
1692
|
|
|
645
|
-
exports[`Button renders correctly
|
|
1693
|
+
exports[`Button renders correctly 13`] = `
|
|
646
1694
|
<View
|
|
647
1695
|
style={
|
|
648
1696
|
{
|
|
@@ -653,7 +1701,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
653
1701
|
<View
|
|
654
1702
|
accessibilityState={
|
|
655
1703
|
{
|
|
656
|
-
"disabled":
|
|
1704
|
+
"disabled": false,
|
|
657
1705
|
}
|
|
658
1706
|
}
|
|
659
1707
|
accessibilityValue={
|
|
@@ -677,15 +1725,117 @@ exports[`Button renders correctly 5`] = `
|
|
|
677
1725
|
[
|
|
678
1726
|
{
|
|
679
1727
|
"alignItems": "center",
|
|
680
|
-
"alignSelf": "stretch",
|
|
681
1728
|
"backgroundColor": "transparent",
|
|
682
|
-
"
|
|
683
|
-
"
|
|
684
|
-
"borderWidth": 2,
|
|
1729
|
+
"borderRadius": 4,
|
|
1730
|
+
"borderWidth": 0,
|
|
685
1731
|
"flexDirection": "row",
|
|
686
1732
|
"height": 60,
|
|
687
1733
|
"justifyContent": "center",
|
|
688
|
-
"padding":
|
|
1734
|
+
"padding": 12,
|
|
1735
|
+
},
|
|
1736
|
+
undefined,
|
|
1737
|
+
]
|
|
1738
|
+
}
|
|
1739
|
+
>
|
|
1740
|
+
<Text
|
|
1741
|
+
allowFontScaling={false}
|
|
1742
|
+
disabled={false}
|
|
1743
|
+
ellipsizeMode="tail"
|
|
1744
|
+
numberOfLines={1}
|
|
1745
|
+
style={
|
|
1746
|
+
[
|
|
1747
|
+
{
|
|
1748
|
+
"color": "#001f23",
|
|
1749
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
1750
|
+
"fontSize": 16,
|
|
1751
|
+
"letterSpacing": 0.24,
|
|
1752
|
+
"lineHeight": 24,
|
|
1753
|
+
},
|
|
1754
|
+
[
|
|
1755
|
+
{
|
|
1756
|
+
"color": "#401960",
|
|
1757
|
+
"flexShrink": 1,
|
|
1758
|
+
"lineHeight": 22,
|
|
1759
|
+
"textAlign": "center",
|
|
1760
|
+
},
|
|
1761
|
+
undefined,
|
|
1762
|
+
],
|
|
1763
|
+
]
|
|
1764
|
+
}
|
|
1765
|
+
themeButtonVariant="text-primary"
|
|
1766
|
+
themeIntent="body"
|
|
1767
|
+
themeIsPressed={false}
|
|
1768
|
+
themeTypeface="neutral"
|
|
1769
|
+
themeVariant="regular-bold"
|
|
1770
|
+
>
|
|
1771
|
+
A button
|
|
1772
|
+
</Text>
|
|
1773
|
+
</View>
|
|
1774
|
+
<View
|
|
1775
|
+
pointerEvents="box-none"
|
|
1776
|
+
position="bottom"
|
|
1777
|
+
style={
|
|
1778
|
+
[
|
|
1779
|
+
{
|
|
1780
|
+
"bottom": 0,
|
|
1781
|
+
"elevation": 9999,
|
|
1782
|
+
"flexDirection": "column-reverse",
|
|
1783
|
+
"left": 0,
|
|
1784
|
+
"paddingHorizontal": 24,
|
|
1785
|
+
"paddingVertical": 16,
|
|
1786
|
+
"position": "absolute",
|
|
1787
|
+
"right": 0,
|
|
1788
|
+
"top": 0,
|
|
1789
|
+
},
|
|
1790
|
+
undefined,
|
|
1791
|
+
]
|
|
1792
|
+
}
|
|
1793
|
+
/>
|
|
1794
|
+
</View>
|
|
1795
|
+
`;
|
|
1796
|
+
|
|
1797
|
+
exports[`Button renders correctly 14`] = `
|
|
1798
|
+
<View
|
|
1799
|
+
style={
|
|
1800
|
+
{
|
|
1801
|
+
"flex": 1,
|
|
1802
|
+
}
|
|
1803
|
+
}
|
|
1804
|
+
>
|
|
1805
|
+
<View
|
|
1806
|
+
accessibilityState={
|
|
1807
|
+
{
|
|
1808
|
+
"disabled": true,
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
accessibilityValue={
|
|
1812
|
+
{
|
|
1813
|
+
"max": undefined,
|
|
1814
|
+
"min": undefined,
|
|
1815
|
+
"now": undefined,
|
|
1816
|
+
"text": undefined,
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
accessible={true}
|
|
1820
|
+
focusable={true}
|
|
1821
|
+
onClick={[Function]}
|
|
1822
|
+
onResponderGrant={[Function]}
|
|
1823
|
+
onResponderMove={[Function]}
|
|
1824
|
+
onResponderRelease={[Function]}
|
|
1825
|
+
onResponderTerminate={[Function]}
|
|
1826
|
+
onResponderTerminationRequest={[Function]}
|
|
1827
|
+
onStartShouldSetResponder={[Function]}
|
|
1828
|
+
style={
|
|
1829
|
+
[
|
|
1830
|
+
{
|
|
1831
|
+
"alignItems": "center",
|
|
1832
|
+
"backgroundColor": "#ece8ef",
|
|
1833
|
+
"borderRadius": 4,
|
|
1834
|
+
"borderWidth": 0,
|
|
1835
|
+
"flexDirection": "row",
|
|
1836
|
+
"height": 60,
|
|
1837
|
+
"justifyContent": "center",
|
|
1838
|
+
"padding": 12,
|
|
689
1839
|
},
|
|
690
1840
|
undefined,
|
|
691
1841
|
]
|
|
@@ -723,7 +1873,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
723
1873
|
style={
|
|
724
1874
|
[
|
|
725
1875
|
{
|
|
726
|
-
"backgroundColor": "#
|
|
1876
|
+
"backgroundColor": "#4d6265",
|
|
727
1877
|
"borderRadius": 8,
|
|
728
1878
|
"height": 12,
|
|
729
1879
|
"marginHorizontal": 8,
|
|
@@ -732,7 +1882,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
732
1882
|
{},
|
|
733
1883
|
]
|
|
734
1884
|
}
|
|
735
|
-
themeVariant="
|
|
1885
|
+
themeVariant="text-primary"
|
|
736
1886
|
/>
|
|
737
1887
|
</View>
|
|
738
1888
|
<View
|
|
@@ -753,7 +1903,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
753
1903
|
style={
|
|
754
1904
|
[
|
|
755
1905
|
{
|
|
756
|
-
"backgroundColor": "#
|
|
1906
|
+
"backgroundColor": "#4d6265",
|
|
757
1907
|
"borderRadius": 8,
|
|
758
1908
|
"height": 12,
|
|
759
1909
|
"marginHorizontal": 8,
|
|
@@ -762,7 +1912,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
762
1912
|
{},
|
|
763
1913
|
]
|
|
764
1914
|
}
|
|
765
|
-
themeVariant="
|
|
1915
|
+
themeVariant="text-primary"
|
|
766
1916
|
/>
|
|
767
1917
|
</View>
|
|
768
1918
|
<View
|
|
@@ -783,7 +1933,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
783
1933
|
style={
|
|
784
1934
|
[
|
|
785
1935
|
{
|
|
786
|
-
"backgroundColor": "#
|
|
1936
|
+
"backgroundColor": "#4d6265",
|
|
787
1937
|
"borderRadius": 8,
|
|
788
1938
|
"height": 12,
|
|
789
1939
|
"marginHorizontal": 8,
|
|
@@ -792,7 +1942,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
792
1942
|
{},
|
|
793
1943
|
]
|
|
794
1944
|
}
|
|
795
|
-
themeVariant="
|
|
1945
|
+
themeVariant="text-primary"
|
|
796
1946
|
/>
|
|
797
1947
|
</View>
|
|
798
1948
|
</View>
|
|
@@ -820,7 +1970,7 @@ exports[`Button renders correctly 5`] = `
|
|
|
820
1970
|
</View>
|
|
821
1971
|
`;
|
|
822
1972
|
|
|
823
|
-
exports[`Button renders correctly
|
|
1973
|
+
exports[`Button renders correctly 15`] = `
|
|
824
1974
|
<View
|
|
825
1975
|
style={
|
|
826
1976
|
{
|
|
@@ -855,15 +2005,13 @@ exports[`Button renders correctly 6`] = `
|
|
|
855
2005
|
[
|
|
856
2006
|
{
|
|
857
2007
|
"alignItems": "center",
|
|
858
|
-
"alignSelf": "stretch",
|
|
859
2008
|
"backgroundColor": "transparent",
|
|
860
|
-
"
|
|
861
|
-
"
|
|
862
|
-
"borderWidth": 2,
|
|
2009
|
+
"borderRadius": 4,
|
|
2010
|
+
"borderWidth": 0,
|
|
863
2011
|
"flexDirection": "row",
|
|
864
2012
|
"height": 60,
|
|
865
2013
|
"justifyContent": "center",
|
|
866
|
-
"padding":
|
|
2014
|
+
"padding": 12,
|
|
867
2015
|
},
|
|
868
2016
|
undefined,
|
|
869
2017
|
]
|
|
@@ -879,24 +2027,26 @@ exports[`Button renders correctly 6`] = `
|
|
|
879
2027
|
{
|
|
880
2028
|
"color": "#001f23",
|
|
881
2029
|
"fontFamily": "BeVietnamPro-SemiBold",
|
|
882
|
-
"fontSize":
|
|
2030
|
+
"fontSize": 16,
|
|
883
2031
|
"letterSpacing": 0.24,
|
|
884
|
-
"lineHeight":
|
|
2032
|
+
"lineHeight": 24,
|
|
885
2033
|
},
|
|
886
2034
|
[
|
|
887
2035
|
{
|
|
888
2036
|
"color": "#bfc1c5",
|
|
889
2037
|
"flexShrink": 1,
|
|
2038
|
+
"lineHeight": 22,
|
|
890
2039
|
"textAlign": "center",
|
|
891
2040
|
},
|
|
892
2041
|
undefined,
|
|
893
2042
|
],
|
|
894
2043
|
]
|
|
895
2044
|
}
|
|
896
|
-
themeButtonVariant="
|
|
2045
|
+
themeButtonVariant="text-primary"
|
|
897
2046
|
themeIntent="body"
|
|
898
|
-
|
|
2047
|
+
themeIsPressed={false}
|
|
899
2048
|
themeTypeface="neutral"
|
|
2049
|
+
themeVariant="regular-bold"
|
|
900
2050
|
>
|
|
901
2051
|
A button
|
|
902
2052
|
</Text>
|
|
@@ -924,7 +2074,7 @@ exports[`Button renders correctly 6`] = `
|
|
|
924
2074
|
</View>
|
|
925
2075
|
`;
|
|
926
2076
|
|
|
927
|
-
exports[`Button renders correctly
|
|
2077
|
+
exports[`Button renders correctly 16`] = `
|
|
928
2078
|
<View
|
|
929
2079
|
style={
|
|
930
2080
|
{
|
|
@@ -987,7 +2137,7 @@ exports[`Button renders correctly 7`] = `
|
|
|
987
2137
|
},
|
|
988
2138
|
[
|
|
989
2139
|
{
|
|
990
|
-
"color": "#
|
|
2140
|
+
"color": "#4d6265",
|
|
991
2141
|
"flexShrink": 1,
|
|
992
2142
|
"lineHeight": 22,
|
|
993
2143
|
"textAlign": "center",
|
|
@@ -996,7 +2146,7 @@ exports[`Button renders correctly 7`] = `
|
|
|
996
2146
|
],
|
|
997
2147
|
]
|
|
998
2148
|
}
|
|
999
|
-
themeButtonVariant="text-
|
|
2149
|
+
themeButtonVariant="text-secondary"
|
|
1000
2150
|
themeIntent="body"
|
|
1001
2151
|
themeIsPressed={false}
|
|
1002
2152
|
themeTypeface="neutral"
|
|
@@ -1028,7 +2178,7 @@ exports[`Button renders correctly 7`] = `
|
|
|
1028
2178
|
</View>
|
|
1029
2179
|
`;
|
|
1030
2180
|
|
|
1031
|
-
exports[`Button renders correctly
|
|
2181
|
+
exports[`Button renders correctly 17`] = `
|
|
1032
2182
|
<View
|
|
1033
2183
|
style={
|
|
1034
2184
|
{
|
|
@@ -1107,7 +2257,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1107
2257
|
style={
|
|
1108
2258
|
[
|
|
1109
2259
|
{
|
|
1110
|
-
"backgroundColor": "#
|
|
2260
|
+
"backgroundColor": "#cb300a",
|
|
1111
2261
|
"borderRadius": 8,
|
|
1112
2262
|
"height": 12,
|
|
1113
2263
|
"marginHorizontal": 8,
|
|
@@ -1116,7 +2266,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1116
2266
|
{},
|
|
1117
2267
|
]
|
|
1118
2268
|
}
|
|
1119
|
-
themeVariant="text-
|
|
2269
|
+
themeVariant="text-secondary"
|
|
1120
2270
|
/>
|
|
1121
2271
|
</View>
|
|
1122
2272
|
<View
|
|
@@ -1137,7 +2287,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1137
2287
|
style={
|
|
1138
2288
|
[
|
|
1139
2289
|
{
|
|
1140
|
-
"backgroundColor": "#
|
|
2290
|
+
"backgroundColor": "#cb300a",
|
|
1141
2291
|
"borderRadius": 8,
|
|
1142
2292
|
"height": 12,
|
|
1143
2293
|
"marginHorizontal": 8,
|
|
@@ -1146,7 +2296,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1146
2296
|
{},
|
|
1147
2297
|
]
|
|
1148
2298
|
}
|
|
1149
|
-
themeVariant="text-
|
|
2299
|
+
themeVariant="text-secondary"
|
|
1150
2300
|
/>
|
|
1151
2301
|
</View>
|
|
1152
2302
|
<View
|
|
@@ -1167,7 +2317,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1167
2317
|
style={
|
|
1168
2318
|
[
|
|
1169
2319
|
{
|
|
1170
|
-
"backgroundColor": "#
|
|
2320
|
+
"backgroundColor": "#cb300a",
|
|
1171
2321
|
"borderRadius": 8,
|
|
1172
2322
|
"height": 12,
|
|
1173
2323
|
"marginHorizontal": 8,
|
|
@@ -1176,7 +2326,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1176
2326
|
{},
|
|
1177
2327
|
]
|
|
1178
2328
|
}
|
|
1179
|
-
themeVariant="text-
|
|
2329
|
+
themeVariant="text-secondary"
|
|
1180
2330
|
/>
|
|
1181
2331
|
</View>
|
|
1182
2332
|
</View>
|
|
@@ -1204,7 +2354,7 @@ exports[`Button renders correctly 8`] = `
|
|
|
1204
2354
|
</View>
|
|
1205
2355
|
`;
|
|
1206
2356
|
|
|
1207
|
-
exports[`Button renders correctly
|
|
2357
|
+
exports[`Button renders correctly 18`] = `
|
|
1208
2358
|
<View
|
|
1209
2359
|
style={
|
|
1210
2360
|
{
|
|
@@ -1276,7 +2426,7 @@ exports[`Button renders correctly 9`] = `
|
|
|
1276
2426
|
],
|
|
1277
2427
|
]
|
|
1278
2428
|
}
|
|
1279
|
-
themeButtonVariant="text-
|
|
2429
|
+
themeButtonVariant="text-secondary"
|
|
1280
2430
|
themeIntent="body"
|
|
1281
2431
|
themeIsPressed={false}
|
|
1282
2432
|
themeTypeface="neutral"
|
|
@@ -1308,7 +2458,7 @@ exports[`Button renders correctly 9`] = `
|
|
|
1308
2458
|
</View>
|
|
1309
2459
|
`;
|
|
1310
2460
|
|
|
1311
|
-
exports[`Button renders correctly
|
|
2461
|
+
exports[`Button renders correctly 19`] = `
|
|
1312
2462
|
<View
|
|
1313
2463
|
style={
|
|
1314
2464
|
{
|
|
@@ -1371,7 +2521,7 @@ exports[`Button renders correctly 10`] = `
|
|
|
1371
2521
|
},
|
|
1372
2522
|
[
|
|
1373
2523
|
{
|
|
1374
|
-
"color": "#
|
|
2524
|
+
"color": "#cb300a",
|
|
1375
2525
|
"flexShrink": 1,
|
|
1376
2526
|
"lineHeight": 22,
|
|
1377
2527
|
"textAlign": "center",
|
|
@@ -1380,7 +2530,7 @@ exports[`Button renders correctly 10`] = `
|
|
|
1380
2530
|
],
|
|
1381
2531
|
]
|
|
1382
2532
|
}
|
|
1383
|
-
themeButtonVariant="text-
|
|
2533
|
+
themeButtonVariant="text-danger"
|
|
1384
2534
|
themeIntent="body"
|
|
1385
2535
|
themeIsPressed={false}
|
|
1386
2536
|
themeTypeface="neutral"
|
|
@@ -1412,7 +2562,7 @@ exports[`Button renders correctly 10`] = `
|
|
|
1412
2562
|
</View>
|
|
1413
2563
|
`;
|
|
1414
2564
|
|
|
1415
|
-
exports[`Button renders correctly
|
|
2565
|
+
exports[`Button renders correctly 20`] = `
|
|
1416
2566
|
<View
|
|
1417
2567
|
style={
|
|
1418
2568
|
{
|
|
@@ -1491,7 +2641,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1491
2641
|
style={
|
|
1492
2642
|
[
|
|
1493
2643
|
{
|
|
1494
|
-
"backgroundColor": "#
|
|
2644
|
+
"backgroundColor": "#cb300a",
|
|
1495
2645
|
"borderRadius": 8,
|
|
1496
2646
|
"height": 12,
|
|
1497
2647
|
"marginHorizontal": 8,
|
|
@@ -1500,7 +2650,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1500
2650
|
{},
|
|
1501
2651
|
]
|
|
1502
2652
|
}
|
|
1503
|
-
themeVariant="text-
|
|
2653
|
+
themeVariant="text-danger"
|
|
1504
2654
|
/>
|
|
1505
2655
|
</View>
|
|
1506
2656
|
<View
|
|
@@ -1521,7 +2671,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1521
2671
|
style={
|
|
1522
2672
|
[
|
|
1523
2673
|
{
|
|
1524
|
-
"backgroundColor": "#
|
|
2674
|
+
"backgroundColor": "#cb300a",
|
|
1525
2675
|
"borderRadius": 8,
|
|
1526
2676
|
"height": 12,
|
|
1527
2677
|
"marginHorizontal": 8,
|
|
@@ -1530,7 +2680,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1530
2680
|
{},
|
|
1531
2681
|
]
|
|
1532
2682
|
}
|
|
1533
|
-
themeVariant="text-
|
|
2683
|
+
themeVariant="text-danger"
|
|
1534
2684
|
/>
|
|
1535
2685
|
</View>
|
|
1536
2686
|
<View
|
|
@@ -1551,7 +2701,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1551
2701
|
style={
|
|
1552
2702
|
[
|
|
1553
2703
|
{
|
|
1554
|
-
"backgroundColor": "#
|
|
2704
|
+
"backgroundColor": "#cb300a",
|
|
1555
2705
|
"borderRadius": 8,
|
|
1556
2706
|
"height": 12,
|
|
1557
2707
|
"marginHorizontal": 8,
|
|
@@ -1560,7 +2710,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1560
2710
|
{},
|
|
1561
2711
|
]
|
|
1562
2712
|
}
|
|
1563
|
-
themeVariant="text-
|
|
2713
|
+
themeVariant="text-danger"
|
|
1564
2714
|
/>
|
|
1565
2715
|
</View>
|
|
1566
2716
|
</View>
|
|
@@ -1588,7 +2738,7 @@ exports[`Button renders correctly 11`] = `
|
|
|
1588
2738
|
</View>
|
|
1589
2739
|
`;
|
|
1590
2740
|
|
|
1591
|
-
exports[`Button renders correctly
|
|
2741
|
+
exports[`Button renders correctly 21`] = `
|
|
1592
2742
|
<View
|
|
1593
2743
|
style={
|
|
1594
2744
|
{
|
|
@@ -1660,7 +2810,7 @@ exports[`Button renders correctly 12`] = `
|
|
|
1660
2810
|
],
|
|
1661
2811
|
]
|
|
1662
2812
|
}
|
|
1663
|
-
themeButtonVariant="text-
|
|
2813
|
+
themeButtonVariant="text-danger"
|
|
1664
2814
|
themeIntent="body"
|
|
1665
2815
|
themeIsPressed={false}
|
|
1666
2816
|
themeTypeface="neutral"
|
|
@@ -1692,7 +2842,7 @@ exports[`Button renders correctly 12`] = `
|
|
|
1692
2842
|
</View>
|
|
1693
2843
|
`;
|
|
1694
2844
|
|
|
1695
|
-
exports[`Button renders correctly
|
|
2845
|
+
exports[`Button renders correctly 22`] = `
|
|
1696
2846
|
<View
|
|
1697
2847
|
style={
|
|
1698
2848
|
{
|
|
@@ -1755,7 +2905,7 @@ exports[`Button renders correctly 13`] = `
|
|
|
1755
2905
|
},
|
|
1756
2906
|
[
|
|
1757
2907
|
{
|
|
1758
|
-
"color": "#
|
|
2908
|
+
"color": "#ffffff",
|
|
1759
2909
|
"flexShrink": 1,
|
|
1760
2910
|
"lineHeight": 22,
|
|
1761
2911
|
"textAlign": "center",
|
|
@@ -1764,7 +2914,7 @@ exports[`Button renders correctly 13`] = `
|
|
|
1764
2914
|
],
|
|
1765
2915
|
]
|
|
1766
2916
|
}
|
|
1767
|
-
themeButtonVariant="text-
|
|
2917
|
+
themeButtonVariant="text-white"
|
|
1768
2918
|
themeIntent="body"
|
|
1769
2919
|
themeIsPressed={false}
|
|
1770
2920
|
themeTypeface="neutral"
|
|
@@ -1796,7 +2946,7 @@ exports[`Button renders correctly 13`] = `
|
|
|
1796
2946
|
</View>
|
|
1797
2947
|
`;
|
|
1798
2948
|
|
|
1799
|
-
exports[`Button renders correctly
|
|
2949
|
+
exports[`Button renders correctly 23`] = `
|
|
1800
2950
|
<View
|
|
1801
2951
|
style={
|
|
1802
2952
|
{
|
|
@@ -1831,7 +2981,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1831
2981
|
[
|
|
1832
2982
|
{
|
|
1833
2983
|
"alignItems": "center",
|
|
1834
|
-
"backgroundColor": "
|
|
2984
|
+
"backgroundColor": "transparent",
|
|
1835
2985
|
"borderRadius": 4,
|
|
1836
2986
|
"borderWidth": 0,
|
|
1837
2987
|
"flexDirection": "row",
|
|
@@ -1875,7 +3025,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1875
3025
|
style={
|
|
1876
3026
|
[
|
|
1877
3027
|
{
|
|
1878
|
-
"backgroundColor": "#
|
|
3028
|
+
"backgroundColor": "#ffffff",
|
|
1879
3029
|
"borderRadius": 8,
|
|
1880
3030
|
"height": 12,
|
|
1881
3031
|
"marginHorizontal": 8,
|
|
@@ -1884,7 +3034,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1884
3034
|
{},
|
|
1885
3035
|
]
|
|
1886
3036
|
}
|
|
1887
|
-
themeVariant="text-
|
|
3037
|
+
themeVariant="text-white"
|
|
1888
3038
|
/>
|
|
1889
3039
|
</View>
|
|
1890
3040
|
<View
|
|
@@ -1905,7 +3055,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1905
3055
|
style={
|
|
1906
3056
|
[
|
|
1907
3057
|
{
|
|
1908
|
-
"backgroundColor": "#
|
|
3058
|
+
"backgroundColor": "#ffffff",
|
|
1909
3059
|
"borderRadius": 8,
|
|
1910
3060
|
"height": 12,
|
|
1911
3061
|
"marginHorizontal": 8,
|
|
@@ -1914,7 +3064,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1914
3064
|
{},
|
|
1915
3065
|
]
|
|
1916
3066
|
}
|
|
1917
|
-
themeVariant="text-
|
|
3067
|
+
themeVariant="text-white"
|
|
1918
3068
|
/>
|
|
1919
3069
|
</View>
|
|
1920
3070
|
<View
|
|
@@ -1935,7 +3085,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1935
3085
|
style={
|
|
1936
3086
|
[
|
|
1937
3087
|
{
|
|
1938
|
-
"backgroundColor": "#
|
|
3088
|
+
"backgroundColor": "#ffffff",
|
|
1939
3089
|
"borderRadius": 8,
|
|
1940
3090
|
"height": 12,
|
|
1941
3091
|
"marginHorizontal": 8,
|
|
@@ -1944,7 +3094,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1944
3094
|
{},
|
|
1945
3095
|
]
|
|
1946
3096
|
}
|
|
1947
|
-
themeVariant="text-
|
|
3097
|
+
themeVariant="text-white"
|
|
1948
3098
|
/>
|
|
1949
3099
|
</View>
|
|
1950
3100
|
</View>
|
|
@@ -1972,7 +3122,7 @@ exports[`Button renders correctly 14`] = `
|
|
|
1972
3122
|
</View>
|
|
1973
3123
|
`;
|
|
1974
3124
|
|
|
1975
|
-
exports[`Button renders correctly
|
|
3125
|
+
exports[`Button renders correctly 24`] = `
|
|
1976
3126
|
<View
|
|
1977
3127
|
style={
|
|
1978
3128
|
{
|
|
@@ -2044,7 +3194,7 @@ exports[`Button renders correctly 15`] = `
|
|
|
2044
3194
|
],
|
|
2045
3195
|
]
|
|
2046
3196
|
}
|
|
2047
|
-
themeButtonVariant="text-
|
|
3197
|
+
themeButtonVariant="text-white"
|
|
2048
3198
|
themeIntent="body"
|
|
2049
3199
|
themeIsPressed={false}
|
|
2050
3200
|
themeTypeface="neutral"
|
|
@@ -2076,7 +3226,7 @@ exports[`Button renders correctly 15`] = `
|
|
|
2076
3226
|
</View>
|
|
2077
3227
|
`;
|
|
2078
3228
|
|
|
2079
|
-
exports[`Button renders correctly
|
|
3229
|
+
exports[`Button renders correctly 25`] = `
|
|
2080
3230
|
<View
|
|
2081
3231
|
style={
|
|
2082
3232
|
{
|
|
@@ -2180,7 +3330,7 @@ exports[`Button renders correctly 16`] = `
|
|
|
2180
3330
|
</View>
|
|
2181
3331
|
`;
|
|
2182
3332
|
|
|
2183
|
-
exports[`Button renders correctly
|
|
3333
|
+
exports[`Button renders correctly 26`] = `
|
|
2184
3334
|
<View
|
|
2185
3335
|
style={
|
|
2186
3336
|
{
|
|
@@ -2259,7 +3409,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2259
3409
|
style={
|
|
2260
3410
|
[
|
|
2261
3411
|
{
|
|
2262
|
-
"backgroundColor": "#
|
|
3412
|
+
"backgroundColor": "#cb300a",
|
|
2263
3413
|
"borderRadius": 8,
|
|
2264
3414
|
"height": 12,
|
|
2265
3415
|
"marginHorizontal": 8,
|
|
@@ -2289,7 +3439,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2289
3439
|
style={
|
|
2290
3440
|
[
|
|
2291
3441
|
{
|
|
2292
|
-
"backgroundColor": "#
|
|
3442
|
+
"backgroundColor": "#cb300a",
|
|
2293
3443
|
"borderRadius": 8,
|
|
2294
3444
|
"height": 12,
|
|
2295
3445
|
"marginHorizontal": 8,
|
|
@@ -2319,7 +3469,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2319
3469
|
style={
|
|
2320
3470
|
[
|
|
2321
3471
|
{
|
|
2322
|
-
"backgroundColor": "#
|
|
3472
|
+
"backgroundColor": "#cb300a",
|
|
2323
3473
|
"borderRadius": 8,
|
|
2324
3474
|
"height": 12,
|
|
2325
3475
|
"marginHorizontal": 8,
|
|
@@ -2356,7 +3506,7 @@ exports[`Button renders correctly 17`] = `
|
|
|
2356
3506
|
</View>
|
|
2357
3507
|
`;
|
|
2358
3508
|
|
|
2359
|
-
exports[`Button renders correctly
|
|
3509
|
+
exports[`Button renders correctly 27`] = `
|
|
2360
3510
|
<View
|
|
2361
3511
|
style={
|
|
2362
3512
|
{
|
|
@@ -2460,7 +3610,7 @@ exports[`Button renders correctly 18`] = `
|
|
|
2460
3610
|
</View>
|
|
2461
3611
|
`;
|
|
2462
3612
|
|
|
2463
|
-
exports[`Button renders correctly
|
|
3613
|
+
exports[`Button renders correctly 28`] = `
|
|
2464
3614
|
<View
|
|
2465
3615
|
style={
|
|
2466
3616
|
{
|
|
@@ -2636,7 +3786,7 @@ exports[`Button renders correctly 19`] = `
|
|
|
2636
3786
|
</View>
|
|
2637
3787
|
`;
|
|
2638
3788
|
|
|
2639
|
-
exports[`Button renders correctly
|
|
3789
|
+
exports[`Button renders correctly 29`] = `
|
|
2640
3790
|
<View
|
|
2641
3791
|
style={
|
|
2642
3792
|
{
|
|
@@ -2740,7 +3890,7 @@ exports[`Button renders correctly 20`] = `
|
|
|
2740
3890
|
</View>
|
|
2741
3891
|
`;
|
|
2742
3892
|
|
|
2743
|
-
exports[`Button renders correctly
|
|
3893
|
+
exports[`Button renders correctly 30`] = `
|
|
2744
3894
|
<View
|
|
2745
3895
|
style={
|
|
2746
3896
|
{
|
|
@@ -2797,9 +3947,9 @@ exports[`Button renders correctly 21`] = `
|
|
|
2797
3947
|
[
|
|
2798
3948
|
{
|
|
2799
3949
|
"color": "#001f23",
|
|
2800
|
-
"fontFamily": "BeVietnamPro-
|
|
3950
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
2801
3951
|
"fontSize": 14,
|
|
2802
|
-
"letterSpacing": 0.
|
|
3952
|
+
"letterSpacing": 0.24,
|
|
2803
3953
|
"lineHeight": 22,
|
|
2804
3954
|
},
|
|
2805
3955
|
[
|
|
@@ -2815,7 +3965,7 @@ exports[`Button renders correctly 21`] = `
|
|
|
2815
3965
|
themeButtonVariant="filled-primary"
|
|
2816
3966
|
themeIntent="body"
|
|
2817
3967
|
themeTypeface="neutral"
|
|
2818
|
-
themeVariant="small"
|
|
3968
|
+
themeVariant="small-bold"
|
|
2819
3969
|
>
|
|
2820
3970
|
A button
|
|
2821
3971
|
</Text>
|
|
@@ -2843,7 +3993,7 @@ exports[`Button renders correctly 21`] = `
|
|
|
2843
3993
|
</View>
|
|
2844
3994
|
`;
|
|
2845
3995
|
|
|
2846
|
-
exports[`Button renders correctly
|
|
3996
|
+
exports[`Button renders correctly 31`] = `
|
|
2847
3997
|
<View
|
|
2848
3998
|
style={
|
|
2849
3999
|
{
|
|
@@ -3020,7 +4170,7 @@ exports[`Button renders correctly 22`] = `
|
|
|
3020
4170
|
</View>
|
|
3021
4171
|
`;
|
|
3022
4172
|
|
|
3023
|
-
exports[`Button renders correctly
|
|
4173
|
+
exports[`Button renders correctly 32`] = `
|
|
3024
4174
|
<View
|
|
3025
4175
|
style={
|
|
3026
4176
|
{
|
|
@@ -3077,9 +4227,9 @@ exports[`Button renders correctly 23`] = `
|
|
|
3077
4227
|
[
|
|
3078
4228
|
{
|
|
3079
4229
|
"color": "#001f23",
|
|
3080
|
-
"fontFamily": "BeVietnamPro-
|
|
4230
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
3081
4231
|
"fontSize": 14,
|
|
3082
|
-
"letterSpacing": 0.
|
|
4232
|
+
"letterSpacing": 0.24,
|
|
3083
4233
|
"lineHeight": 22,
|
|
3084
4234
|
},
|
|
3085
4235
|
[
|
|
@@ -3095,7 +4245,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3095
4245
|
themeButtonVariant="filled-primary"
|
|
3096
4246
|
themeIntent="body"
|
|
3097
4247
|
themeTypeface="neutral"
|
|
3098
|
-
themeVariant="small"
|
|
4248
|
+
themeVariant="small-bold"
|
|
3099
4249
|
>
|
|
3100
4250
|
A button
|
|
3101
4251
|
</Text>
|
|
@@ -3123,7 +4273,7 @@ exports[`Button renders correctly 23`] = `
|
|
|
3123
4273
|
</View>
|
|
3124
4274
|
`;
|
|
3125
4275
|
|
|
3126
|
-
exports[`Button renders correctly
|
|
4276
|
+
exports[`Button renders correctly 33`] = `
|
|
3127
4277
|
<View
|
|
3128
4278
|
style={
|
|
3129
4279
|
{
|
|
@@ -3182,9 +4332,9 @@ exports[`Button renders correctly 24`] = `
|
|
|
3182
4332
|
[
|
|
3183
4333
|
{
|
|
3184
4334
|
"color": "#001f23",
|
|
3185
|
-
"fontFamily": "BeVietnamPro-
|
|
4335
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
3186
4336
|
"fontSize": 14,
|
|
3187
|
-
"letterSpacing": 0.
|
|
4337
|
+
"letterSpacing": 0.24,
|
|
3188
4338
|
"lineHeight": 22,
|
|
3189
4339
|
},
|
|
3190
4340
|
[
|
|
@@ -3200,7 +4350,7 @@ exports[`Button renders correctly 24`] = `
|
|
|
3200
4350
|
themeButtonVariant="outlined-primary"
|
|
3201
4351
|
themeIntent="body"
|
|
3202
4352
|
themeTypeface="neutral"
|
|
3203
|
-
themeVariant="small"
|
|
4353
|
+
themeVariant="small-bold"
|
|
3204
4354
|
>
|
|
3205
4355
|
A button
|
|
3206
4356
|
</Text>
|
|
@@ -3228,7 +4378,7 @@ exports[`Button renders correctly 24`] = `
|
|
|
3228
4378
|
</View>
|
|
3229
4379
|
`;
|
|
3230
4380
|
|
|
3231
|
-
exports[`Button renders correctly
|
|
4381
|
+
exports[`Button renders correctly 34`] = `
|
|
3232
4382
|
<View
|
|
3233
4383
|
style={
|
|
3234
4384
|
{
|
|
@@ -3407,7 +4557,7 @@ exports[`Button renders correctly 25`] = `
|
|
|
3407
4557
|
</View>
|
|
3408
4558
|
`;
|
|
3409
4559
|
|
|
3410
|
-
exports[`Button renders correctly
|
|
4560
|
+
exports[`Button renders correctly 35`] = `
|
|
3411
4561
|
<View
|
|
3412
4562
|
style={
|
|
3413
4563
|
{
|
|
@@ -3466,9 +4616,9 @@ exports[`Button renders correctly 26`] = `
|
|
|
3466
4616
|
[
|
|
3467
4617
|
{
|
|
3468
4618
|
"color": "#001f23",
|
|
3469
|
-
"fontFamily": "BeVietnamPro-
|
|
4619
|
+
"fontFamily": "BeVietnamPro-SemiBold",
|
|
3470
4620
|
"fontSize": 14,
|
|
3471
|
-
"letterSpacing": 0.
|
|
4621
|
+
"letterSpacing": 0.24,
|
|
3472
4622
|
"lineHeight": 22,
|
|
3473
4623
|
},
|
|
3474
4624
|
[
|
|
@@ -3484,7 +4634,7 @@ exports[`Button renders correctly 26`] = `
|
|
|
3484
4634
|
themeButtonVariant="outlined-primary"
|
|
3485
4635
|
themeIntent="body"
|
|
3486
4636
|
themeTypeface="neutral"
|
|
3487
|
-
themeVariant="small"
|
|
4637
|
+
themeVariant="small-bold"
|
|
3488
4638
|
>
|
|
3489
4639
|
A button
|
|
3490
4640
|
</Text>
|