@hero-design/rn 7.16.2 → 7.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/es/index.js +331 -259
  3. package/lib/index.js +330 -258
  4. package/package.json +2 -2
  5. package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +12 -12
  6. package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +18 -18
  7. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +26 -26
  8. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +3 -3
  9. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  10. package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +1 -1
  11. package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +2 -2
  12. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
  13. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  14. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +2 -2
  15. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  16. package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  17. package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +1 -1
  18. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +67 -67
  19. package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +12 -12
  20. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +1 -1
  21. package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +1 -1
  22. package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  23. package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +1 -1
  24. package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  25. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +5 -5
  26. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +12 -12
  27. package/src/components/Divider/__tests__/__snapshots__/StyledDivider.spec.tsx.snap +12 -12
  28. package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  29. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  30. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +28 -28
  31. package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +2 -2
  32. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +3 -3
  33. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
  34. package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  35. package/src/components/List/BasicListItem.tsx +8 -4
  36. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +3 -3
  37. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +20 -20
  38. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +6 -6
  39. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +12 -12
  40. package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +4 -4
  41. package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +22 -22
  42. package/src/components/Progress/ProgressCircle.tsx +25 -22
  43. package/src/components/Progress/StyledProgressCircle.tsx +33 -28
  44. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +102 -92
  45. package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +5 -5
  46. package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +6 -6
  47. package/src/components/Radio/__tests__/__snapshots__/StyledRadio.spec.tsx.snap +3 -3
  48. package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +11 -11
  49. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +6 -6
  50. package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +1 -1
  51. package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +9 -9
  52. package/src/components/Select/MultiSelect/Option.tsx +20 -11
  53. package/src/components/Select/MultiSelect/OptionList.tsx +47 -41
  54. package/src/components/Select/MultiSelect/__tests__/OptionList.spec.tsx +25 -14
  55. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +6 -4
  56. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +1638 -134
  57. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +5312 -366
  58. package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +122 -1
  59. package/src/components/Select/MultiSelect/index.tsx +26 -36
  60. package/src/components/Select/SingleSelect/Option.tsx +19 -3
  61. package/src/components/Select/SingleSelect/OptionList.tsx +47 -39
  62. package/src/components/Select/SingleSelect/__tests__/OptionList.spec.tsx +23 -12
  63. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +5 -3
  64. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +1632 -128
  65. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +4932 -302
  66. package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +117 -1
  67. package/src/components/Select/SingleSelect/index.tsx +26 -37
  68. package/src/components/Select/StyledOptionList.tsx +43 -44
  69. package/src/components/Select/StyledSelect.tsx +7 -3
  70. package/src/components/Select/__tests__/StyledSelect.spec.tsx +1 -9
  71. package/src/components/Select/__tests__/__snapshots__/StyledSelect.spec.tsx.snap +2 -15
  72. package/src/components/Select/__tests__/helpers.spec.tsx +74 -0
  73. package/src/components/Select/helpers.tsx +87 -4
  74. package/src/components/Select/types.ts +99 -0
  75. package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +4 -4
  76. package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +8 -8
  77. package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  78. package/src/components/Switch/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +1 -1
  79. package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  80. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +6 -6
  81. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +8 -8
  82. package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +8 -8
  83. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +50 -50
  84. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +241 -85
  85. package/src/components/TextInput/__tests__/index.spec.tsx +29 -8
  86. package/src/components/TextInput/index.tsx +18 -7
  87. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +5 -5
  88. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +12 -12
  89. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +22 -22
  90. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +12 -12
  91. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +8 -8
  92. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +13 -13
  93. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +145 -146
  94. package/src/theme/components/alert.ts +3 -3
  95. package/src/theme/components/badge.ts +1 -1
  96. package/src/theme/components/card.ts +4 -4
  97. package/src/theme/components/list.ts +4 -4
  98. package/src/theme/components/pinInput.ts +2 -2
  99. package/src/theme/components/progress.ts +5 -5
  100. package/src/theme/components/select.ts +3 -3
  101. package/src/theme/components/toast.ts +3 -3
  102. package/src/theme/global/colors.ts +40 -39
  103. package/src/types.ts +7 -1
  104. package/types/components/List/BasicListItem.d.ts +1 -1
  105. package/types/components/Progress/StyledProgressCircle.d.ts +12 -6
  106. package/types/components/Select/MultiSelect/Option.d.ts +4 -2
  107. package/types/components/Select/MultiSelect/OptionList.d.ts +6 -7
  108. package/types/components/Select/MultiSelect/index.d.ts +5 -5
  109. package/types/components/Select/SingleSelect/Option.d.ts +4 -2
  110. package/types/components/Select/SingleSelect/OptionList.d.ts +6 -7
  111. package/types/components/Select/SingleSelect/index.d.ts +5 -5
  112. package/types/components/Select/StyledOptionList.d.ts +10 -16
  113. package/types/components/Select/StyledSelect.d.ts +8 -2
  114. package/types/components/Select/__tests__/helpers.spec.d.ts +1 -0
  115. package/types/components/Select/helpers.d.ts +14 -2
  116. package/types/components/Select/index.d.ts +1 -1
  117. package/types/components/Select/types.d.ts +32 -7
  118. package/types/components/TextInput/index.d.ts +4 -2
  119. package/types/theme/components/progress.d.ts +1 -2
  120. package/types/theme/components/select.d.ts +3 -3
  121. package/types/types.d.ts +2 -1
  122. package/src/components/Select/types.tsx +0 -52
@@ -83,7 +83,7 @@ exports[`StyledButtonContainer has filled-primary style 1`] = `
83
83
  Object {
84
84
  "alignItems": "center",
85
85
  "alignSelf": "stretch",
86
- "backgroundColor": "#7622d7",
86
+ "backgroundColor": "#8505a2",
87
87
  "borderRadius": 32,
88
88
  "flexDirection": "row",
89
89
  "justifyContent": "center",
@@ -182,7 +182,7 @@ exports[`StyledButtonContainer has outlined-primary style 1`] = `
182
182
  "alignItems": "center",
183
183
  "alignSelf": "stretch",
184
184
  "backgroundColor": "transparent",
185
- "borderColor": "#7622d7",
185
+ "borderColor": "#8505a2",
186
186
  "borderRadius": 32,
187
187
  "borderWidth": 2,
188
188
  "flexDirection": "row",
@@ -284,7 +284,7 @@ exports[`StyledButtonContainer has pressed with the correct variant filled-dange
284
284
  Object {
285
285
  "alignItems": "center",
286
286
  "alignSelf": "stretch",
287
- "backgroundColor": "#f2ae9d",
287
+ "backgroundColor": "#f46363",
288
288
  "borderRadius": 32,
289
289
  "flexDirection": "row",
290
290
  "justifyContent": "center",
@@ -316,7 +316,7 @@ exports[`StyledButtonContainer has pressed with the correct variant filled-prima
316
316
  Object {
317
317
  "alignItems": "center",
318
318
  "alignSelf": "stretch",
319
- "backgroundColor": "#c8a7ef",
319
+ "backgroundColor": "#c282d1",
320
320
  "borderRadius": 32,
321
321
  "flexDirection": "row",
322
322
  "justifyContent": "center",
@@ -348,7 +348,7 @@ exports[`StyledButtonContainer has pressed with the correct variant filled-secon
348
348
  Object {
349
349
  "alignItems": "center",
350
350
  "alignSelf": "stretch",
351
- "backgroundColor": "#d1d9fe",
351
+ "backgroundColor": "#b5c3fd",
352
352
  "borderRadius": 32,
353
353
  "flexDirection": "row",
354
354
  "justifyContent": "center",
@@ -381,7 +381,7 @@ exports[`StyledButtonContainer has pressed with the correct variant outlined-dan
381
381
  "alignItems": "center",
382
382
  "alignSelf": "stretch",
383
383
  "backgroundColor": "transparent",
384
- "borderColor": "#f2ae9d",
384
+ "borderColor": "#f46363",
385
385
  "borderRadius": 32,
386
386
  "borderWidth": 2,
387
387
  "flexDirection": "row",
@@ -415,7 +415,7 @@ exports[`StyledButtonContainer has pressed with the correct variant outlined-pri
415
415
  "alignItems": "center",
416
416
  "alignSelf": "stretch",
417
417
  "backgroundColor": "transparent",
418
- "borderColor": "#c8a7ef",
418
+ "borderColor": "#c282d1",
419
419
  "borderRadius": 32,
420
420
  "borderWidth": 2,
421
421
  "flexDirection": "row",
@@ -449,7 +449,7 @@ exports[`StyledButtonContainer has pressed with the correct variant outlined-sec
449
449
  "alignItems": "center",
450
450
  "alignSelf": "stretch",
451
451
  "backgroundColor": "transparent",
452
- "borderColor": "#d1d9fe",
452
+ "borderColor": "#b5c3fd",
453
453
  "borderRadius": 32,
454
454
  "borderWidth": 2,
455
455
  "flexDirection": "row",
@@ -667,7 +667,7 @@ exports[`StyledButtonContainer renders disabled correctly 1`] = `
667
667
  Object {
668
668
  "alignItems": "center",
669
669
  "alignSelf": "stretch",
670
- "backgroundColor": "#ccced1",
670
+ "backgroundColor": "#bfc1c5",
671
671
  "borderRadius": 32,
672
672
  "flexDirection": "row",
673
673
  "justifyContent": "center",
@@ -689,7 +689,7 @@ exports[`StyledButtonIcon has basic-transparent style 1`] = `
689
689
  style={
690
690
  Array [
691
691
  Object {
692
- "color": "#292a2b",
692
+ "color": "#001f23",
693
693
  "fontSize": 24,
694
694
  },
695
695
  Array [
@@ -712,7 +712,7 @@ exports[`StyledButtonIcon has filled-danger style 1`] = `
712
712
  style={
713
713
  Array [
714
714
  Object {
715
- "color": "#292a2b",
715
+ "color": "#001f23",
716
716
  "fontSize": 24,
717
717
  },
718
718
  Array [
@@ -735,7 +735,7 @@ exports[`StyledButtonIcon has filled-primary style 1`] = `
735
735
  style={
736
736
  Array [
737
737
  Object {
738
- "color": "#292a2b",
738
+ "color": "#001f23",
739
739
  "fontSize": 24,
740
740
  },
741
741
  Array [
@@ -758,7 +758,7 @@ exports[`StyledButtonIcon has filled-secondary style 1`] = `
758
758
  style={
759
759
  Array [
760
760
  Object {
761
- "color": "#292a2b",
761
+ "color": "#001f23",
762
762
  "fontSize": 24,
763
763
  },
764
764
  Array [
@@ -781,7 +781,7 @@ exports[`StyledButtonIcon has outlined-danger style 1`] = `
781
781
  style={
782
782
  Array [
783
783
  Object {
784
- "color": "#292a2b",
784
+ "color": "#001f23",
785
785
  "fontSize": 24,
786
786
  },
787
787
  Array [
@@ -805,12 +805,12 @@ exports[`StyledButtonIcon has outlined-primary style 1`] = `
805
805
  style={
806
806
  Array [
807
807
  Object {
808
- "color": "#292a2b",
808
+ "color": "#001f23",
809
809
  "fontSize": 24,
810
810
  },
811
811
  Array [
812
812
  Object {
813
- "color": "#7622d7",
813
+ "color": "#8505a2",
814
814
  "fontSize": 18,
815
815
  "lineHeight": 24,
816
816
  },
@@ -829,7 +829,7 @@ exports[`StyledButtonIcon has outlined-secondary style 1`] = `
829
829
  style={
830
830
  Array [
831
831
  Object {
832
- "color": "#292a2b",
832
+ "color": "#001f23",
833
833
  "fontSize": 24,
834
834
  },
835
835
  Array [
@@ -853,7 +853,7 @@ exports[`StyledButtonIcon has pressed with the correct variant basic-transparent
853
853
  style={
854
854
  Array [
855
855
  Object {
856
- "color": "#292a2b",
856
+ "color": "#001f23",
857
857
  "fontSize": 24,
858
858
  },
859
859
  Array [
@@ -876,7 +876,7 @@ exports[`StyledButtonIcon has pressed with the correct variant filled-danger sty
876
876
  style={
877
877
  Array [
878
878
  Object {
879
- "color": "#292a2b",
879
+ "color": "#001f23",
880
880
  "fontSize": 24,
881
881
  },
882
882
  Array [
@@ -899,7 +899,7 @@ exports[`StyledButtonIcon has pressed with the correct variant filled-primary st
899
899
  style={
900
900
  Array [
901
901
  Object {
902
- "color": "#292a2b",
902
+ "color": "#001f23",
903
903
  "fontSize": 24,
904
904
  },
905
905
  Array [
@@ -922,7 +922,7 @@ exports[`StyledButtonIcon has pressed with the correct variant filled-secondary
922
922
  style={
923
923
  Array [
924
924
  Object {
925
- "color": "#292a2b",
925
+ "color": "#001f23",
926
926
  "fontSize": 24,
927
927
  },
928
928
  Array [
@@ -945,12 +945,12 @@ exports[`StyledButtonIcon has pressed with the correct variant outlined-danger s
945
945
  style={
946
946
  Array [
947
947
  Object {
948
- "color": "#292a2b",
948
+ "color": "#001f23",
949
949
  "fontSize": 24,
950
950
  },
951
951
  Array [
952
952
  Object {
953
- "color": "#f2ae9d",
953
+ "color": "#f46363",
954
954
  "fontSize": 18,
955
955
  "lineHeight": 24,
956
956
  },
@@ -969,12 +969,12 @@ exports[`StyledButtonIcon has pressed with the correct variant outlined-primary
969
969
  style={
970
970
  Array [
971
971
  Object {
972
- "color": "#292a2b",
972
+ "color": "#001f23",
973
973
  "fontSize": 24,
974
974
  },
975
975
  Array [
976
976
  Object {
977
- "color": "#c8a7ef",
977
+ "color": "#c282d1",
978
978
  "fontSize": 18,
979
979
  "lineHeight": 24,
980
980
  },
@@ -993,12 +993,12 @@ exports[`StyledButtonIcon has pressed with the correct variant outlined-secondar
993
993
  style={
994
994
  Array [
995
995
  Object {
996
- "color": "#292a2b",
996
+ "color": "#001f23",
997
997
  "fontSize": 24,
998
998
  },
999
999
  Array [
1000
1000
  Object {
1001
- "color": "#d1d9fe",
1001
+ "color": "#b5c3fd",
1002
1002
  "fontSize": 18,
1003
1003
  "lineHeight": 24,
1004
1004
  },
@@ -1017,12 +1017,12 @@ exports[`StyledButtonIcon has pressed with the correct variant text-danger style
1017
1017
  style={
1018
1018
  Array [
1019
1019
  Object {
1020
- "color": "#292a2b",
1020
+ "color": "#001f23",
1021
1021
  "fontSize": 24,
1022
1022
  },
1023
1023
  Array [
1024
1024
  Object {
1025
- "color": "#f2ae9d",
1025
+ "color": "#f46363",
1026
1026
  "fontSize": 16,
1027
1027
  "lineHeight": 24,
1028
1028
  },
@@ -1041,12 +1041,12 @@ exports[`StyledButtonIcon has pressed with the correct variant text-primary styl
1041
1041
  style={
1042
1042
  Array [
1043
1043
  Object {
1044
- "color": "#292a2b",
1044
+ "color": "#001f23",
1045
1045
  "fontSize": 24,
1046
1046
  },
1047
1047
  Array [
1048
1048
  Object {
1049
- "color": "#c8a7ef",
1049
+ "color": "#c282d1",
1050
1050
  "fontSize": 16,
1051
1051
  "lineHeight": 24,
1052
1052
  },
@@ -1065,12 +1065,12 @@ exports[`StyledButtonIcon has pressed with the correct variant text-secondary st
1065
1065
  style={
1066
1066
  Array [
1067
1067
  Object {
1068
- "color": "#292a2b",
1068
+ "color": "#001f23",
1069
1069
  "fontSize": 24,
1070
1070
  },
1071
1071
  Array [
1072
1072
  Object {
1073
- "color": "#d1d9fe",
1073
+ "color": "#b5c3fd",
1074
1074
  "fontSize": 16,
1075
1075
  "lineHeight": 24,
1076
1076
  },
@@ -1089,7 +1089,7 @@ exports[`StyledButtonIcon has text-danger style 1`] = `
1089
1089
  style={
1090
1090
  Array [
1091
1091
  Object {
1092
- "color": "#292a2b",
1092
+ "color": "#001f23",
1093
1093
  "fontSize": 24,
1094
1094
  },
1095
1095
  Array [
@@ -1113,12 +1113,12 @@ exports[`StyledButtonIcon has text-primary style 1`] = `
1113
1113
  style={
1114
1114
  Array [
1115
1115
  Object {
1116
- "color": "#292a2b",
1116
+ "color": "#001f23",
1117
1117
  "fontSize": 24,
1118
1118
  },
1119
1119
  Array [
1120
1120
  Object {
1121
- "color": "#7622d7",
1121
+ "color": "#8505a2",
1122
1122
  "fontSize": 16,
1123
1123
  "lineHeight": 24,
1124
1124
  },
@@ -1137,7 +1137,7 @@ exports[`StyledButtonIcon has text-secondary style 1`] = `
1137
1137
  style={
1138
1138
  Array [
1139
1139
  Object {
1140
- "color": "#292a2b",
1140
+ "color": "#001f23",
1141
1141
  "fontSize": 24,
1142
1142
  },
1143
1143
  Array [
@@ -1161,7 +1161,7 @@ exports[`StyledButtonIcon renders disabled correctly 1`] = `
1161
1161
  style={
1162
1162
  Array [
1163
1163
  Object {
1164
- "color": "#292a2b",
1164
+ "color": "#001f23",
1165
1165
  "fontSize": 24,
1166
1166
  },
1167
1167
  Array [
@@ -1211,7 +1211,7 @@ exports[`StyledButtonText has basic-transparent style 1`] = `
1211
1211
  style={
1212
1212
  Array [
1213
1213
  Object {
1214
- "color": "#292a2b",
1214
+ "color": "#001f23",
1215
1215
  "fontFamily": "BeVietnamPro-Regular",
1216
1216
  "fontSize": 14,
1217
1217
  "letterSpacing": 0.42,
@@ -1244,7 +1244,7 @@ exports[`StyledButtonText has filled-danger style 1`] = `
1244
1244
  style={
1245
1245
  Array [
1246
1246
  Object {
1247
- "color": "#292a2b",
1247
+ "color": "#001f23",
1248
1248
  "fontFamily": "BeVietnamPro-Regular",
1249
1249
  "fontSize": 14,
1250
1250
  "letterSpacing": 0.42,
@@ -1277,7 +1277,7 @@ exports[`StyledButtonText has filled-primary style 1`] = `
1277
1277
  style={
1278
1278
  Array [
1279
1279
  Object {
1280
- "color": "#292a2b",
1280
+ "color": "#001f23",
1281
1281
  "fontFamily": "BeVietnamPro-Regular",
1282
1282
  "fontSize": 14,
1283
1283
  "letterSpacing": 0.42,
@@ -1310,7 +1310,7 @@ exports[`StyledButtonText has filled-secondary style 1`] = `
1310
1310
  style={
1311
1311
  Array [
1312
1312
  Object {
1313
- "color": "#292a2b",
1313
+ "color": "#001f23",
1314
1314
  "fontFamily": "BeVietnamPro-Regular",
1315
1315
  "fontSize": 14,
1316
1316
  "letterSpacing": 0.42,
@@ -1343,7 +1343,7 @@ exports[`StyledButtonText has outlined-danger style 1`] = `
1343
1343
  style={
1344
1344
  Array [
1345
1345
  Object {
1346
- "color": "#292a2b",
1346
+ "color": "#001f23",
1347
1347
  "fontFamily": "BeVietnamPro-Regular",
1348
1348
  "fontSize": 14,
1349
1349
  "letterSpacing": 0.42,
@@ -1376,7 +1376,7 @@ exports[`StyledButtonText has outlined-primary style 1`] = `
1376
1376
  style={
1377
1377
  Array [
1378
1378
  Object {
1379
- "color": "#292a2b",
1379
+ "color": "#001f23",
1380
1380
  "fontFamily": "BeVietnamPro-Regular",
1381
1381
  "fontSize": 14,
1382
1382
  "letterSpacing": 0.42,
@@ -1384,7 +1384,7 @@ exports[`StyledButtonText has outlined-primary style 1`] = `
1384
1384
  },
1385
1385
  Array [
1386
1386
  Object {
1387
- "color": "#7622d7",
1387
+ "color": "#8505a2",
1388
1388
  "flexShrink": 1,
1389
1389
  "fontFamily": "BeVietnamPro-SemiBold",
1390
1390
  "fontSize": 18,
@@ -1409,7 +1409,7 @@ exports[`StyledButtonText has outlined-secondary style 1`] = `
1409
1409
  style={
1410
1410
  Array [
1411
1411
  Object {
1412
- "color": "#292a2b",
1412
+ "color": "#001f23",
1413
1413
  "fontFamily": "BeVietnamPro-Regular",
1414
1414
  "fontSize": 14,
1415
1415
  "letterSpacing": 0.42,
@@ -1443,7 +1443,7 @@ exports[`StyledButtonText has pressed with the correct variant basic-transparent
1443
1443
  style={
1444
1444
  Array [
1445
1445
  Object {
1446
- "color": "#292a2b",
1446
+ "color": "#001f23",
1447
1447
  "fontFamily": "BeVietnamPro-Regular",
1448
1448
  "fontSize": 14,
1449
1449
  "letterSpacing": 0.42,
@@ -1477,7 +1477,7 @@ exports[`StyledButtonText has pressed with the correct variant filled-danger sty
1477
1477
  style={
1478
1478
  Array [
1479
1479
  Object {
1480
- "color": "#292a2b",
1480
+ "color": "#001f23",
1481
1481
  "fontFamily": "BeVietnamPro-Regular",
1482
1482
  "fontSize": 14,
1483
1483
  "letterSpacing": 0.42,
@@ -1511,7 +1511,7 @@ exports[`StyledButtonText has pressed with the correct variant filled-primary st
1511
1511
  style={
1512
1512
  Array [
1513
1513
  Object {
1514
- "color": "#292a2b",
1514
+ "color": "#001f23",
1515
1515
  "fontFamily": "BeVietnamPro-Regular",
1516
1516
  "fontSize": 14,
1517
1517
  "letterSpacing": 0.42,
@@ -1545,7 +1545,7 @@ exports[`StyledButtonText has pressed with the correct variant filled-secondary
1545
1545
  style={
1546
1546
  Array [
1547
1547
  Object {
1548
- "color": "#292a2b",
1548
+ "color": "#001f23",
1549
1549
  "fontFamily": "BeVietnamPro-Regular",
1550
1550
  "fontSize": 14,
1551
1551
  "letterSpacing": 0.42,
@@ -1579,7 +1579,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-danger s
1579
1579
  style={
1580
1580
  Array [
1581
1581
  Object {
1582
- "color": "#292a2b",
1582
+ "color": "#001f23",
1583
1583
  "fontFamily": "BeVietnamPro-Regular",
1584
1584
  "fontSize": 14,
1585
1585
  "letterSpacing": 0.42,
@@ -1587,7 +1587,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-danger s
1587
1587
  },
1588
1588
  Array [
1589
1589
  Object {
1590
- "color": "#f2ae9d",
1590
+ "color": "#f46363",
1591
1591
  "flexShrink": 1,
1592
1592
  "fontFamily": "BeVietnamPro-SemiBold",
1593
1593
  "fontSize": 18,
@@ -1613,7 +1613,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-primary
1613
1613
  style={
1614
1614
  Array [
1615
1615
  Object {
1616
- "color": "#292a2b",
1616
+ "color": "#001f23",
1617
1617
  "fontFamily": "BeVietnamPro-Regular",
1618
1618
  "fontSize": 14,
1619
1619
  "letterSpacing": 0.42,
@@ -1621,7 +1621,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-primary
1621
1621
  },
1622
1622
  Array [
1623
1623
  Object {
1624
- "color": "#c8a7ef",
1624
+ "color": "#c282d1",
1625
1625
  "flexShrink": 1,
1626
1626
  "fontFamily": "BeVietnamPro-SemiBold",
1627
1627
  "fontSize": 18,
@@ -1647,7 +1647,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-secondar
1647
1647
  style={
1648
1648
  Array [
1649
1649
  Object {
1650
- "color": "#292a2b",
1650
+ "color": "#001f23",
1651
1651
  "fontFamily": "BeVietnamPro-Regular",
1652
1652
  "fontSize": 14,
1653
1653
  "letterSpacing": 0.42,
@@ -1655,7 +1655,7 @@ exports[`StyledButtonText has pressed with the correct variant outlined-secondar
1655
1655
  },
1656
1656
  Array [
1657
1657
  Object {
1658
- "color": "#d1d9fe",
1658
+ "color": "#b5c3fd",
1659
1659
  "flexShrink": 1,
1660
1660
  "fontFamily": "BeVietnamPro-SemiBold",
1661
1661
  "fontSize": 18,
@@ -1681,7 +1681,7 @@ exports[`StyledButtonText has pressed with the correct variant text-danger style
1681
1681
  style={
1682
1682
  Array [
1683
1683
  Object {
1684
- "color": "#292a2b",
1684
+ "color": "#001f23",
1685
1685
  "fontFamily": "BeVietnamPro-Regular",
1686
1686
  "fontSize": 14,
1687
1687
  "letterSpacing": 0.42,
@@ -1689,7 +1689,7 @@ exports[`StyledButtonText has pressed with the correct variant text-danger style
1689
1689
  },
1690
1690
  Array [
1691
1691
  Object {
1692
- "color": "#f2ae9d",
1692
+ "color": "#f46363",
1693
1693
  "flexShrink": 1,
1694
1694
  "fontFamily": "BeVietnamPro-SemiBold",
1695
1695
  "fontSize": 16,
@@ -1715,7 +1715,7 @@ exports[`StyledButtonText has pressed with the correct variant text-primary styl
1715
1715
  style={
1716
1716
  Array [
1717
1717
  Object {
1718
- "color": "#292a2b",
1718
+ "color": "#001f23",
1719
1719
  "fontFamily": "BeVietnamPro-Regular",
1720
1720
  "fontSize": 14,
1721
1721
  "letterSpacing": 0.42,
@@ -1723,7 +1723,7 @@ exports[`StyledButtonText has pressed with the correct variant text-primary styl
1723
1723
  },
1724
1724
  Array [
1725
1725
  Object {
1726
- "color": "#c8a7ef",
1726
+ "color": "#c282d1",
1727
1727
  "flexShrink": 1,
1728
1728
  "fontFamily": "BeVietnamPro-SemiBold",
1729
1729
  "fontSize": 16,
@@ -1749,7 +1749,7 @@ exports[`StyledButtonText has pressed with the correct variant text-secondary st
1749
1749
  style={
1750
1750
  Array [
1751
1751
  Object {
1752
- "color": "#292a2b",
1752
+ "color": "#001f23",
1753
1753
  "fontFamily": "BeVietnamPro-Regular",
1754
1754
  "fontSize": 14,
1755
1755
  "letterSpacing": 0.42,
@@ -1757,7 +1757,7 @@ exports[`StyledButtonText has pressed with the correct variant text-secondary st
1757
1757
  },
1758
1758
  Array [
1759
1759
  Object {
1760
- "color": "#d1d9fe",
1760
+ "color": "#b5c3fd",
1761
1761
  "flexShrink": 1,
1762
1762
  "fontFamily": "BeVietnamPro-SemiBold",
1763
1763
  "fontSize": 16,
@@ -1782,7 +1782,7 @@ exports[`StyledButtonText has text-danger style 1`] = `
1782
1782
  style={
1783
1783
  Array [
1784
1784
  Object {
1785
- "color": "#292a2b",
1785
+ "color": "#001f23",
1786
1786
  "fontFamily": "BeVietnamPro-Regular",
1787
1787
  "fontSize": 14,
1788
1788
  "letterSpacing": 0.42,
@@ -1815,7 +1815,7 @@ exports[`StyledButtonText has text-primary style 1`] = `
1815
1815
  style={
1816
1816
  Array [
1817
1817
  Object {
1818
- "color": "#292a2b",
1818
+ "color": "#001f23",
1819
1819
  "fontFamily": "BeVietnamPro-Regular",
1820
1820
  "fontSize": 14,
1821
1821
  "letterSpacing": 0.42,
@@ -1823,7 +1823,7 @@ exports[`StyledButtonText has text-primary style 1`] = `
1823
1823
  },
1824
1824
  Array [
1825
1825
  Object {
1826
- "color": "#7622d7",
1826
+ "color": "#8505a2",
1827
1827
  "flexShrink": 1,
1828
1828
  "fontFamily": "BeVietnamPro-SemiBold",
1829
1829
  "fontSize": 16,
@@ -1848,7 +1848,7 @@ exports[`StyledButtonText has text-secondary style 1`] = `
1848
1848
  style={
1849
1849
  Array [
1850
1850
  Object {
1851
- "color": "#292a2b",
1851
+ "color": "#001f23",
1852
1852
  "fontFamily": "BeVietnamPro-Regular",
1853
1853
  "fontSize": 14,
1854
1854
  "letterSpacing": 0.42,
@@ -1882,7 +1882,7 @@ exports[`StyledButtonText renders disabled correctly 1`] = `
1882
1882
  style={
1883
1883
  Array [
1884
1884
  Object {
1885
- "color": "#292a2b",
1885
+ "color": "#001f23",
1886
1886
  "fontFamily": "BeVietnamPro-Regular",
1887
1887
  "fontSize": 14,
1888
1888
  "letterSpacing": 0.42,
@@ -32,7 +32,7 @@ exports[`CalendarRowItem renders correctly 1`] = `
32
32
  Object {
33
33
  "alignItems": "center",
34
34
  "backgroundColor": undefined,
35
- "borderColor": "#292a2b",
35
+ "borderColor": "#001f23",
36
36
  "borderRadius": 999,
37
37
  "borderWidth": 0,
38
38
  "height": 44,
@@ -46,7 +46,7 @@ exports[`CalendarRowItem renders correctly 1`] = `
46
46
  style={
47
47
  Array [
48
48
  Object {
49
- "color": "#292a2b",
49
+ "color": "#001f23",
50
50
  "fontFamily": "BeVietnamPro-Regular",
51
51
  "fontSize": 14,
52
52
  "letterSpacing": 0.42,
@@ -65,7 +65,7 @@ exports[`CalendarRowItem renders correctly 1`] = `
65
65
  style={
66
66
  Array [
67
67
  Object {
68
- "backgroundColor": "#7622d7",
68
+ "backgroundColor": "#8505a2",
69
69
  "borderRadius": 999,
70
70
  "bottom": "10%",
71
71
  "height": 4,
@@ -114,7 +114,7 @@ exports[`CalendarRowItem renders correctly 2`] = `
114
114
  Object {
115
115
  "alignItems": "center",
116
116
  "backgroundColor": undefined,
117
- "borderColor": "#292a2b",
117
+ "borderColor": "#001f23",
118
118
  "borderRadius": 999,
119
119
  "borderWidth": 0,
120
120
  "height": 44,
@@ -128,7 +128,7 @@ exports[`CalendarRowItem renders correctly 2`] = `
128
128
  style={
129
129
  Array [
130
130
  Object {
131
- "color": "#8b8d92",
131
+ "color": "#808f91",
132
132
  "fontFamily": "BeVietnamPro-Regular",
133
133
  "fontSize": 14,
134
134
  "letterSpacing": 0.42,
@@ -147,7 +147,7 @@ exports[`CalendarRowItem renders correctly 2`] = `
147
147
  style={
148
148
  Array [
149
149
  Object {
150
- "backgroundColor": "#7622d7",
150
+ "backgroundColor": "#8505a2",
151
151
  "borderRadius": 999,
152
152
  "bottom": "10%",
153
153
  "height": 4,
@@ -195,8 +195,8 @@ exports[`CalendarRowItem renders correctly when is current date 1`] = `
195
195
  style={
196
196
  Object {
197
197
  "alignItems": "center",
198
- "backgroundColor": "#7622d7",
199
- "borderColor": "#292a2b",
198
+ "backgroundColor": "#8505a2",
199
+ "borderColor": "#001f23",
200
200
  "borderRadius": 999,
201
201
  "borderWidth": 0,
202
202
  "height": 44,
@@ -277,8 +277,8 @@ exports[`CalendarRowItem renders correctly when selected, and is current date eq
277
277
  style={
278
278
  Object {
279
279
  "alignItems": "center",
280
- "backgroundColor": "#7622d7",
281
- "borderColor": "#292a2b",
280
+ "backgroundColor": "#8505a2",
281
+ "borderColor": "#001f23",
282
282
  "borderRadius": 999,
283
283
  "borderWidth": 0,
284
284
  "height": 44,
@@ -359,8 +359,8 @@ exports[`CalendarRowItem renders correctly when selected, and is current date eq
359
359
  style={
360
360
  Object {
361
361
  "alignItems": "center",
362
- "backgroundColor": "#7622d7",
363
- "borderColor": "#292a2b",
362
+ "backgroundColor": "#8505a2",
363
+ "borderColor": "#001f23",
364
364
  "borderRadius": 999,
365
365
  "borderWidth": 0,
366
366
  "height": 44,
@@ -5,7 +5,7 @@ exports[`LeftDataCard renders correctly 1`] = `
5
5
  style={
6
6
  Array [
7
7
  Object {
8
- "backgroundColor": "#a26fb0",
8
+ "backgroundColor": "#8505a2",
9
9
  "height": "100%",
10
10
  "width": 16,
11
11
  },
@@ -15,7 +15,7 @@ exports[`StyledWrapper renders correct style 1`] = `
15
15
  onStartShouldSetResponder={[Function]}
16
16
  style={
17
17
  Object {
18
- "borderColor": "#7622d7",
18
+ "borderColor": "#8505a2",
19
19
  "borderRadius": 4,
20
20
  "borderWidth": 2,
21
21
  "display": "flex",
@@ -15,7 +15,7 @@ exports[`Checkbox renders correctly 1`] = `
15
15
  onStartShouldSetResponder={[Function]}
16
16
  style={
17
17
  Object {
18
- "borderColor": "#7622d7",
18
+ "borderColor": "#8505a2",
19
19
  "borderRadius": 4,
20
20
  "borderWidth": 2,
21
21
  "display": "flex",
@@ -46,7 +46,7 @@ exports[`Checkbox trigger press function correctly 1`] = `
46
46
  onStartShouldSetResponder={[Function]}
47
47
  style={
48
48
  Object {
49
- "borderColor": "#7622d7",
49
+ "borderColor": "#8505a2",
50
50
  "borderRadius": 4,
51
51
  "borderWidth": 2,
52
52
  "display": "flex",