@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
@@ -16,7 +16,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
16
16
  Object {
17
17
  "alignItems": "center",
18
18
  "alignSelf": "flex-start",
19
- "backgroundColor": "#292a2b",
19
+ "backgroundColor": "#001f23",
20
20
  "borderRadius": 999,
21
21
  "flexDirection": "row",
22
22
  "justifyContent": "center",
@@ -25,7 +25,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
25
25
  "paddingVertical": 16,
26
26
  },
27
27
  Object {
28
- "backgroundColor": "#292a2b",
28
+ "backgroundColor": "#001f23",
29
29
  },
30
30
  ]
31
31
  }
@@ -35,7 +35,7 @@ exports[`FAB when animated is false renders StyledFABIcon 1`] = `
35
35
  style={
36
36
  Array [
37
37
  Object {
38
- "color": "#292a2b",
38
+ "color": "#001f23",
39
39
  "fontSize": 24,
40
40
  },
41
41
  Array [
@@ -72,7 +72,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
72
72
  Object {
73
73
  "alignItems": "center",
74
74
  "alignSelf": "flex-start",
75
- "backgroundColor": "#292a2b",
75
+ "backgroundColor": "#001f23",
76
76
  "borderRadius": 999,
77
77
  "flexDirection": "row",
78
78
  "justifyContent": "center",
@@ -81,7 +81,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
81
81
  "paddingVertical": 16,
82
82
  },
83
83
  Object {
84
- "backgroundColor": "#292a2b",
84
+ "backgroundColor": "#001f23",
85
85
  },
86
86
  ]
87
87
  }
@@ -104,7 +104,7 @@ exports[`FAB when animated is true renders animatedFABIcon 1`] = `
104
104
  style={
105
105
  Array [
106
106
  Object {
107
- "color": "#292a2b",
107
+ "color": "#001f23",
108
108
  "fontSize": 24,
109
109
  },
110
110
  Array [
@@ -142,7 +142,7 @@ exports[`FAB when title has value renders correctly 1`] = `
142
142
  Object {
143
143
  "alignItems": "center",
144
144
  "alignSelf": "flex-start",
145
- "backgroundColor": "#292a2b",
145
+ "backgroundColor": "#001f23",
146
146
  "borderRadius": 999,
147
147
  "flexDirection": "row",
148
148
  "justifyContent": "center",
@@ -151,7 +151,7 @@ exports[`FAB when title has value renders correctly 1`] = `
151
151
  "paddingVertical": 16,
152
152
  },
153
153
  Object {
154
- "backgroundColor": "#292a2b",
154
+ "backgroundColor": "#001f23",
155
155
  },
156
156
  ]
157
157
  }
@@ -161,7 +161,7 @@ exports[`FAB when title has value renders correctly 1`] = `
161
161
  style={
162
162
  Array [
163
163
  Object {
164
- "color": "#292a2b",
164
+ "color": "#001f23",
165
165
  "fontSize": 16,
166
166
  },
167
167
  Array [
@@ -19,7 +19,7 @@ exports[`Icon render correctly with spin prop 1`] = `
19
19
  style={
20
20
  Array [
21
21
  Object {
22
- "color": "#292a2b",
22
+ "color": "#001f23",
23
23
  "fontSize": 24,
24
24
  },
25
25
  undefined,
@@ -37,7 +37,7 @@ exports[`Icon renders correctly 1`] = `
37
37
  style={
38
38
  Array [
39
39
  Object {
40
- "color": "#292a2b",
40
+ "color": "#001f23",
41
41
  "fontSize": 24,
42
42
  },
43
43
  undefined,
@@ -71,7 +71,7 @@ exports[`Icon renders correctly with intent 1`] = `
71
71
  style={
72
72
  Array [
73
73
  Object {
74
- "color": "#7622d7",
74
+ "color": "#8505a2",
75
75
  "fontSize": 24,
76
76
  },
77
77
  undefined,
@@ -23,7 +23,7 @@ export interface ListItemProps {
23
23
  /**
24
24
  * The title of the component.
25
25
  */
26
- title: string;
26
+ title: string | React.ReactElement;
27
27
  /**
28
28
  * The subtile title of the component.
29
29
  */
@@ -82,9 +82,13 @@ const BasicListItem = ({
82
82
  </StyledPrefixContainer>
83
83
  )}
84
84
  <StyledTitleContainer>
85
- <Typography.Text intent="body" fontSize="large">
86
- {title}
87
- </Typography.Text>
85
+ {typeof title === 'string' ? (
86
+ <Typography.Text intent="body" fontSize="large">
87
+ {title}
88
+ </Typography.Text>
89
+ ) : (
90
+ title
91
+ )}
88
92
  {subtitle && (
89
93
  <Typography.Text intent="subdued" fontSize="small">
90
94
  {subtitle}
@@ -44,7 +44,7 @@ exports[`BasicListItem renders correctly 1`] = `
44
44
  style={
45
45
  Array [
46
46
  Object {
47
- "color": "#292a2b",
47
+ "color": "#001f23",
48
48
  "fontFamily": "BeVietnamPro-Regular",
49
49
  "fontSize": 16,
50
50
  "letterSpacing": 0.48,
@@ -63,7 +63,7 @@ exports[`BasicListItem renders correctly 1`] = `
63
63
  style={
64
64
  Array [
65
65
  Object {
66
- "color": "#8b8d92",
66
+ "color": "#808f91",
67
67
  "fontFamily": "BeVietnamPro-Regular",
68
68
  "fontSize": 12,
69
69
  "letterSpacing": 0.36,
@@ -94,7 +94,7 @@ exports[`BasicListItem renders correctly 1`] = `
94
94
  style={
95
95
  Array [
96
96
  Object {
97
- "color": "#292a2b",
97
+ "color": "#001f23",
98
98
  "fontSize": 20,
99
99
  },
100
100
  undefined,
@@ -61,7 +61,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
61
61
  style={
62
62
  Array [
63
63
  Object {
64
- "borderColor": "#7622d7",
64
+ "borderColor": "#8505a2",
65
65
  "borderRadius": 999,
66
66
  "borderWidth": 1,
67
67
  "height": 32,
@@ -92,7 +92,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
92
92
  style={
93
93
  Array [
94
94
  Object {
95
- "color": "#7622d7",
95
+ "color": "#8505a2",
96
96
  "fontSize": 16,
97
97
  "overflow": "hidden",
98
98
  },
@@ -121,7 +121,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
121
121
  style={
122
122
  Array [
123
123
  Object {
124
- "color": "#292a2b",
124
+ "color": "#001f23",
125
125
  "fontFamily": "BeVietnamPro-SemiBold",
126
126
  "fontSize": 16,
127
127
  "letterSpacing": 0.48,
@@ -140,7 +140,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
140
140
  style={
141
141
  Array [
142
142
  Object {
143
- "color": "#8b8d92",
143
+ "color": "#808f91",
144
144
  "fontFamily": "BeVietnamPro-Regular",
145
145
  "fontSize": 12,
146
146
  "letterSpacing": 0.36,
@@ -171,7 +171,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
171
171
  style={
172
172
  Array [
173
173
  Object {
174
- "color": "#7622d7",
174
+ "color": "#8505a2",
175
175
  "fontSize": 20,
176
176
  },
177
177
  undefined,
@@ -207,7 +207,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
207
207
  style={
208
208
  Array [
209
209
  Object {
210
- "color": "#292a2b",
210
+ "color": "#001f23",
211
211
  "fontFamily": "BeVietnamPro-Regular",
212
212
  "fontSize": 14,
213
213
  "letterSpacing": 0.42,
@@ -226,7 +226,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
226
226
  style={
227
227
  Array [
228
228
  Object {
229
- "color": "#292a2b",
229
+ "color": "#001f23",
230
230
  "fontFamily": "BeVietnamPro-Regular",
231
231
  "fontSize": 14,
232
232
  "letterSpacing": 0.42,
@@ -255,7 +255,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
255
255
  style={
256
256
  Array [
257
257
  Object {
258
- "color": "#292a2b",
258
+ "color": "#001f23",
259
259
  "fontFamily": "BeVietnamPro-Regular",
260
260
  "fontSize": 14,
261
261
  "letterSpacing": 0.42,
@@ -274,7 +274,7 @@ exports[`ListItem renders correctly ListItem with children 1`] = `
274
274
  style={
275
275
  Array [
276
276
  Object {
277
- "color": "#292a2b",
277
+ "color": "#001f23",
278
278
  "fontFamily": "BeVietnamPro-Regular",
279
279
  "fontSize": 14,
280
280
  "letterSpacing": 0.42,
@@ -357,7 +357,7 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
357
357
  style={
358
358
  Array [
359
359
  Object {
360
- "color": "#292a2b",
360
+ "color": "#001f23",
361
361
  "fontFamily": "BeVietnamPro-SemiBold",
362
362
  "fontSize": 16,
363
363
  "letterSpacing": 0.48,
@@ -376,7 +376,7 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
376
376
  style={
377
377
  Array [
378
378
  Object {
379
- "color": "#8b8d92",
379
+ "color": "#808f91",
380
380
  "fontFamily": "BeVietnamPro-Regular",
381
381
  "fontSize": 12,
382
382
  "letterSpacing": 0.36,
@@ -407,7 +407,7 @@ exports[`ListItem renders correctly ListItem with icon 1`] = `
407
407
  style={
408
408
  Array [
409
409
  Object {
410
- "color": "#7622d7",
410
+ "color": "#8505a2",
411
411
  "fontSize": 20,
412
412
  },
413
413
  undefined,
@@ -453,7 +453,7 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
453
453
  style={
454
454
  Array [
455
455
  Object {
456
- "backgroundColor": "#ccced1",
456
+ "backgroundColor": "#bfc1c5",
457
457
  "borderRadius": 999,
458
458
  "marginRight": 8,
459
459
  "width": 8,
@@ -498,7 +498,7 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
498
498
  style={
499
499
  Array [
500
500
  Object {
501
- "color": "#292a2b",
501
+ "color": "#001f23",
502
502
  "fontFamily": "BeVietnamPro-SemiBold",
503
503
  "fontSize": 16,
504
504
  "letterSpacing": 0.48,
@@ -529,7 +529,7 @@ exports[`ListItem renders correctly ListItem with leading status 1`] = `
529
529
  style={
530
530
  Array [
531
531
  Object {
532
- "color": "#7622d7",
532
+ "color": "#8505a2",
533
533
  "fontSize": 20,
534
534
  },
535
535
  undefined,
@@ -606,7 +606,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
606
606
  style={
607
607
  Array [
608
608
  Object {
609
- "borderColor": "#7622d7",
609
+ "borderColor": "#8505a2",
610
610
  "borderRadius": 999,
611
611
  "borderWidth": 1,
612
612
  "height": 32,
@@ -637,7 +637,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
637
637
  style={
638
638
  Array [
639
639
  Object {
640
- "color": "#7622d7",
640
+ "color": "#8505a2",
641
641
  "fontSize": 16,
642
642
  "overflow": "hidden",
643
643
  },
@@ -666,7 +666,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
666
666
  style={
667
667
  Array [
668
668
  Object {
669
- "color": "#292a2b",
669
+ "color": "#001f23",
670
670
  "fontFamily": "BeVietnamPro-SemiBold",
671
671
  "fontSize": 16,
672
672
  "letterSpacing": 0.48,
@@ -685,7 +685,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
685
685
  style={
686
686
  Array [
687
687
  Object {
688
- "color": "#8b8d92",
688
+ "color": "#808f91",
689
689
  "fontFamily": "BeVietnamPro-Regular",
690
690
  "fontSize": 12,
691
691
  "letterSpacing": 0.36,
@@ -729,7 +729,7 @@ exports[`ListItem renders correctly ListItem with prefix suffix is React.Element
729
729
  style={
730
730
  Array [
731
731
  Object {
732
- "backgroundColor": "#7622d7",
732
+ "backgroundColor": "#8505a2",
733
733
  "borderRadius": 999,
734
734
  "height": 28.799999999999997,
735
735
  "paddingHorizontal": 4,
@@ -28,7 +28,7 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
28
28
  style={
29
29
  Array [
30
30
  Object {
31
- "color": "#292a2b",
31
+ "color": "#001f23",
32
32
  "fontFamily": "BeVietnamPro-Regular",
33
33
  "fontSize": 14,
34
34
  "letterSpacing": 0.42,
@@ -74,7 +74,7 @@ exports[`StyledListItemContainer renders correctly themeSelected false themeDisa
74
74
  style={
75
75
  Array [
76
76
  Object {
77
- "color": "#292a2b",
77
+ "color": "#001f23",
78
78
  "fontFamily": "BeVietnamPro-Regular",
79
79
  "fontSize": 14,
80
80
  "letterSpacing": 0.42,
@@ -107,7 +107,7 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
107
107
  Array [
108
108
  Object {
109
109
  "alignItems": "center",
110
- "backgroundColor": "#f1e9fb",
110
+ "backgroundColor": "#f3e6f6",
111
111
  "flexDirection": "row",
112
112
  "opacity": 1,
113
113
  "padding": 16,
@@ -120,7 +120,7 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
120
120
  style={
121
121
  Array [
122
122
  Object {
123
- "color": "#292a2b",
123
+ "color": "#001f23",
124
124
  "fontFamily": "BeVietnamPro-Regular",
125
125
  "fontSize": 14,
126
126
  "letterSpacing": 0.42,
@@ -153,7 +153,7 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
153
153
  Array [
154
154
  Object {
155
155
  "alignItems": "center",
156
- "backgroundColor": "#f1e9fb",
156
+ "backgroundColor": "#f3e6f6",
157
157
  "flexDirection": "row",
158
158
  "opacity": 0.38,
159
159
  "padding": 16,
@@ -166,7 +166,7 @@ exports[`StyledListItemContainer renders correctly themeSelected true themeDisab
166
166
  style={
167
167
  Array [
168
168
  Object {
169
- "color": "#292a2b",
169
+ "color": "#001f23",
170
170
  "fontFamily": "BeVietnamPro-Regular",
171
171
  "fontSize": 14,
172
172
  "letterSpacing": 0.42,
@@ -5,7 +5,7 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent archived 1`] =
5
5
  style={
6
6
  Array [
7
7
  Object {
8
- "backgroundColor": "#ccced1",
8
+ "backgroundColor": "#bfc1c5",
9
9
  "borderRadius": 999,
10
10
  "marginRight": 8,
11
11
  "width": 8,
@@ -22,7 +22,7 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent danger 1`] = `
22
22
  style={
23
23
  Array [
24
24
  Object {
25
- "backgroundColor": "#de350b",
25
+ "backgroundColor": "#e3602a",
26
26
  "borderRadius": 999,
27
27
  "marginRight": 8,
28
28
  "width": 8,
@@ -39,7 +39,7 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent info 1`] = `
39
39
  style={
40
40
  Array [
41
41
  Object {
42
- "backgroundColor": "#d1d9fe",
42
+ "backgroundColor": "#b5c3fd",
43
43
  "borderRadius": 999,
44
44
  "marginRight": 8,
45
45
  "width": 8,
@@ -56,7 +56,7 @@ exports[`LeadingStatus renders correctly themeLeadingStausIntent success 1`] = `
56
56
  style={
57
57
  Array [
58
58
  Object {
59
- "backgroundColor": "#017d6d",
59
+ "backgroundColor": "#5ace7d",
60
60
  "borderRadius": 999,
61
61
  "marginRight": 8,
62
62
  "width": 8,
@@ -104,7 +104,7 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant ca
104
104
  "borderRadius": 8,
105
105
  "flexDirection": "row",
106
106
  "padding": 16,
107
- "shadowColor": "#dadbde",
107
+ "shadowColor": "#ccced1",
108
108
  "shadowOffset": Object {
109
109
  "height": 2,
110
110
  "width": 0,
@@ -120,7 +120,7 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant ca
120
120
  style={
121
121
  Array [
122
122
  Object {
123
- "color": "#292a2b",
123
+ "color": "#001f23",
124
124
  "fontFamily": "BeVietnamPro-Regular",
125
125
  "fontSize": 14,
126
126
  "letterSpacing": 0.42,
@@ -164,7 +164,7 @@ exports[`ListItemContainer renders correctly themeSelected false themeVariant fu
164
164
  style={
165
165
  Array [
166
166
  Object {
167
- "color": "#292a2b",
167
+ "color": "#001f23",
168
168
  "fontFamily": "BeVietnamPro-Regular",
169
169
  "fontSize": 14,
170
170
  "letterSpacing": 0.42,
@@ -197,11 +197,11 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant car
197
197
  Array [
198
198
  Object {
199
199
  "alignItems": "center",
200
- "backgroundColor": "#f1e9fb",
200
+ "backgroundColor": "#f3e6f6",
201
201
  "borderRadius": 8,
202
202
  "flexDirection": "row",
203
203
  "padding": 16,
204
- "shadowColor": "#dadbde",
204
+ "shadowColor": "#ccced1",
205
205
  "shadowOffset": Object {
206
206
  "height": 2,
207
207
  "width": 0,
@@ -217,7 +217,7 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant car
217
217
  style={
218
218
  Array [
219
219
  Object {
220
- "color": "#292a2b",
220
+ "color": "#001f23",
221
221
  "fontFamily": "BeVietnamPro-Regular",
222
222
  "fontSize": 14,
223
223
  "letterSpacing": 0.42,
@@ -249,7 +249,7 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant ful
249
249
  style={
250
250
  Array [
251
251
  Object {
252
- "backgroundColor": "#f1e9fb",
252
+ "backgroundColor": "#f3e6f6",
253
253
  "flexDirection": "row",
254
254
  "padding": 16,
255
255
  },
@@ -261,7 +261,7 @@ exports[`ListItemContainer renders correctly themeSelected true themeVariant ful
261
261
  style={
262
262
  Array [
263
263
  Object {
264
- "color": "#292a2b",
264
+ "color": "#001f23",
265
265
  "fontFamily": "BeVietnamPro-Regular",
266
266
  "fontSize": 14,
267
267
  "letterSpacing": 0.42,
@@ -6,7 +6,7 @@ exports[`PinCell renders correctly when focused is false, state is default 1`] =
6
6
  Array [
7
7
  Object {
8
8
  "alignItems": "center",
9
- "borderColor": "#292a2b",
9
+ "borderColor": "#001f23",
10
10
  "borderRadius": 8,
11
11
  "borderWidth": 1,
12
12
  "height": 48,
@@ -23,7 +23,7 @@ exports[`PinCell renders correctly when focused is false, state is default 1`] =
23
23
  style={
24
24
  Array [
25
25
  Object {
26
- "color": "#292a2b",
26
+ "color": "#001f23",
27
27
  "fontFamily": "BeVietnamPro-SemiBold",
28
28
  "fontSize": 28,
29
29
  },
@@ -117,7 +117,7 @@ exports[`PinCell renders correctly when focused is true, state is default 1`] =
117
117
  Array [
118
118
  Object {
119
119
  "alignItems": "center",
120
- "borderColor": "#292a2b",
120
+ "borderColor": "#001f23",
121
121
  "borderRadius": 8,
122
122
  "borderWidth": 2,
123
123
  "height": 48,
@@ -134,7 +134,7 @@ exports[`PinCell renders correctly when focused is true, state is default 1`] =
134
134
  style={
135
135
  Array [
136
136
  Object {
137
- "color": "#292a2b",
137
+ "color": "#001f23",
138
138
  "fontFamily": "BeVietnamPro-SemiBold",
139
139
  "fontSize": 28,
140
140
  },