@utilitywarehouse/hearth-react-native 0.4.0 → 0.4.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 (85) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/CHANGELOG.md +6 -0
  4. package/build/core/themes.d.ts +482 -0
  5. package/build/core/themes.js +31 -0
  6. package/build/legacyTokens/common/brand.d.ts +16 -0
  7. package/build/legacyTokens/common/brand.js +17 -0
  8. package/build/legacyTokens/common/index.d.ts +8 -0
  9. package/build/legacyTokens/common/index.js +9 -0
  10. package/build/legacyTokens/common/service.d.ts +20 -0
  11. package/build/legacyTokens/common/service.js +21 -0
  12. package/build/legacyTokens/dark/apple.d.ts +28 -0
  13. package/build/legacyTokens/dark/apple.js +29 -0
  14. package/build/legacyTokens/dark/cyan.d.ts +48 -0
  15. package/build/legacyTokens/dark/cyan.js +49 -0
  16. package/build/legacyTokens/dark/gold.d.ts +44 -0
  17. package/build/legacyTokens/dark/gold.js +45 -0
  18. package/build/legacyTokens/dark/grape.d.ts +28 -0
  19. package/build/legacyTokens/dark/grape.js +29 -0
  20. package/build/legacyTokens/dark/green.d.ts +40 -0
  21. package/build/legacyTokens/dark/green.js +41 -0
  22. package/build/legacyTokens/dark/grey.d.ts +60 -0
  23. package/build/legacyTokens/dark/grey.js +61 -0
  24. package/build/legacyTokens/dark/index.d.ts +40 -0
  25. package/build/legacyTokens/dark/index.js +41 -0
  26. package/build/legacyTokens/dark/pink.d.ts +28 -0
  27. package/build/legacyTokens/dark/pink.js +29 -0
  28. package/build/legacyTokens/dark/purple.d.ts +48 -0
  29. package/build/legacyTokens/dark/purple.js +49 -0
  30. package/build/legacyTokens/dark/red.d.ts +40 -0
  31. package/build/legacyTokens/dark/red.js +41 -0
  32. package/build/legacyTokens/dark/rose.d.ts +28 -0
  33. package/build/legacyTokens/dark/rose.js +29 -0
  34. package/build/legacyTokens/index.d.ts +12 -0
  35. package/build/legacyTokens/index.js +13 -0
  36. package/build/legacyTokens/light/apple.d.ts +28 -0
  37. package/build/legacyTokens/light/apple.js +29 -0
  38. package/build/legacyTokens/light/cyan.d.ts +48 -0
  39. package/build/legacyTokens/light/cyan.js +49 -0
  40. package/build/legacyTokens/light/gold.d.ts +44 -0
  41. package/build/legacyTokens/light/gold.js +45 -0
  42. package/build/legacyTokens/light/grape.d.ts +28 -0
  43. package/build/legacyTokens/light/grape.js +29 -0
  44. package/build/legacyTokens/light/green.d.ts +40 -0
  45. package/build/legacyTokens/light/green.js +41 -0
  46. package/build/legacyTokens/light/grey.d.ts +60 -0
  47. package/build/legacyTokens/light/grey.js +61 -0
  48. package/build/legacyTokens/light/index.d.ts +40 -0
  49. package/build/legacyTokens/light/index.js +41 -0
  50. package/build/legacyTokens/light/pink.d.ts +28 -0
  51. package/build/legacyTokens/light/pink.js +29 -0
  52. package/build/legacyTokens/light/purple.d.ts +48 -0
  53. package/build/legacyTokens/light/purple.js +49 -0
  54. package/build/legacyTokens/light/red.d.ts +40 -0
  55. package/build/legacyTokens/light/red.js +41 -0
  56. package/build/legacyTokens/light/rose.d.ts +32 -0
  57. package/build/legacyTokens/light/rose.js +33 -0
  58. package/package.json +2 -2
  59. package/src/core/themes.ts +31 -0
  60. package/src/legacyTokens/common/brand.ts +18 -0
  61. package/src/legacyTokens/common/index.ts +10 -0
  62. package/src/legacyTokens/common/service.ts +22 -0
  63. package/src/legacyTokens/dark/apple.ts +30 -0
  64. package/src/legacyTokens/dark/cyan.ts +50 -0
  65. package/src/legacyTokens/dark/gold.ts +46 -0
  66. package/src/legacyTokens/dark/grape.ts +30 -0
  67. package/src/legacyTokens/dark/green.ts +42 -0
  68. package/src/legacyTokens/dark/grey.ts +62 -0
  69. package/src/legacyTokens/dark/index.ts +42 -0
  70. package/src/legacyTokens/dark/pink.ts +30 -0
  71. package/src/legacyTokens/dark/purple.ts +50 -0
  72. package/src/legacyTokens/dark/red.ts +42 -0
  73. package/src/legacyTokens/dark/rose.ts +30 -0
  74. package/src/legacyTokens/index.ts +14 -0
  75. package/src/legacyTokens/light/apple.ts +30 -0
  76. package/src/legacyTokens/light/cyan.ts +50 -0
  77. package/src/legacyTokens/light/gold.ts +46 -0
  78. package/src/legacyTokens/light/grape.ts +30 -0
  79. package/src/legacyTokens/light/green.ts +42 -0
  80. package/src/legacyTokens/light/grey.ts +62 -0
  81. package/src/legacyTokens/light/index.ts +42 -0
  82. package/src/legacyTokens/light/pink.ts +30 -0
  83. package/src/legacyTokens/light/purple.ts +50 -0
  84. package/src/legacyTokens/light/red.ts +42 -0
  85. package/src/legacyTokens/light/rose.ts +34 -0
@@ -0,0 +1,42 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const green50 = '#eefcf3';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const green100 = '#e0f5e8';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const green200 = '#bdead0';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const green300 = '#a3e1bf';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const green400 = '#2fb66d';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const green500 = '#1c874d';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const green600 = '#297f50';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export const green700 = '#21693f';
35
+ /**
36
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
37
+ */
38
+ export const green800 = '#0a522c';
39
+ /**
40
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
41
+ */
42
+ export const green900 = '#003d1e';
@@ -0,0 +1,62 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const grey25 = '#fafafa';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const grey50 = '#f5f5f5';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const grey75 = '#f0f0f0';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const grey100 = '#e3e3e3';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const grey150 = '#d8d8d8';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const grey175 = '#cccccc';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const grey200 = '#c1c1c1';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export const grey300 = '#b8b8b8';
35
+ /**
36
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
37
+ */
38
+ export const grey400 = '#a0a0a0';
39
+ /**
40
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
41
+ */
42
+ export const grey500 = '#888888';
43
+ /**
44
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
45
+ */
46
+ export const grey600 = '#707070';
47
+ /**
48
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
49
+ */
50
+ export const grey700 = '#585858';
51
+ /**
52
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
53
+ */
54
+ export const grey800 = '#414141';
55
+ /**
56
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
57
+ */
58
+ export const grey900 = '#242424';
59
+ /**
60
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
61
+ */
62
+ export const grey1000 = '#121212';
@@ -0,0 +1,42 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export * from './red';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export * from './pink';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export * from './grey';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export * from './apple';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export * from './cyan';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export * from './gold';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export * from './green';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export * from './grape';
35
+ /**
36
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
37
+ */
38
+ export * from './rose';
39
+ /**
40
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
41
+ */
42
+ export * from './purple';
@@ -0,0 +1,30 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const pink50 = '#fde6fb';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const pink100 = '#fccff9';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const pink200 = '#f9bdfa';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const pink300 = '#f495f9';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const pink500 = '#c933d1';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const pink700 = '#8f248f';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const pink900 = '#48104b';
@@ -0,0 +1,50 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const purple50 = '#f8f5fe';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const purple75 = '#f1ebfe';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const purple100 = '#e5d7fe';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const purple200 = '#cfadff';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const purple300 = '#c08dfc';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const purple400 = '#b46ef7';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const purple500 = '#9d38f0';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export const purple600 = '#8f23e7';
35
+ /**
36
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
37
+ */
38
+ export const purple700 = '#7415c1';
39
+ /**
40
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
41
+ */
42
+ export const purple800 = '#550091';
43
+ /**
44
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
45
+ */
46
+ export const purple900 = '#48007a';
47
+ /**
48
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
49
+ */
50
+ export const purple1000 = '#35005c';
@@ -0,0 +1,42 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const red50 = '#ffebeb';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const red100 = '#ffd8d9';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const red200 = '#ffb3b4';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const red300 = '#f58e92';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const red400 = '#ec515d';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const red500 = '#df2a38';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const red600 = '#c31d2a';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export const red700 = '#891e27';
35
+ /**
36
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
37
+ */
38
+ export const red800 = '#611a20';
39
+ /**
40
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
41
+ */
42
+ export const red900 = '#3b1216';
@@ -0,0 +1,34 @@
1
+ // HEY, DON'T EDIT THIS FILE DIRECTLY, IT'S BEEN MAGICALLY GENERATED.
2
+
3
+ /**
4
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
5
+ */
6
+ export const rose50 = '#fde2ec';
7
+ /**
8
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
9
+ */
10
+ export const rose200 = '#f9b6d0';
11
+ /**
12
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
13
+ */
14
+ export const rose300 = '#f586b1';
15
+ /**
16
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
17
+ */
18
+ export const rose400 = '#f25192';
19
+ /**
20
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
21
+ */
22
+ export const rose500 = '#ed176c';
23
+ /**
24
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
25
+ */
26
+ export const rose700 = '#c8185c';
27
+ /**
28
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
29
+ */
30
+ export const rose800 = '#9f1446';
31
+ /**
32
+ * @deprecated This will be removed in the next major version. This is kept for backward compatibility.
33
+ */
34
+ export const rose900 = '#4a1125';