@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.
Files changed (63) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-lint.log +13 -13
  3. package/CHANGELOG.md +16 -0
  4. package/build/components/Table/TableHeaderCell.js +10 -1
  5. package/build/core/themes.d.ts +92 -88
  6. package/build/tokens/color.d.ts +82 -80
  7. package/build/tokens/color.js +41 -40
  8. package/build/tokens/components/dark/alert.d.ts +6 -6
  9. package/build/tokens/components/dark/alert.js +6 -6
  10. package/build/tokens/components/dark/bottom-navigation.d.ts +2 -2
  11. package/build/tokens/components/dark/bottom-navigation.js +2 -2
  12. package/build/tokens/components/dark/checkbox.d.ts +1 -1
  13. package/build/tokens/components/dark/checkbox.js +1 -1
  14. package/build/tokens/components/dark/icon-button.d.ts +3 -3
  15. package/build/tokens/components/dark/icon-button.js +3 -3
  16. package/build/tokens/components/dark/inline-link.d.ts +1 -1
  17. package/build/tokens/components/dark/inline-link.js +1 -1
  18. package/build/tokens/components/dark/link.d.ts +3 -3
  19. package/build/tokens/components/dark/link.js +3 -3
  20. package/build/tokens/components/dark/navigation.d.ts +2 -2
  21. package/build/tokens/components/dark/navigation.js +2 -2
  22. package/build/tokens/components/dark/parts.d.ts +2 -2
  23. package/build/tokens/components/dark/parts.js +2 -2
  24. package/build/tokens/components/dark/progress-bar.d.ts +3 -3
  25. package/build/tokens/components/dark/progress-bar.js +3 -3
  26. package/build/tokens/components/dark/progress-stepper.d.ts +1 -1
  27. package/build/tokens/components/dark/progress-stepper.js +1 -1
  28. package/build/tokens/components/dark/spinner.d.ts +1 -1
  29. package/build/tokens/components/dark/spinner.js +1 -1
  30. package/build/tokens/components/dark/table.d.ts +2 -0
  31. package/build/tokens/components/dark/table.js +2 -0
  32. package/build/tokens/components/dark/time-picker.d.ts +1 -0
  33. package/build/tokens/components/dark/time-picker.js +1 -0
  34. package/build/tokens/components/light/parts.d.ts +3 -3
  35. package/build/tokens/components/light/parts.js +3 -3
  36. package/build/tokens/components/light/table.d.ts +2 -0
  37. package/build/tokens/components/light/table.js +2 -0
  38. package/build/tokens/components/light/time-picker.d.ts +1 -0
  39. package/build/tokens/components/light/time-picker.js +1 -0
  40. package/build/tokens/semantic-dark.d.ts +40 -40
  41. package/build/tokens/semantic-dark.js +40 -40
  42. package/docs/changelog.mdx +149 -0
  43. package/package.json +3 -3
  44. package/src/components/Table/TableHeaderCell.tsx +10 -1
  45. package/src/tokens/color.ts +41 -40
  46. package/src/tokens/components/dark/alert.ts +6 -6
  47. package/src/tokens/components/dark/bottom-navigation.ts +2 -2
  48. package/src/tokens/components/dark/checkbox.ts +1 -1
  49. package/src/tokens/components/dark/icon-button.ts +3 -3
  50. package/src/tokens/components/dark/inline-link.ts +1 -1
  51. package/src/tokens/components/dark/link.ts +3 -3
  52. package/src/tokens/components/dark/navigation.ts +2 -2
  53. package/src/tokens/components/dark/parts.ts +2 -2
  54. package/src/tokens/components/dark/progress-bar.ts +3 -3
  55. package/src/tokens/components/dark/progress-stepper.ts +1 -1
  56. package/src/tokens/components/dark/spinner.ts +1 -1
  57. package/src/tokens/components/dark/table.ts +2 -0
  58. package/src/tokens/components/dark/time-picker.ts +1 -0
  59. package/src/tokens/components/light/parts.ts +3 -3
  60. package/src/tokens/components/light/table.ts +2 -0
  61. package/src/tokens/components/light/time-picker.ts +1 -0
  62. package/src/tokens/semantic-dark.ts +40 -40
  63. package/vercel.json +0 -21
@@ -3,9 +3,9 @@
3
3
  */
4
4
  declare const _default: {
5
5
  readonly link: {
6
- readonly color: "#101010";
7
- readonly colorActive: "#3f3f3f";
8
- readonly colorHover: "#3a3837";
6
+ readonly color: "#ebebeb";
7
+ readonly colorActive: "#b2afae";
8
+ readonly colorHover: "#d3d3d3";
9
9
  };
10
10
  readonly color: "#ebebeb";
11
11
  readonly colorActive: "#b2afae";
@@ -3,9 +3,9 @@
3
3
  */
4
4
  export default {
5
5
  link: {
6
- color: '#101010',
7
- colorActive: '#3f3f3f',
8
- colorHover: '#3a3837',
6
+ color: '#ebebeb',
7
+ colorActive: '#b2afae',
8
+ colorHover: '#d3d3d3',
9
9
  },
10
10
  color: '#ebebeb',
11
11
  colorActive: '#b2afae',
@@ -6,12 +6,12 @@ declare const _default: {
6
6
  readonly borderRadiusNone: 0;
7
7
  readonly borderRadiusRounded: 4;
8
8
  };
9
- readonly borderBottom: "#5c2ca9";
9
+ readonly borderBottom: "#996cda";
10
10
  readonly borderRadius: 6;
11
11
  readonly desktop: {
12
12
  readonly height: 88;
13
13
  };
14
- readonly dividerBorderColor: "#5c2ca9";
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: '#5c2ca9',
9
+ borderBottom: '#996cda',
10
10
  borderRadius: 6,
11
11
  desktop: {
12
12
  height: 88,
13
13
  },
14
- dividerBorderColor: '#5c2ca9',
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: "#000000";
30
- readonly notch: "#000000";
29
+ readonly foregroundColorInverted: "#ffffff";
30
+ readonly notch: "#101010";
31
31
  };
32
32
  };
33
33
  export default _default;
@@ -26,7 +26,7 @@ export default {
26
26
  },
27
27
  statusBar: {
28
28
  foregroundColor: '#ffffff',
29
- foregroundColorInverted: '#000000',
30
- notch: '#000000',
29
+ foregroundColorInverted: '#ffffff',
30
+ notch: '#101010',
31
31
  },
32
32
  };
@@ -33,9 +33,9 @@ declare const _default: {
33
33
  };
34
34
  };
35
35
  readonly progress: {
36
- readonly dangerColor: "#ff634a";
37
- readonly defaultColor: "#c6b5e2";
38
- readonly successColor: "#36bf7d";
36
+ readonly dangerColor: "#f4412a";
37
+ readonly defaultColor: "#996cda";
38
+ readonly successColor: "#19a660";
39
39
  };
40
40
  };
41
41
  export default _default;
@@ -33,8 +33,8 @@ export default {
33
33
  },
34
34
  },
35
35
  progress: {
36
- dangerColor: '#ff634a',
37
- defaultColor: '#c6b5e2',
38
- successColor: '#36bf7d',
36
+ dangerColor: '#f4412a',
37
+ defaultColor: '#996cda',
38
+ successColor: '#19a660',
39
39
  },
40
40
  };
@@ -4,7 +4,7 @@
4
4
  declare const _default: {
5
5
  readonly bar: {
6
6
  readonly complete: {
7
- readonly backgroundColor: "#7a42c8";
7
+ readonly backgroundColor: "#996cda";
8
8
  };
9
9
  readonly height: 2;
10
10
  };
@@ -4,7 +4,7 @@
4
4
  export default {
5
5
  bar: {
6
6
  complete: {
7
- backgroundColor: '#7a42c8',
7
+ backgroundColor: '#996cda',
8
8
  },
9
9
  height: 2,
10
10
  },
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  declare const _default: {
5
- readonly defaultFill: "#af90de";
5
+ readonly defaultFill: "#996cda";
6
6
  readonly lg: {
7
7
  readonly size: 40;
8
8
  readonly strokeWidth: 3;
@@ -2,7 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  export default {
5
- defaultFill: '#af90de',
5
+ defaultFill: '#996cda',
6
6
  lg: {
7
7
  size: 40,
8
8
  strokeWidth: 3,
@@ -13,6 +13,8 @@ declare const _default: {
13
13
  };
14
14
  readonly headerCell: {
15
15
  readonly borderWidth: 2;
16
+ readonly foregoundColor: "#ebebeb";
17
+ readonly foregoundColorInverted: "#101010";
16
18
  readonly gap: 8;
17
19
  readonly height: 56;
18
20
  readonly paddingHorizontal: 12;
@@ -13,6 +13,8 @@ export default {
13
13
  },
14
14
  headerCell: {
15
15
  borderWidth: 2,
16
+ foregoundColor: '#ebebeb',
17
+ foregoundColorInverted: '#101010',
16
18
  gap: 8,
17
19
  height: 56,
18
20
  paddingHorizontal: 12,
@@ -2,6 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  declare const _default: {
5
+ readonly fade: "#2f2d2d00";
5
6
  readonly gap: 6;
6
7
  readonly gapContainer: 4;
7
8
  readonly minWidth: 288;
@@ -2,6 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  export default {
5
+ fade: '#2f2d2d00',
5
6
  gap: 6,
6
7
  gapContainer: 4,
7
8
  minWidth: 288,
@@ -3,7 +3,7 @@
3
3
  */
4
4
  declare const _default: {
5
5
  readonly homeIndicator: {
6
- readonly foregroundColor: "#000000";
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: "#000000";
28
+ readonly foregroundColor: "#101010";
29
29
  readonly foregroundColorInverted: "#ffffff";
30
- readonly notch: "#000000";
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: '#000000',
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: '#000000',
28
+ foregroundColor: '#101010',
29
29
  foregroundColorInverted: '#ffffff',
30
- notch: '#000000',
30
+ notch: '#101010',
31
31
  },
32
32
  };
@@ -13,6 +13,8 @@ declare const _default: {
13
13
  };
14
14
  readonly headerCell: {
15
15
  readonly borderWidth: 2;
16
+ readonly foregoundColor: "#101010";
17
+ readonly foregoundColorInverted: "#ffffff";
16
18
  readonly gap: 8;
17
19
  readonly height: 56;
18
20
  readonly paddingHorizontal: 12;
@@ -13,6 +13,8 @@ export default {
13
13
  },
14
14
  headerCell: {
15
15
  borderWidth: 2,
16
+ foregoundColor: '#101010',
17
+ foregoundColorInverted: '#ffffff',
16
18
  gap: 8,
17
19
  height: 56,
18
20
  paddingHorizontal: 12,
@@ -2,6 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  declare const _default: {
5
+ readonly fade: "#ffffff00";
5
6
  readonly gap: 6;
6
7
  readonly gapContainer: 4;
7
8
  readonly minWidth: 288;
@@ -2,6 +2,7 @@
2
2
  * Do not edit directly, this file was auto-generated.
3
3
  */
4
4
  export default {
5
+ fade: '#ffffff00',
5
6
  gap: 6,
6
7
  gapContainer: 4,
7
8
  minWidth: 288,
@@ -3,25 +3,25 @@
3
3
  */
4
4
  declare const _default: {
5
5
  readonly background: {
6
- readonly brand: "#7a42c8";
6
+ readonly brand: "#442484";
7
7
  readonly loading: "#30302c";
8
8
  readonly primary: "#191917";
9
- readonly secondary: "#232323";
9
+ readonly secondary: "#2f2d2d";
10
10
  };
11
11
  readonly border: {
12
- readonly strong: "#ebebeb";
13
- readonly subtle: "#4c473d";
12
+ readonly strong: "#888888";
13
+ readonly subtle: "#5b5b5b";
14
14
  };
15
15
  readonly feedback: {
16
16
  readonly danger: {
17
- readonly border: "#ff7964";
17
+ readonly border: "#f4412a";
18
18
  readonly foreground: {
19
- readonly default: "#101010";
19
+ readonly default: "#ffffff";
20
20
  readonly subtle: "#ff7964";
21
21
  };
22
22
  readonly surface: {
23
- readonly default: "#ff634a";
24
- readonly subtle: "#ffa89d";
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: "#6bb0ff";
39
+ readonly border: "#2786f1";
40
40
  readonly foreground: {
41
- readonly default: "#101010";
41
+ readonly default: "#ffffff";
42
42
  readonly subtle: "#6bb0ff";
43
43
  };
44
44
  readonly surface: {
45
- readonly default: "#6bb0ff";
46
- readonly subtle: "#bcddff";
45
+ readonly default: "#1c6cd4";
46
+ readonly subtle: "#0b3375";
47
47
  };
48
48
  };
49
49
  readonly positive: {
50
- readonly border: "#58ca93";
50
+ readonly border: "#19a660";
51
51
  readonly foreground: {
52
- readonly default: "#101010";
52
+ readonly default: "#ffffff";
53
53
  readonly subtle: "#58ca93";
54
54
  };
55
55
  readonly surface: {
56
- readonly default: "#36bf7d";
57
- readonly subtle: "#a2e2c3";
56
+ readonly default: "#0f834a";
57
+ readonly subtle: "#074b2a";
58
58
  };
59
59
  };
60
60
  readonly warning: {
61
- readonly border: "#ff9639";
61
+ readonly border: "#f56e00";
62
62
  readonly foreground: {
63
- readonly default: "#101010";
63
+ readonly default: "#ffffff";
64
64
  readonly subtle: "#ff9639";
65
65
  };
66
66
  readonly surface: {
67
- readonly default: "#ff8010";
68
- readonly subtle: "#ffcca8";
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: "#c6b5e2";
112
- readonly default: "#996cda";
113
- readonly hover: "#af90de";
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: "#7a42c8";
200
- readonly broadband: "#506c21";
201
- readonly cashback: "#8b2bc9";
202
- readonly default: "#f7f7f7";
203
- readonly energy: "#326e7a";
204
- readonly insurance: "#9b4c0e";
205
- readonly mobile: "#a7266d";
206
- readonly pig: "#8f358f";
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: "#996cda";
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: "#35421c";
216
+ readonly subtle: "#4f6b20";
217
217
  };
218
218
  readonly cashback: {
219
219
  readonly default: "#8b2bc9";
220
- readonly subtle: "#522270";
220
+ readonly subtle: "#7429b5";
221
221
  };
222
222
  readonly energy: {
223
223
  readonly default: "#326e7a";
224
- readonly subtle: "#254348";
224
+ readonly subtle: "#2c6370";
225
225
  };
226
226
  readonly highlight: {
227
227
  readonly default: "#ffb921";
228
- readonly subtle: "#756230";
228
+ readonly subtle: "#82692b";
229
229
  };
230
230
  readonly insurance: {
231
231
  readonly default: "#9b4c0e";
232
- readonly subtle: "#5a3213";
232
+ readonly subtle: "#7f4518";
233
233
  };
234
234
  readonly mobile: {
235
235
  readonly default: "#a7266d";
236
- readonly subtle: "#601f42";
236
+ readonly subtle: "#8a3260";
237
237
  };
238
238
  readonly neutral: {
239
- readonly strong: "#232323";
239
+ readonly strong: "#2f2d2d";
240
240
  readonly subtle: "#191917";
241
241
  };
242
242
  readonly pig: {
243
243
  readonly default: "#8f358f";
244
- readonly subtle: "#5d2167";
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: '#7a42c8',
6
+ brand: '#442484',
7
7
  loading: '#30302c',
8
8
  primary: '#191917',
9
- secondary: '#232323',
9
+ secondary: '#2f2d2d',
10
10
  },
11
11
  border: {
12
- strong: '#ebebeb',
13
- subtle: '#4c473d',
12
+ strong: '#888888',
13
+ subtle: '#5b5b5b',
14
14
  },
15
15
  feedback: {
16
16
  danger: {
17
- border: '#ff7964',
17
+ border: '#f4412a',
18
18
  foreground: {
19
- default: '#101010',
19
+ default: '#ffffff',
20
20
  subtle: '#ff7964',
21
21
  },
22
22
  surface: {
23
- default: '#ff634a',
24
- subtle: '#ffa89d',
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: '#6bb0ff',
39
+ border: '#2786f1',
40
40
  foreground: {
41
- default: '#101010',
41
+ default: '#ffffff',
42
42
  subtle: '#6bb0ff',
43
43
  },
44
44
  surface: {
45
- default: '#6bb0ff',
46
- subtle: '#bcddff',
45
+ default: '#1c6cd4',
46
+ subtle: '#0b3375',
47
47
  },
48
48
  },
49
49
  positive: {
50
- border: '#58ca93',
50
+ border: '#19a660',
51
51
  foreground: {
52
- default: '#101010',
52
+ default: '#ffffff',
53
53
  subtle: '#58ca93',
54
54
  },
55
55
  surface: {
56
- default: '#36bf7d',
57
- subtle: '#a2e2c3',
56
+ default: '#0f834a',
57
+ subtle: '#074b2a',
58
58
  },
59
59
  },
60
60
  warning: {
61
- border: '#ff9639',
61
+ border: '#f56e00',
62
62
  foreground: {
63
- default: '#101010',
63
+ default: '#ffffff',
64
64
  subtle: '#ff9639',
65
65
  },
66
66
  surface: {
67
- default: '#ff8010',
68
- subtle: '#ffcca8',
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: '#c6b5e2',
112
- default: '#996cda',
113
- hover: '#af90de',
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: '#7a42c8',
200
- broadband: '#506c21',
201
- cashback: '#8b2bc9',
202
- default: '#f7f7f7',
203
- energy: '#326e7a',
204
- insurance: '#9b4c0e',
205
- mobile: '#a7266d',
206
- pig: '#8f358f',
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: '#996cda',
210
+ default: '#af90de',
211
211
  strong: '#26164f',
212
212
  subtle: '#442484',
213
213
  },
214
214
  broadband: {
215
215
  default: '#506c21',
216
- subtle: '#35421c',
216
+ subtle: '#4f6b20',
217
217
  },
218
218
  cashback: {
219
219
  default: '#8b2bc9',
220
- subtle: '#522270',
220
+ subtle: '#7429b5',
221
221
  },
222
222
  energy: {
223
223
  default: '#326e7a',
224
- subtle: '#254348',
224
+ subtle: '#2c6370',
225
225
  },
226
226
  highlight: {
227
227
  default: '#ffb921',
228
- subtle: '#756230',
228
+ subtle: '#82692b',
229
229
  },
230
230
  insurance: {
231
231
  default: '#9b4c0e',
232
- subtle: '#5a3213',
232
+ subtle: '#7f4518',
233
233
  },
234
234
  mobile: {
235
235
  default: '#a7266d',
236
- subtle: '#601f42',
236
+ subtle: '#8a3260',
237
237
  },
238
238
  neutral: {
239
- strong: '#232323',
239
+ strong: '#2f2d2d',
240
240
  subtle: '#191917',
241
241
  },
242
242
  pig: {
243
243
  default: '#8f358f',
244
- subtle: '#5d2167',
244
+ subtle: '#7a1f7e',
245
245
  },
246
246
  },
247
247
  text: {