@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
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
*/
|
|
4
4
|
declare const _default: {
|
|
5
5
|
readonly link: {
|
|
6
|
-
readonly color: "#
|
|
7
|
-
readonly colorActive: "#
|
|
8
|
-
readonly colorHover: "#
|
|
6
|
+
readonly color: "#ebebeb";
|
|
7
|
+
readonly colorActive: "#b2afae";
|
|
8
|
+
readonly colorHover: "#d3d3d3";
|
|
9
9
|
};
|
|
10
10
|
readonly color: "#ebebeb";
|
|
11
11
|
readonly colorActive: "#b2afae";
|
|
@@ -6,12 +6,12 @@ declare const _default: {
|
|
|
6
6
|
readonly borderRadiusNone: 0;
|
|
7
7
|
readonly borderRadiusRounded: 4;
|
|
8
8
|
};
|
|
9
|
-
readonly borderBottom: "#
|
|
9
|
+
readonly borderBottom: "#996cda";
|
|
10
10
|
readonly borderRadius: 6;
|
|
11
11
|
readonly desktop: {
|
|
12
12
|
readonly height: 88;
|
|
13
13
|
};
|
|
14
|
-
readonly dividerBorderColor: "#
|
|
14
|
+
readonly dividerBorderColor: "#996cda";
|
|
15
15
|
readonly gap: 4;
|
|
16
16
|
readonly mobile: {
|
|
17
17
|
readonly height: 64;
|
|
@@ -6,12 +6,12 @@ export default {
|
|
|
6
6
|
borderRadiusNone: 0,
|
|
7
7
|
borderRadiusRounded: 4,
|
|
8
8
|
},
|
|
9
|
-
borderBottom: '#
|
|
9
|
+
borderBottom: '#996cda',
|
|
10
10
|
borderRadius: 6,
|
|
11
11
|
desktop: {
|
|
12
12
|
height: 88,
|
|
13
13
|
},
|
|
14
|
-
dividerBorderColor: '#
|
|
14
|
+
dividerBorderColor: '#996cda',
|
|
15
15
|
gap: 4,
|
|
16
16
|
mobile: {
|
|
17
17
|
height: 64,
|
|
@@ -26,8 +26,8 @@ declare const _default: {
|
|
|
26
26
|
};
|
|
27
27
|
readonly statusBar: {
|
|
28
28
|
readonly foregroundColor: "#ffffff";
|
|
29
|
-
readonly foregroundColorInverted: "#
|
|
30
|
-
readonly notch: "#
|
|
29
|
+
readonly foregroundColorInverted: "#ffffff";
|
|
30
|
+
readonly notch: "#101010";
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
export default _default;
|
|
@@ -33,9 +33,9 @@ declare const _default: {
|
|
|
33
33
|
};
|
|
34
34
|
};
|
|
35
35
|
readonly progress: {
|
|
36
|
-
readonly dangerColor: "#
|
|
37
|
-
readonly defaultColor: "#
|
|
38
|
-
readonly successColor: "#
|
|
36
|
+
readonly dangerColor: "#f4412a";
|
|
37
|
+
readonly defaultColor: "#996cda";
|
|
38
|
+
readonly successColor: "#19a660";
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
export default _default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
declare const _default: {
|
|
5
5
|
readonly homeIndicator: {
|
|
6
|
-
readonly foregroundColor: "#
|
|
6
|
+
readonly foregroundColor: "#101010";
|
|
7
7
|
readonly foregroundColorInverted: "#ffffff";
|
|
8
8
|
};
|
|
9
9
|
readonly modalStack: {
|
|
@@ -25,9 +25,9 @@ declare const _default: {
|
|
|
25
25
|
readonly borderRadius: 9999;
|
|
26
26
|
};
|
|
27
27
|
readonly statusBar: {
|
|
28
|
-
readonly foregroundColor: "#
|
|
28
|
+
readonly foregroundColor: "#101010";
|
|
29
29
|
readonly foregroundColorInverted: "#ffffff";
|
|
30
|
-
readonly notch: "#
|
|
30
|
+
readonly notch: "#101010";
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
export default _default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export default {
|
|
5
5
|
homeIndicator: {
|
|
6
|
-
foregroundColor: '#
|
|
6
|
+
foregroundColor: '#101010',
|
|
7
7
|
foregroundColorInverted: '#ffffff',
|
|
8
8
|
},
|
|
9
9
|
modalStack: {
|
|
@@ -25,8 +25,8 @@ export default {
|
|
|
25
25
|
borderRadius: 9999,
|
|
26
26
|
},
|
|
27
27
|
statusBar: {
|
|
28
|
-
foregroundColor: '#
|
|
28
|
+
foregroundColor: '#101010',
|
|
29
29
|
foregroundColorInverted: '#ffffff',
|
|
30
|
-
notch: '#
|
|
30
|
+
notch: '#101010',
|
|
31
31
|
},
|
|
32
32
|
};
|
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
declare const _default: {
|
|
5
5
|
readonly background: {
|
|
6
|
-
readonly brand: "#
|
|
6
|
+
readonly brand: "#442484";
|
|
7
7
|
readonly loading: "#30302c";
|
|
8
8
|
readonly primary: "#191917";
|
|
9
|
-
readonly secondary: "#
|
|
9
|
+
readonly secondary: "#2f2d2d";
|
|
10
10
|
};
|
|
11
11
|
readonly border: {
|
|
12
|
-
readonly strong: "#
|
|
13
|
-
readonly subtle: "#
|
|
12
|
+
readonly strong: "#888888";
|
|
13
|
+
readonly subtle: "#5b5b5b";
|
|
14
14
|
};
|
|
15
15
|
readonly feedback: {
|
|
16
16
|
readonly danger: {
|
|
17
|
-
readonly border: "#
|
|
17
|
+
readonly border: "#f4412a";
|
|
18
18
|
readonly foreground: {
|
|
19
|
-
readonly default: "#
|
|
19
|
+
readonly default: "#ffffff";
|
|
20
20
|
readonly subtle: "#ff7964";
|
|
21
21
|
};
|
|
22
22
|
readonly surface: {
|
|
23
|
-
readonly default: "#
|
|
24
|
-
readonly subtle: "#
|
|
23
|
+
readonly default: "#de2612";
|
|
24
|
+
readonly subtle: "#6b1f1a";
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
readonly functional: {
|
|
@@ -36,36 +36,36 @@ declare const _default: {
|
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
readonly info: {
|
|
39
|
-
readonly border: "#
|
|
39
|
+
readonly border: "#2786f1";
|
|
40
40
|
readonly foreground: {
|
|
41
|
-
readonly default: "#
|
|
41
|
+
readonly default: "#ffffff";
|
|
42
42
|
readonly subtle: "#6bb0ff";
|
|
43
43
|
};
|
|
44
44
|
readonly surface: {
|
|
45
|
-
readonly default: "#
|
|
46
|
-
readonly subtle: "#
|
|
45
|
+
readonly default: "#1c6cd4";
|
|
46
|
+
readonly subtle: "#0b3375";
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
49
|
readonly positive: {
|
|
50
|
-
readonly border: "#
|
|
50
|
+
readonly border: "#19a660";
|
|
51
51
|
readonly foreground: {
|
|
52
|
-
readonly default: "#
|
|
52
|
+
readonly default: "#ffffff";
|
|
53
53
|
readonly subtle: "#58ca93";
|
|
54
54
|
};
|
|
55
55
|
readonly surface: {
|
|
56
|
-
readonly default: "#
|
|
57
|
-
readonly subtle: "#
|
|
56
|
+
readonly default: "#0f834a";
|
|
57
|
+
readonly subtle: "#074b2a";
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
readonly warning: {
|
|
61
|
-
readonly border: "#
|
|
61
|
+
readonly border: "#f56e00";
|
|
62
62
|
readonly foreground: {
|
|
63
|
-
readonly default: "#
|
|
63
|
+
readonly default: "#ffffff";
|
|
64
64
|
readonly subtle: "#ff9639";
|
|
65
65
|
};
|
|
66
66
|
readonly surface: {
|
|
67
|
-
readonly default: "#
|
|
68
|
-
readonly subtle: "#
|
|
67
|
+
readonly default: "#cf5d00";
|
|
68
|
+
readonly subtle: "#893900";
|
|
69
69
|
};
|
|
70
70
|
};
|
|
71
71
|
};
|
|
@@ -108,9 +108,9 @@ declare const _default: {
|
|
|
108
108
|
};
|
|
109
109
|
readonly surface: {
|
|
110
110
|
readonly strong: {
|
|
111
|
-
readonly active: "#
|
|
112
|
-
readonly default: "#
|
|
113
|
-
readonly hover: "#
|
|
111
|
+
readonly active: "#ddd5eb";
|
|
112
|
+
readonly default: "#af90de";
|
|
113
|
+
readonly hover: "#c6b5e2";
|
|
114
114
|
};
|
|
115
115
|
};
|
|
116
116
|
};
|
|
@@ -196,52 +196,52 @@ declare const _default: {
|
|
|
196
196
|
readonly disabled: 50;
|
|
197
197
|
};
|
|
198
198
|
readonly shadow: {
|
|
199
|
-
readonly brand: "#
|
|
200
|
-
readonly broadband: "#
|
|
201
|
-
readonly cashback: "#
|
|
202
|
-
readonly default: "#
|
|
203
|
-
readonly energy: "#
|
|
204
|
-
readonly insurance: "#
|
|
205
|
-
readonly mobile: "#
|
|
206
|
-
readonly pig: "#
|
|
199
|
+
readonly brand: "#442484";
|
|
200
|
+
readonly broadband: "#4f6b20";
|
|
201
|
+
readonly cashback: "#7429b5";
|
|
202
|
+
readonly default: "#3f3f3f";
|
|
203
|
+
readonly energy: "#2c6370";
|
|
204
|
+
readonly insurance: "#7f4518";
|
|
205
|
+
readonly mobile: "#8a3260";
|
|
206
|
+
readonly pig: "#7a1f7e";
|
|
207
207
|
};
|
|
208
208
|
readonly surface: {
|
|
209
209
|
readonly brand: {
|
|
210
|
-
readonly default: "#
|
|
210
|
+
readonly default: "#af90de";
|
|
211
211
|
readonly strong: "#26164f";
|
|
212
212
|
readonly subtle: "#442484";
|
|
213
213
|
};
|
|
214
214
|
readonly broadband: {
|
|
215
215
|
readonly default: "#506c21";
|
|
216
|
-
readonly subtle: "#
|
|
216
|
+
readonly subtle: "#4f6b20";
|
|
217
217
|
};
|
|
218
218
|
readonly cashback: {
|
|
219
219
|
readonly default: "#8b2bc9";
|
|
220
|
-
readonly subtle: "#
|
|
220
|
+
readonly subtle: "#7429b5";
|
|
221
221
|
};
|
|
222
222
|
readonly energy: {
|
|
223
223
|
readonly default: "#326e7a";
|
|
224
|
-
readonly subtle: "#
|
|
224
|
+
readonly subtle: "#2c6370";
|
|
225
225
|
};
|
|
226
226
|
readonly highlight: {
|
|
227
227
|
readonly default: "#ffb921";
|
|
228
|
-
readonly subtle: "#
|
|
228
|
+
readonly subtle: "#82692b";
|
|
229
229
|
};
|
|
230
230
|
readonly insurance: {
|
|
231
231
|
readonly default: "#9b4c0e";
|
|
232
|
-
readonly subtle: "#
|
|
232
|
+
readonly subtle: "#7f4518";
|
|
233
233
|
};
|
|
234
234
|
readonly mobile: {
|
|
235
235
|
readonly default: "#a7266d";
|
|
236
|
-
readonly subtle: "#
|
|
236
|
+
readonly subtle: "#8a3260";
|
|
237
237
|
};
|
|
238
238
|
readonly neutral: {
|
|
239
|
-
readonly strong: "#
|
|
239
|
+
readonly strong: "#2f2d2d";
|
|
240
240
|
readonly subtle: "#191917";
|
|
241
241
|
};
|
|
242
242
|
readonly pig: {
|
|
243
243
|
readonly default: "#8f358f";
|
|
244
|
-
readonly subtle: "#
|
|
244
|
+
readonly subtle: "#7a1f7e";
|
|
245
245
|
};
|
|
246
246
|
};
|
|
247
247
|
readonly text: {
|
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export default {
|
|
5
5
|
background: {
|
|
6
|
-
brand: '#
|
|
6
|
+
brand: '#442484',
|
|
7
7
|
loading: '#30302c',
|
|
8
8
|
primary: '#191917',
|
|
9
|
-
secondary: '#
|
|
9
|
+
secondary: '#2f2d2d',
|
|
10
10
|
},
|
|
11
11
|
border: {
|
|
12
|
-
strong: '#
|
|
13
|
-
subtle: '#
|
|
12
|
+
strong: '#888888',
|
|
13
|
+
subtle: '#5b5b5b',
|
|
14
14
|
},
|
|
15
15
|
feedback: {
|
|
16
16
|
danger: {
|
|
17
|
-
border: '#
|
|
17
|
+
border: '#f4412a',
|
|
18
18
|
foreground: {
|
|
19
|
-
default: '#
|
|
19
|
+
default: '#ffffff',
|
|
20
20
|
subtle: '#ff7964',
|
|
21
21
|
},
|
|
22
22
|
surface: {
|
|
23
|
-
default: '#
|
|
24
|
-
subtle: '#
|
|
23
|
+
default: '#de2612',
|
|
24
|
+
subtle: '#6b1f1a',
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
functional: {
|
|
@@ -36,36 +36,36 @@ export default {
|
|
|
36
36
|
},
|
|
37
37
|
},
|
|
38
38
|
info: {
|
|
39
|
-
border: '#
|
|
39
|
+
border: '#2786f1',
|
|
40
40
|
foreground: {
|
|
41
|
-
default: '#
|
|
41
|
+
default: '#ffffff',
|
|
42
42
|
subtle: '#6bb0ff',
|
|
43
43
|
},
|
|
44
44
|
surface: {
|
|
45
|
-
default: '#
|
|
46
|
-
subtle: '#
|
|
45
|
+
default: '#1c6cd4',
|
|
46
|
+
subtle: '#0b3375',
|
|
47
47
|
},
|
|
48
48
|
},
|
|
49
49
|
positive: {
|
|
50
|
-
border: '#
|
|
50
|
+
border: '#19a660',
|
|
51
51
|
foreground: {
|
|
52
|
-
default: '#
|
|
52
|
+
default: '#ffffff',
|
|
53
53
|
subtle: '#58ca93',
|
|
54
54
|
},
|
|
55
55
|
surface: {
|
|
56
|
-
default: '#
|
|
57
|
-
subtle: '#
|
|
56
|
+
default: '#0f834a',
|
|
57
|
+
subtle: '#074b2a',
|
|
58
58
|
},
|
|
59
59
|
},
|
|
60
60
|
warning: {
|
|
61
|
-
border: '#
|
|
61
|
+
border: '#f56e00',
|
|
62
62
|
foreground: {
|
|
63
|
-
default: '#
|
|
63
|
+
default: '#ffffff',
|
|
64
64
|
subtle: '#ff9639',
|
|
65
65
|
},
|
|
66
66
|
surface: {
|
|
67
|
-
default: '#
|
|
68
|
-
subtle: '#
|
|
67
|
+
default: '#cf5d00',
|
|
68
|
+
subtle: '#893900',
|
|
69
69
|
},
|
|
70
70
|
},
|
|
71
71
|
},
|
|
@@ -108,9 +108,9 @@ export default {
|
|
|
108
108
|
},
|
|
109
109
|
surface: {
|
|
110
110
|
strong: {
|
|
111
|
-
active: '#
|
|
112
|
-
default: '#
|
|
113
|
-
hover: '#
|
|
111
|
+
active: '#ddd5eb',
|
|
112
|
+
default: '#af90de',
|
|
113
|
+
hover: '#c6b5e2',
|
|
114
114
|
},
|
|
115
115
|
},
|
|
116
116
|
},
|
|
@@ -196,52 +196,52 @@ export default {
|
|
|
196
196
|
disabled: 50,
|
|
197
197
|
},
|
|
198
198
|
shadow: {
|
|
199
|
-
brand: '#
|
|
200
|
-
broadband: '#
|
|
201
|
-
cashback: '#
|
|
202
|
-
default: '#
|
|
203
|
-
energy: '#
|
|
204
|
-
insurance: '#
|
|
205
|
-
mobile: '#
|
|
206
|
-
pig: '#
|
|
199
|
+
brand: '#442484',
|
|
200
|
+
broadband: '#4f6b20',
|
|
201
|
+
cashback: '#7429b5',
|
|
202
|
+
default: '#3f3f3f',
|
|
203
|
+
energy: '#2c6370',
|
|
204
|
+
insurance: '#7f4518',
|
|
205
|
+
mobile: '#8a3260',
|
|
206
|
+
pig: '#7a1f7e',
|
|
207
207
|
},
|
|
208
208
|
surface: {
|
|
209
209
|
brand: {
|
|
210
|
-
default: '#
|
|
210
|
+
default: '#af90de',
|
|
211
211
|
strong: '#26164f',
|
|
212
212
|
subtle: '#442484',
|
|
213
213
|
},
|
|
214
214
|
broadband: {
|
|
215
215
|
default: '#506c21',
|
|
216
|
-
subtle: '#
|
|
216
|
+
subtle: '#4f6b20',
|
|
217
217
|
},
|
|
218
218
|
cashback: {
|
|
219
219
|
default: '#8b2bc9',
|
|
220
|
-
subtle: '#
|
|
220
|
+
subtle: '#7429b5',
|
|
221
221
|
},
|
|
222
222
|
energy: {
|
|
223
223
|
default: '#326e7a',
|
|
224
|
-
subtle: '#
|
|
224
|
+
subtle: '#2c6370',
|
|
225
225
|
},
|
|
226
226
|
highlight: {
|
|
227
227
|
default: '#ffb921',
|
|
228
|
-
subtle: '#
|
|
228
|
+
subtle: '#82692b',
|
|
229
229
|
},
|
|
230
230
|
insurance: {
|
|
231
231
|
default: '#9b4c0e',
|
|
232
|
-
subtle: '#
|
|
232
|
+
subtle: '#7f4518',
|
|
233
233
|
},
|
|
234
234
|
mobile: {
|
|
235
235
|
default: '#a7266d',
|
|
236
|
-
subtle: '#
|
|
236
|
+
subtle: '#8a3260',
|
|
237
237
|
},
|
|
238
238
|
neutral: {
|
|
239
|
-
strong: '#
|
|
239
|
+
strong: '#2f2d2d',
|
|
240
240
|
subtle: '#191917',
|
|
241
241
|
},
|
|
242
242
|
pig: {
|
|
243
243
|
default: '#8f358f',
|
|
244
|
-
subtle: '#
|
|
244
|
+
subtle: '#7a1f7e',
|
|
245
245
|
},
|
|
246
246
|
},
|
|
247
247
|
text: {
|