@utilitywarehouse/hearth-react-native 0.31.0 → 0.31.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.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +13 -13
- package/CHANGELOG.md +16 -0
- package/build/components/Table/TableHeaderCell.js +10 -1
- package/build/core/themes.d.ts +92 -88
- package/build/tokens/color.d.ts +82 -80
- package/build/tokens/color.js +41 -40
- package/build/tokens/components/dark/alert.d.ts +6 -6
- package/build/tokens/components/dark/alert.js +6 -6
- package/build/tokens/components/dark/bottom-navigation.d.ts +2 -2
- package/build/tokens/components/dark/bottom-navigation.js +2 -2
- package/build/tokens/components/dark/checkbox.d.ts +1 -1
- package/build/tokens/components/dark/checkbox.js +1 -1
- package/build/tokens/components/dark/icon-button.d.ts +3 -3
- package/build/tokens/components/dark/icon-button.js +3 -3
- package/build/tokens/components/dark/inline-link.d.ts +1 -1
- package/build/tokens/components/dark/inline-link.js +1 -1
- package/build/tokens/components/dark/link.d.ts +3 -3
- package/build/tokens/components/dark/link.js +3 -3
- package/build/tokens/components/dark/navigation.d.ts +2 -2
- package/build/tokens/components/dark/navigation.js +2 -2
- package/build/tokens/components/dark/parts.d.ts +2 -2
- package/build/tokens/components/dark/parts.js +2 -2
- package/build/tokens/components/dark/progress-bar.d.ts +3 -3
- package/build/tokens/components/dark/progress-bar.js +3 -3
- package/build/tokens/components/dark/progress-stepper.d.ts +1 -1
- package/build/tokens/components/dark/progress-stepper.js +1 -1
- package/build/tokens/components/dark/spinner.d.ts +1 -1
- package/build/tokens/components/dark/spinner.js +1 -1
- package/build/tokens/components/dark/table.d.ts +2 -0
- package/build/tokens/components/dark/table.js +2 -0
- package/build/tokens/components/dark/time-picker.d.ts +1 -0
- package/build/tokens/components/dark/time-picker.js +1 -0
- package/build/tokens/components/light/parts.d.ts +3 -3
- package/build/tokens/components/light/parts.js +3 -3
- package/build/tokens/components/light/table.d.ts +2 -0
- package/build/tokens/components/light/table.js +2 -0
- package/build/tokens/components/light/time-picker.d.ts +1 -0
- package/build/tokens/components/light/time-picker.js +1 -0
- package/build/tokens/semantic-dark.d.ts +40 -40
- package/build/tokens/semantic-dark.js +40 -40
- package/docs/changelog.mdx +149 -0
- package/package.json +3 -3
- package/src/components/Table/TableHeaderCell.tsx +10 -1
- package/src/tokens/color.ts +41 -40
- package/src/tokens/components/dark/alert.ts +6 -6
- package/src/tokens/components/dark/bottom-navigation.ts +2 -2
- package/src/tokens/components/dark/checkbox.ts +1 -1
- package/src/tokens/components/dark/icon-button.ts +3 -3
- package/src/tokens/components/dark/inline-link.ts +1 -1
- package/src/tokens/components/dark/link.ts +3 -3
- package/src/tokens/components/dark/navigation.ts +2 -2
- package/src/tokens/components/dark/parts.ts +2 -2
- package/src/tokens/components/dark/progress-bar.ts +3 -3
- package/src/tokens/components/dark/progress-stepper.ts +1 -1
- package/src/tokens/components/dark/spinner.ts +1 -1
- package/src/tokens/components/dark/table.ts +2 -0
- package/src/tokens/components/dark/time-picker.ts +1 -0
- package/src/tokens/components/light/parts.ts +3 -3
- package/src/tokens/components/light/table.ts +2 -0
- package/src/tokens/components/light/time-picker.ts +1 -0
- package/src/tokens/semantic-dark.ts +40 -40
- package/vercel.json +0 -21
package/docs/changelog.mdx
CHANGED
|
@@ -9,6 +9,155 @@ import { BackToTopButton, NextPrevPage } from './components';
|
|
|
9
9
|
The changelog for the Hearth React Native library. Here you can find all the changes, improvements, and bug fixes for each version.
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## 0.31.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add margin, padding, and layout utility props to `Flex`.
|
|
17
|
+
|
|
18
|
+
`Flex` now exposes the shared margin and padding utility props, along with the existing layout utility prop surface, so it can be used more like other layout primitives such as `Card`.
|
|
19
|
+
|
|
20
|
+
**Component affected**:
|
|
21
|
+
- `Flex`
|
|
22
|
+
|
|
23
|
+
**Developer changes**:
|
|
24
|
+
|
|
25
|
+
You can now apply spacing and layout utility props directly on `Flex`:
|
|
26
|
+
|
|
27
|
+
```tsx
|
|
28
|
+
<Flex direction="row" spacing="md" padding="300" marginTop="200" flex={1}>
|
|
29
|
+
<Button>Back</Button>
|
|
30
|
+
<Button>Continue</Button>
|
|
31
|
+
</Flex>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
- [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom trigger content options to `ExpandableCard`.
|
|
35
|
+
|
|
36
|
+
`ExpandableCard` now supports a `triggerContent` prop for replacing the default trigger layout while keeping the chevron. `ExpandableCardTrigger` also now supports `children` with an optional `showChevron` prop, so you can fully compose the trigger content yourself and still opt in to the built-in expand/collapse chevron.
|
|
37
|
+
|
|
38
|
+
**Components affected**:
|
|
39
|
+
- `ExpandableCard`
|
|
40
|
+
- `ExpandableCardTrigger`
|
|
41
|
+
|
|
42
|
+
**Developer changes**:
|
|
43
|
+
|
|
44
|
+
Use `triggerContent` when you want a single prop on `ExpandableCard` to replace the standard trigger content:
|
|
45
|
+
|
|
46
|
+
```tsx
|
|
47
|
+
<ExpandableCard
|
|
48
|
+
triggerContent={<BodyText weight="semibold">March bill ready</BodyText>}
|
|
49
|
+
expandedContent={<BodyText>Balance: £89.50</BodyText>}
|
|
50
|
+
/>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Use `ExpandableCardTrigger` children when you want full control over the trigger structure. Add `showChevron` if you still want the built-in chevron:
|
|
54
|
+
|
|
55
|
+
```tsx
|
|
56
|
+
<ExpandableCardTrigger isExpanded={expanded} onPress={toggleExpanded} showChevron>
|
|
57
|
+
<ExpandableCardContent>
|
|
58
|
+
<ExpandableCardText>Custom trigger</ExpandableCardText>
|
|
59
|
+
</ExpandableCardContent>
|
|
60
|
+
</ExpandableCardTrigger>
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
- [#1109](https://github.com/utilitywarehouse/hearth/pull/1109) [`8215550`](https://github.com/utilitywarehouse/hearth/commit/8215550745d08a8b4c18a6902e39d3199018092a) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `numberOfLines` support to `Badge` text.
|
|
64
|
+
|
|
65
|
+
`Badge` now renders its text content on a single line by default and supports a new `numberOfLines` prop when you want to allow more lines.
|
|
66
|
+
|
|
67
|
+
**Components affected**:
|
|
68
|
+
- `Badge`
|
|
69
|
+
|
|
70
|
+
**Developer changes**:
|
|
71
|
+
|
|
72
|
+
No changes are required unless you want a `Badge` to wrap onto more than one line. To opt in, pass `numberOfLines`:
|
|
73
|
+
|
|
74
|
+
```tsx
|
|
75
|
+
<Badge numberOfLines={2} text="Long badge text that can wrap onto a second line" />
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
- [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom footer support to `Modal` and `NavModal`.
|
|
79
|
+
|
|
80
|
+
`Modal` and `NavModal` now support a `footer` prop for replacing the built-in primary and secondary action buttons with custom content, plus a `footerStyle` prop for styling the footer container. When `footer` is provided, the button props are now disallowed at the type level.
|
|
81
|
+
|
|
82
|
+
**Components affected**:
|
|
83
|
+
- `Modal`
|
|
84
|
+
- `NavModal`
|
|
85
|
+
|
|
86
|
+
**Developer changes**:
|
|
87
|
+
|
|
88
|
+
Use `footer` when you need a custom footer layout, such as horizontal actions or extra decoration:
|
|
89
|
+
|
|
90
|
+
```tsx
|
|
91
|
+
<Modal
|
|
92
|
+
heading="Update billing details"
|
|
93
|
+
footer={
|
|
94
|
+
<Flex direction="row" spacing="md" pt="250">
|
|
95
|
+
<Button variant="outline" colorScheme="functional" style={{ flex: 1 }}>
|
|
96
|
+
Cancel
|
|
97
|
+
</Button>
|
|
98
|
+
<Button style={{ flex: 1 }}>Save changes</Button>
|
|
99
|
+
</Flex>
|
|
100
|
+
}
|
|
101
|
+
footerStyle={{
|
|
102
|
+
boxShadow: '0px -6px 12px rgba(16, 24, 40, 0.12)',
|
|
103
|
+
}}
|
|
104
|
+
/>
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
- [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add optional vertical resizing to `Textarea`.
|
|
108
|
+
|
|
109
|
+
`Textarea` now supports a new `resizable` prop that adds a bottom-right drag handle so people can increase the field height when they need more space for longer content.
|
|
110
|
+
|
|
111
|
+
**Components affected**:
|
|
112
|
+
- `Textarea`
|
|
113
|
+
|
|
114
|
+
**Developer changes**:
|
|
115
|
+
|
|
116
|
+
No changes are required unless you want to enable resizing for a textarea. To opt in, pass the new `resizable` prop:
|
|
117
|
+
|
|
118
|
+
```tsx
|
|
119
|
+
<Textarea
|
|
120
|
+
label="Additional notes"
|
|
121
|
+
helperText="Drag the corner handle to resize"
|
|
122
|
+
placeholder="Enter your text here..."
|
|
123
|
+
resizable
|
|
124
|
+
/>
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
- [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add flex utility props to `Container`.
|
|
128
|
+
|
|
129
|
+
`Container` now exposes shared flex layout utility props, allowing layout properties such as `flex`, `alignItems`, `justifyContent`, and `flexDirection` to be applied directly through its public prop API.
|
|
130
|
+
|
|
131
|
+
**Component affected**:
|
|
132
|
+
- `Container`
|
|
133
|
+
|
|
134
|
+
**Developer changes**:
|
|
135
|
+
|
|
136
|
+
You can now combine `Container`'s existing spacing props with flex layout props:
|
|
137
|
+
|
|
138
|
+
```tsx
|
|
139
|
+
<Container flex={1} justifyContent="center" alignItems="stretch" gap="200">
|
|
140
|
+
<BodyText>Content</BodyText>
|
|
141
|
+
</Container>
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Patch Changes
|
|
145
|
+
|
|
146
|
+
- [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Render FormField optional text with regular weight instead of inheriting the label weight.
|
|
147
|
+
|
|
148
|
+
This fixes FormField labels that append `(Optional)` so the optional text no longer inherits the main label weight.
|
|
149
|
+
|
|
150
|
+
**Components affected**:
|
|
151
|
+
- `FormField`
|
|
152
|
+
- `Textarea`
|
|
153
|
+
- `Input`
|
|
154
|
+
|
|
155
|
+
**Developer changes**:
|
|
156
|
+
|
|
157
|
+
No changes are required.
|
|
158
|
+
|
|
159
|
+
- [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `ExpandableCard` heading font size and weight
|
|
160
|
+
|
|
12
161
|
## 0.30.4
|
|
13
162
|
|
|
14
163
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utilitywarehouse/hearth-react-native",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.1",
|
|
4
4
|
"description": "Utility Warehouse React Native UI library",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -58,10 +58,10 @@
|
|
|
58
58
|
"vite-plugin-svgr": "^4.5.0",
|
|
59
59
|
"vitest": "^3.2.4",
|
|
60
60
|
"@utilitywarehouse/hearth-fonts": "^0.0.4",
|
|
61
|
-
"@utilitywarehouse/hearth-react-icons": "^0.8.0",
|
|
62
61
|
"@utilitywarehouse/hearth-react-native-icons": "^0.8.0",
|
|
63
62
|
"@utilitywarehouse/hearth-svg-assets": "^0.6.0",
|
|
64
|
-
"@utilitywarehouse/hearth-tokens": "^0.2.4"
|
|
63
|
+
"@utilitywarehouse/hearth-tokens": "^0.2.4",
|
|
64
|
+
"@utilitywarehouse/hearth-react-icons": "^0.8.0"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"@gorhom/bottom-sheet": ">=5.0.0",
|
|
@@ -11,9 +11,10 @@ const renderContent = (
|
|
|
11
11
|
weight: 'regular' | 'semibold' = 'semibold',
|
|
12
12
|
color: 'purple' | 'white' = 'white'
|
|
13
13
|
) => {
|
|
14
|
+
styles.useVariants({ color });
|
|
14
15
|
if (typeof children === 'string' || typeof children === 'number') {
|
|
15
16
|
return (
|
|
16
|
-
<BodyText size="md" weight={weight} style={styles.text}
|
|
17
|
+
<BodyText size="md" weight={weight} style={styles.text}>
|
|
17
18
|
{children}
|
|
18
19
|
</BodyText>
|
|
19
20
|
);
|
|
@@ -129,6 +130,14 @@ const styles = StyleSheet.create(theme => ({
|
|
|
129
130
|
color: theme.color.text.primary,
|
|
130
131
|
},
|
|
131
132
|
},
|
|
133
|
+
color: {
|
|
134
|
+
purple: {
|
|
135
|
+
color: theme.components.table.headerCell.foregoundColorInverted,
|
|
136
|
+
},
|
|
137
|
+
white: {
|
|
138
|
+
color: theme.components.table.headerCell.foregoundColor,
|
|
139
|
+
},
|
|
140
|
+
},
|
|
132
141
|
},
|
|
133
142
|
},
|
|
134
143
|
}));
|
package/src/tokens/color.ts
CHANGED
|
@@ -94,6 +94,7 @@ export const grey = {
|
|
|
94
94
|
'700': '#4c4c4c',
|
|
95
95
|
'800': '#3f3f3f',
|
|
96
96
|
'900': '#3a3837',
|
|
97
|
+
'925': '#2f2d2d',
|
|
97
98
|
'950': '#232323',
|
|
98
99
|
'975': '#191919',
|
|
99
100
|
'1000': '#101010',
|
|
@@ -480,25 +481,25 @@ export const light = {
|
|
|
480
481
|
|
|
481
482
|
export const dark = {
|
|
482
483
|
background: {
|
|
483
|
-
brand: '#
|
|
484
|
+
brand: '#442484',
|
|
484
485
|
loading: '#30302c',
|
|
485
486
|
primary: '#191917',
|
|
486
|
-
secondary: '#
|
|
487
|
+
secondary: '#2f2d2d',
|
|
487
488
|
},
|
|
488
489
|
border: {
|
|
489
|
-
strong: '#
|
|
490
|
-
subtle: '#
|
|
490
|
+
strong: '#888888',
|
|
491
|
+
subtle: '#5b5b5b',
|
|
491
492
|
},
|
|
492
493
|
feedback: {
|
|
493
494
|
danger: {
|
|
494
|
-
border: '#
|
|
495
|
+
border: '#f4412a',
|
|
495
496
|
foreground: {
|
|
496
|
-
default: '#
|
|
497
|
+
default: '#ffffff',
|
|
497
498
|
subtle: '#ff7964',
|
|
498
499
|
},
|
|
499
500
|
surface: {
|
|
500
|
-
default: '#
|
|
501
|
-
subtle: '#
|
|
501
|
+
default: '#de2612',
|
|
502
|
+
subtle: '#6b1f1a',
|
|
502
503
|
},
|
|
503
504
|
},
|
|
504
505
|
functional: {
|
|
@@ -513,36 +514,36 @@ export const dark = {
|
|
|
513
514
|
},
|
|
514
515
|
},
|
|
515
516
|
info: {
|
|
516
|
-
border: '#
|
|
517
|
+
border: '#2786f1',
|
|
517
518
|
foreground: {
|
|
518
|
-
default: '#
|
|
519
|
+
default: '#ffffff',
|
|
519
520
|
subtle: '#6bb0ff',
|
|
520
521
|
},
|
|
521
522
|
surface: {
|
|
522
|
-
default: '#
|
|
523
|
-
subtle: '#
|
|
523
|
+
default: '#1c6cd4',
|
|
524
|
+
subtle: '#0b3375',
|
|
524
525
|
},
|
|
525
526
|
},
|
|
526
527
|
positive: {
|
|
527
|
-
border: '#
|
|
528
|
+
border: '#19a660',
|
|
528
529
|
foreground: {
|
|
529
|
-
default: '#
|
|
530
|
+
default: '#ffffff',
|
|
530
531
|
subtle: '#58ca93',
|
|
531
532
|
},
|
|
532
533
|
surface: {
|
|
533
|
-
default: '#
|
|
534
|
-
subtle: '#
|
|
534
|
+
default: '#0f834a',
|
|
535
|
+
subtle: '#074b2a',
|
|
535
536
|
},
|
|
536
537
|
},
|
|
537
538
|
warning: {
|
|
538
|
-
border: '#
|
|
539
|
+
border: '#f56e00',
|
|
539
540
|
foreground: {
|
|
540
|
-
default: '#
|
|
541
|
+
default: '#ffffff',
|
|
541
542
|
subtle: '#ff9639',
|
|
542
543
|
},
|
|
543
544
|
surface: {
|
|
544
|
-
default: '#
|
|
545
|
-
subtle: '#
|
|
545
|
+
default: '#cf5d00',
|
|
546
|
+
subtle: '#893900',
|
|
546
547
|
},
|
|
547
548
|
},
|
|
548
549
|
},
|
|
@@ -585,9 +586,9 @@ export const dark = {
|
|
|
585
586
|
},
|
|
586
587
|
surface: {
|
|
587
588
|
strong: {
|
|
588
|
-
active: '#
|
|
589
|
-
default: '#
|
|
590
|
-
hover: '#
|
|
589
|
+
active: '#ddd5eb',
|
|
590
|
+
default: '#af90de',
|
|
591
|
+
hover: '#c6b5e2',
|
|
591
592
|
},
|
|
592
593
|
},
|
|
593
594
|
},
|
|
@@ -670,52 +671,52 @@ export const dark = {
|
|
|
670
671
|
},
|
|
671
672
|
},
|
|
672
673
|
shadow: {
|
|
673
|
-
brand: '#
|
|
674
|
-
broadband: '#
|
|
675
|
-
cashback: '#
|
|
676
|
-
default: '#
|
|
677
|
-
energy: '#
|
|
678
|
-
insurance: '#
|
|
679
|
-
mobile: '#
|
|
680
|
-
pig: '#
|
|
674
|
+
brand: '#442484',
|
|
675
|
+
broadband: '#4f6b20',
|
|
676
|
+
cashback: '#7429b5',
|
|
677
|
+
default: '#3f3f3f',
|
|
678
|
+
energy: '#2c6370',
|
|
679
|
+
insurance: '#7f4518',
|
|
680
|
+
mobile: '#8a3260',
|
|
681
|
+
pig: '#7a1f7e',
|
|
681
682
|
},
|
|
682
683
|
surface: {
|
|
683
684
|
brand: {
|
|
684
|
-
default: '#
|
|
685
|
+
default: '#af90de',
|
|
685
686
|
strong: '#26164f',
|
|
686
687
|
subtle: '#442484',
|
|
687
688
|
},
|
|
688
689
|
broadband: {
|
|
689
690
|
default: '#506c21',
|
|
690
|
-
subtle: '#
|
|
691
|
+
subtle: '#4f6b20',
|
|
691
692
|
},
|
|
692
693
|
cashback: {
|
|
693
694
|
default: '#8b2bc9',
|
|
694
|
-
subtle: '#
|
|
695
|
+
subtle: '#7429b5',
|
|
695
696
|
},
|
|
696
697
|
energy: {
|
|
697
698
|
default: '#326e7a',
|
|
698
|
-
subtle: '#
|
|
699
|
+
subtle: '#2c6370',
|
|
699
700
|
},
|
|
700
701
|
highlight: {
|
|
701
702
|
default: '#ffb921',
|
|
702
|
-
subtle: '#
|
|
703
|
+
subtle: '#82692b',
|
|
703
704
|
},
|
|
704
705
|
insurance: {
|
|
705
706
|
default: '#9b4c0e',
|
|
706
|
-
subtle: '#
|
|
707
|
+
subtle: '#7f4518',
|
|
707
708
|
},
|
|
708
709
|
mobile: {
|
|
709
710
|
default: '#a7266d',
|
|
710
|
-
subtle: '#
|
|
711
|
+
subtle: '#8a3260',
|
|
711
712
|
},
|
|
712
713
|
neutral: {
|
|
713
|
-
strong: '#
|
|
714
|
+
strong: '#2f2d2d',
|
|
714
715
|
subtle: '#191917',
|
|
715
716
|
},
|
|
716
717
|
pig: {
|
|
717
718
|
default: '#8f358f',
|
|
718
|
-
subtle: '#
|
|
719
|
+
subtle: '#7a1f7e',
|
|
719
720
|
},
|
|
720
721
|
},
|
|
721
722
|
text: {
|
|
@@ -10,15 +10,15 @@ export default {
|
|
|
10
10
|
gap: 8,
|
|
11
11
|
iconButton: {
|
|
12
12
|
unstyled: {
|
|
13
|
-
foregroundColor: '#
|
|
14
|
-
foregroundColorActive: '#
|
|
15
|
-
foregroundColorHover: '#
|
|
13
|
+
foregroundColor: '#ebebeb',
|
|
14
|
+
foregroundColorActive: '#b2afae',
|
|
15
|
+
foregroundColorHover: '#d3d3d3',
|
|
16
16
|
},
|
|
17
17
|
},
|
|
18
18
|
link: {
|
|
19
|
-
color: '#
|
|
20
|
-
colorActive: '#
|
|
21
|
-
colorHover: '#
|
|
19
|
+
color: '#ebebeb',
|
|
20
|
+
colorActive: '#b2afae',
|
|
21
|
+
colorHover: '#d3d3d3',
|
|
22
22
|
},
|
|
23
23
|
padding: 14,
|
|
24
24
|
} as const;
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
export default {
|
|
6
6
|
iconButton: {
|
|
7
7
|
unstyled: {
|
|
8
|
-
foregroundColor: '#
|
|
9
|
-
foregroundColorActive: '#
|
|
10
|
-
foregroundColorHover: '#
|
|
8
|
+
foregroundColor: '#ebebeb',
|
|
9
|
+
foregroundColorActive: '#b2afae',
|
|
10
|
+
foregroundColorHover: '#d3d3d3',
|
|
11
11
|
},
|
|
12
12
|
},
|
|
13
13
|
borderRadius: 8,
|
|
@@ -7,12 +7,12 @@ export default {
|
|
|
7
7
|
borderRadiusNone: 0,
|
|
8
8
|
borderRadiusRounded: 4,
|
|
9
9
|
},
|
|
10
|
-
borderBottom: '#
|
|
10
|
+
borderBottom: '#996cda',
|
|
11
11
|
borderRadius: 6,
|
|
12
12
|
desktop: {
|
|
13
13
|
height: 88,
|
|
14
14
|
},
|
|
15
|
-
dividerBorderColor: '#
|
|
15
|
+
dividerBorderColor: '#996cda',
|
|
16
16
|
gap: 4,
|
|
17
17
|
mobile: {
|
|
18
18
|
height: 64,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
export default {
|
|
6
6
|
homeIndicator: {
|
|
7
|
-
foregroundColor: '#
|
|
7
|
+
foregroundColor: '#101010',
|
|
8
8
|
foregroundColorInverted: '#ffffff',
|
|
9
9
|
},
|
|
10
10
|
modalStack: {
|
|
@@ -26,8 +26,8 @@ export default {
|
|
|
26
26
|
borderRadius: 9999,
|
|
27
27
|
},
|
|
28
28
|
statusBar: {
|
|
29
|
-
foregroundColor: '#
|
|
29
|
+
foregroundColor: '#101010',
|
|
30
30
|
foregroundColorInverted: '#ffffff',
|
|
31
|
-
notch: '#
|
|
31
|
+
notch: '#101010',
|
|
32
32
|
},
|
|
33
33
|
} as const;
|