@atlaskit/tokens 0.7.3 → 0.8.2

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 (65) hide show
  1. package/CHANGELOG.md +89 -0
  2. package/css/atlassian-dark.css +5 -3
  3. package/css/atlassian-light.css +5 -3
  4. package/dist/cjs/artifacts/rename-mapping.js +89 -89
  5. package/dist/cjs/artifacts/token-default-values.js +5 -3
  6. package/dist/cjs/artifacts/token-names.js +2 -0
  7. package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +222 -184
  8. package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +222 -184
  9. package/dist/cjs/constants.js +18 -0
  10. package/dist/cjs/entry-points/token-ids.js +25 -0
  11. package/dist/cjs/get-token.js +1 -1
  12. package/dist/cjs/token-ids.js +75 -0
  13. package/dist/cjs/tokens/atlassian-dark/color/background.js +3 -3
  14. package/dist/cjs/tokens/atlassian-dark/color/skeleton.js +20 -0
  15. package/dist/cjs/tokens/atlassian-light/color/background.js +3 -3
  16. package/dist/cjs/tokens/atlassian-light/color/skeleton.js +20 -0
  17. package/dist/cjs/tokens/default/color/skeleton.js +28 -0
  18. package/dist/cjs/tokens/default/deprecated/deprecated.js +89 -89
  19. package/dist/cjs/version.json +4 -2
  20. package/dist/es2019/artifacts/rename-mapping.js +89 -89
  21. package/dist/es2019/artifacts/token-default-values.js +5 -3
  22. package/dist/es2019/artifacts/token-names.js +2 -0
  23. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +222 -184
  24. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +222 -184
  25. package/dist/es2019/constants.js +8 -0
  26. package/dist/es2019/entry-points/token-ids.js +1 -0
  27. package/dist/es2019/get-token.js +1 -1
  28. package/dist/es2019/token-ids.js +51 -0
  29. package/dist/es2019/tokens/atlassian-dark/color/background.js +3 -3
  30. package/dist/es2019/tokens/atlassian-dark/color/skeleton.js +13 -0
  31. package/dist/es2019/tokens/atlassian-light/color/background.js +3 -3
  32. package/dist/es2019/tokens/atlassian-light/color/skeleton.js +13 -0
  33. package/dist/es2019/tokens/default/color/skeleton.js +21 -0
  34. package/dist/es2019/tokens/default/deprecated/deprecated.js +89 -89
  35. package/dist/es2019/version.json +4 -2
  36. package/dist/esm/artifacts/rename-mapping.js +89 -89
  37. package/dist/esm/artifacts/token-default-values.js +5 -3
  38. package/dist/esm/artifacts/token-names.js +2 -0
  39. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +222 -184
  40. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +222 -184
  41. package/dist/esm/constants.js +8 -0
  42. package/dist/esm/entry-points/token-ids.js +1 -0
  43. package/dist/esm/get-token.js +1 -1
  44. package/dist/esm/token-ids.js +58 -0
  45. package/dist/esm/tokens/atlassian-dark/color/background.js +3 -3
  46. package/dist/esm/tokens/atlassian-dark/color/skeleton.js +13 -0
  47. package/dist/esm/tokens/atlassian-light/color/background.js +3 -3
  48. package/dist/esm/tokens/atlassian-light/color/skeleton.js +13 -0
  49. package/dist/esm/tokens/default/color/skeleton.js +21 -0
  50. package/dist/esm/tokens/default/deprecated/deprecated.js +89 -89
  51. package/dist/esm/version.json +4 -2
  52. package/dist/types/artifacts/token-default-values.d.ts +5 -3
  53. package/dist/types/artifacts/token-names.d.ts +4 -0
  54. package/dist/types/artifacts/types-internal.d.ts +1 -1
  55. package/dist/types/artifacts/types.d.ts +1 -1
  56. package/dist/types/constants.d.ts +4 -0
  57. package/dist/types/entry-points/token-ids.d.ts +1 -0
  58. package/dist/types/token-ids.d.ts +43 -0
  59. package/dist/types/tokens/atlassian-dark/color/skeleton.d.ts +3 -0
  60. package/dist/types/tokens/atlassian-light/color/skeleton.d.ts +3 -0
  61. package/dist/types/tokens/default/color/skeleton.d.ts +3 -0
  62. package/dist/types/tokens/default/utility/utility.d.ts +10 -10
  63. package/dist/types/types.d.ts +8 -0
  64. package/package.json +5 -2
  65. package/token-ids/package.json +7 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,94 @@
1
1
  # @atlaskit/tokens
2
2
 
3
+ ## 0.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`b170565a618`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b170565a618) - [ux] Update to input token colors: `color.background.input`, `color.background.input.hovered`, `color.background.input.pressed`.
8
+
9
+ ## 0.8.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [`a66253fc6a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a66253fc6a5) - Export token ID utility functions with new entrypoint `@atlaskit/tokens/token-ids`
14
+
15
+ ## 0.8.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [`1fb52fef1a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fb52fef1a8) - [ux] New Skeleton color tokens `color.skeleton.subtle` and `color.skeleton.subtlest`. Use for skeleton loading states
20
+
21
+ ### Patch Changes
22
+
23
+ - [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces usage of deprecated design tokens. No visual or functional changes
24
+ - [`308db322b04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/308db322b04) - The following tokens have been moved from the `deprecated` to `deleted` state in their lifecycles. These tokens will continue to exist, however tooling will begin to error wherever they're used. If you haven't already, please run `yarn eslint --fix` or similar to automate your migration.
25
+
26
+ - `color.background.blanket` => `color.blanket`
27
+ - `color.background.boldBrand.resting` => `color.background.brand.bold`
28
+ - `color.background.boldBrand.hover` => `color.background.brand.bold.hovered`
29
+ - `color.background.boldBrand.pressed` => `color.background.brand.bold.pressed`
30
+ - `color.background.boldDanger.resting` => `color.background.danger.bold`
31
+ - `color.background.boldDanger.hover` => `color.background.danger.bold.hovered`
32
+ - `color.background.boldDanger.pressed` => `color.background.danger.bold.pressed`
33
+ - `color.background.boldDiscovery.resting` => `color.background.discovery.bold`
34
+ - `color.background.boldDiscovery.hover` => `color.background.discovery.bold.hovered`
35
+ - `color.background.boldDiscovery.pressed` => `color.background.discovery.bold.pressed`
36
+ - `color.background.boldNeutral.resting` => `color.background.neutral.bold`
37
+ - `color.background.boldNeutral.hover` => `color.background.neutral.bold.hovered`
38
+ - `color.background.boldNeutral.pressed` => `color.background.neutral.bold.pressed`
39
+ - `color.background.boldSuccess.resting` => `color.background.success.bold`
40
+ - `color.background.boldSuccess.hover` => `color.background.success.bold.hovered`
41
+ - `color.background.boldSuccess.pressed` => `color.background.success.bold.pressed`
42
+ - `color.background.boldWarning.resting` => `color.background.warning.bold`
43
+ - `color.background.boldWarning.hover` => `color.background.warning.bold.hovered`
44
+ - `color.background.boldWarning.pressed` => `color.background.warning.bold.pressed`
45
+ - `color.background.default` => `elevation.surface`
46
+ - `color.background.card` => `elevation.surface.raised`
47
+ - `color.background.overlay` => `elevation.surface.overlay`
48
+ - `color.background.selected.resting` => `color.background.selected`
49
+ - `color.background.selected.hover` => `color.background.selected.hovered`
50
+ - `color.background.subtleBorderedNeutral.resting` => `color.background.input`
51
+ - `color.background.subtleBorderedNeutral.pressed` => `color.background.input.pressed`
52
+ - `color.background.subtleBrand.resting` => `color.background.brand`
53
+ - `color.background.subtleBrand.hover` => `color.background.brand.hovered`
54
+ - `color.background.subtleBrand.pressed` => `color.background.brand.pressed`
55
+ - `color.background.subtleDanger.resting` => `color.background.danger`
56
+ - `color.background.subtleDanger.hover` => `color.background.danger.hovered`
57
+ - `color.background.subtleDanger.pressed` => `color.background.danger.pressed`
58
+ - `color.background.subtleDiscovery.resting` => `color.background.discovery`
59
+ - `color.background.subtleDiscovery.hover` => `color.background.discovery.hovered`
60
+ - `color.background.subtleDiscovery.pressed` => `color.background.discovery.pressed`
61
+ - `color.background.subtleNeutral.resting` => `color.background.neutral`
62
+ - `color.background.subtleNeutral.hover` => `color.background.neutral.hovered`
63
+ - `color.background.subtleNeutral.pressed` => `color.background.neutral.pressed`
64
+ - `color.background.subtleSuccess.resting` => `color.background.success`
65
+ - `color.background.subtleSuccess.hover` => `color.background.success.hovered`
66
+ - `color.background.subtleSuccess.pressed` => `color.background.success.pressed`
67
+ - `color.background.subtleWarning.resting` => `color.background.warning`
68
+ - `color.background.subtleWarning.hover` => `color.background.warning.hovered`
69
+ - `color.background.subtleWarning.pressed` => `color.background.warning.pressed`
70
+ - `color.background.sunken` => `elevation.surface.sunken`
71
+ - `color.background.transparentNeutral.hover` => `color.background.neutral.subtle.hovered`
72
+ - `color.background.transparentNeutral.pressed` => `color.background.neutral.subtle.pressed`
73
+ - `color.text.highEmphasis` => `color.text`
74
+ - `color.text.mediumEmphasis` => `color.text.subtle`
75
+ - `color.text.lowEmphasis` => `color.text.subtlest`
76
+ - `color.text.link.resting` => `color.link`
77
+ - `color.text.link.pressed` => `color.link.pressed`
78
+ - `color.text.onBold` => `color.text.inverse`
79
+ - `color.text.onBoldWarning` => `color.text.inverse.warning`
80
+ - `color.border.focus` => `color.border.focused`
81
+ - `color.border.neutral` => `color.border`
82
+ - `color.iconBorder.brand` => `color.icon.brand` or `color.border.brand`
83
+ - `color.iconBorder.danger` => `color.icon.danger` or `color.border.danger`
84
+ - `color.iconBorder.warning` => `color.icon.warning` or `color.border.warning`
85
+ - `color.iconBorder.success` => `color.icon.success` or `color.border.success`
86
+ - `color.iconBorder.discovery` => `color.icon.discovery` or `color.border.discovery`
87
+ - `color.overlay.hover` => `color.interaction.hovered`
88
+ - `color.overlay.pressed` => `color.interaction.pressed`
89
+ - `color.shadow.card` => `elevation.shadow.raised`
90
+ - `color.shadow.overlay` => `elevation.shadow.overlay`
91
+
3
92
  ## 0.7.3
4
93
 
5
94
  ### Patch Changes
@@ -128,9 +128,9 @@ html[data-theme="dark"] {
128
128
  --ds-background-accent-magenta-bold: #AE4787;
129
129
  --ds-background-disabled: #A1BDD914;
130
130
  --ds-background-inverse: #ffffff33;
131
- --ds-background-input: #BCD6F00A;
132
- --ds-background-input-hovered: #161A1D;
133
- --ds-background-input-pressed: #A1BDD914;
131
+ --ds-background-input: #1D2125;
132
+ --ds-background-input-hovered: #22272B;
133
+ --ds-background-input-pressed: #1D2125;
134
134
  --ds-background-neutral: #A1BDD914;
135
135
  --ds-background-neutral-hovered: #A6C5E229;
136
136
  --ds-background-neutral-pressed: #BFDBF847;
@@ -236,6 +236,8 @@ html[data-theme="dark"] {
236
236
  --ds-interaction-pressed: #00000052;
237
237
  --ds-interaction-inverse-hovered: #ffffff33;
238
238
  --ds-interaction-inverse-pressed: #ffffff5c;
239
+ --ds-skeleton: #A1BDD914;
240
+ --ds-skeleton-subtle: #BCD6F00A;
239
241
  --ds-link: #579DFF;
240
242
  --ds-link-pressed: #85B8FF;
241
243
  --ds-accent-boldBlue: #0C66E4;
@@ -128,9 +128,9 @@
128
128
  --ds-background-accent-magenta-bold: #E774BB;
129
129
  --ds-background-disabled: #091E420F;
130
130
  --ds-background-inverse: #00000029;
131
- --ds-background-input: #091E4208;
132
- --ds-background-input-hovered: #FFFFFF;
133
- --ds-background-input-pressed: #091E420F;
131
+ --ds-background-input: #FFFFFF;
132
+ --ds-background-input-hovered: #F7F8F9;
133
+ --ds-background-input-pressed: #FFFFFF;
134
134
  --ds-background-neutral: #091E420F;
135
135
  --ds-background-neutral-hovered: #091E4224;
136
136
  --ds-background-neutral-pressed: #091E424F;
@@ -236,6 +236,8 @@
236
236
  --ds-interaction-pressed: #ffffff5c;
237
237
  --ds-interaction-inverse-hovered: #00000029;
238
238
  --ds-interaction-inverse-pressed: #00000052;
239
+ --ds-skeleton: #091E420F;
240
+ --ds-skeleton-subtle: #091E4208;
239
241
  --ds-link: #0C66E4;
240
242
  --ds-link-pressed: #0055CC;
241
243
  --ds-accent-boldBlue: #579DFF;
@@ -20,103 +20,103 @@ exports.default = void 0;
20
20
  */
21
21
  var renameMapper = [{
22
22
  "path": "color.text.highEmphasis",
23
- "state": "deprecated",
23
+ "state": "deleted",
24
24
  "replacement": "color.text.[default]"
25
25
  }, {
26
26
  "path": "color.text.link.pressed",
27
- "state": "deprecated",
27
+ "state": "deleted",
28
28
  "replacement": "color.link.pressed"
29
29
  }, {
30
30
  "path": "color.text.link.resting",
31
- "state": "deprecated",
31
+ "state": "deleted",
32
32
  "replacement": "color.link.[default]"
33
33
  }, {
34
34
  "path": "color.text.lowEmphasis",
35
- "state": "deprecated",
35
+ "state": "deleted",
36
36
  "replacement": "color.text.subtlest"
37
37
  }, {
38
38
  "path": "color.text.mediumEmphasis",
39
- "state": "deprecated",
39
+ "state": "deleted",
40
40
  "replacement": "color.text.subtle"
41
41
  }, {
42
42
  "path": "color.text.onBold",
43
- "state": "deprecated",
43
+ "state": "deleted",
44
44
  "replacement": "color.text.inverse"
45
45
  }, {
46
46
  "path": "color.text.onBoldWarning",
47
- "state": "deprecated",
47
+ "state": "deleted",
48
48
  "replacement": "color.text.warning.inverse"
49
49
  }, {
50
50
  "path": "color.border.focus",
51
- "state": "deprecated",
51
+ "state": "deleted",
52
52
  "replacement": "color.border.focused"
53
53
  }, {
54
54
  "path": "color.border.neutral",
55
- "state": "deprecated",
55
+ "state": "deleted",
56
56
  "replacement": "color.border.[default]"
57
57
  }, {
58
58
  "path": "color.background.accent.blue.[default]",
59
- "state": "deprecated",
59
+ "state": "deleted",
60
60
  "replacement": "color.background.accent.blue.subtler"
61
61
  }, {
62
62
  "path": "color.background.accent.blue.bold",
63
- "state": "deprecated",
63
+ "state": "deleted",
64
64
  "replacement": "color.background.accent.blue.subtle"
65
65
  }, {
66
66
  "path": "color.background.accent.red.[default]",
67
- "state": "deprecated",
67
+ "state": "deleted",
68
68
  "replacement": "color.background.accent.red.subtler"
69
69
  }, {
70
70
  "path": "color.background.accent.red.bold",
71
- "state": "deprecated",
71
+ "state": "deleted",
72
72
  "replacement": "color.background.accent.red.subtle"
73
73
  }, {
74
74
  "path": "color.background.accent.orange.[default]",
75
- "state": "deprecated",
75
+ "state": "deleted",
76
76
  "replacement": "color.background.accent.orange.subtler"
77
77
  }, {
78
78
  "path": "color.background.accent.orange.bold",
79
- "state": "deprecated",
79
+ "state": "deleted",
80
80
  "replacement": "color.background.accent.orange.subtle"
81
81
  }, {
82
82
  "path": "color.background.accent.yellow.[default]",
83
- "state": "deprecated",
83
+ "state": "deleted",
84
84
  "replacement": "color.background.accent.yellow.subtler"
85
85
  }, {
86
86
  "path": "color.background.accent.yellow.bold",
87
- "state": "deprecated",
87
+ "state": "deleted",
88
88
  "replacement": "color.background.accent.yellow.subtle"
89
89
  }, {
90
90
  "path": "color.background.accent.green.[default]",
91
- "state": "deprecated",
91
+ "state": "deleted",
92
92
  "replacement": "color.background.accent.green.subtler"
93
93
  }, {
94
94
  "path": "color.background.accent.green.bold",
95
- "state": "deprecated",
95
+ "state": "deleted",
96
96
  "replacement": "color.background.accent.green.subtle"
97
97
  }, {
98
98
  "path": "color.background.accent.teal.[default]",
99
- "state": "deprecated",
99
+ "state": "deleted",
100
100
  "replacement": "color.background.accent.teal.subtler"
101
101
  }, {
102
102
  "path": "color.background.accent.teal.bold",
103
- "state": "deprecated",
103
+ "state": "deleted",
104
104
  "replacement": "color.background.accent.teal.subtle"
105
105
  }, {
106
106
  "path": "color.background.accent.purple.[default]",
107
- "state": "deprecated",
107
+ "state": "deleted",
108
108
  "replacement": "color.background.accent.purple.subtler"
109
109
  }, {
110
110
  "path": "color.background.accent.purple.bold",
111
- "state": "deprecated",
111
+ "state": "deleted",
112
112
  "replacement": "color.background.accent.purple.subtle"
113
113
  }, {
114
114
  "path": "color.background.accent.magenta.[default]",
115
- "state": "deprecated",
115
+ "state": "deleted",
116
116
  "replacement": "color.background.accent.magenta.subtler"
117
117
  }, {
118
118
  "path": "color.background.accent.magenta.bold",
119
- "state": "deprecated",
119
+ "state": "deleted",
120
120
  "replacement": "color.background.accent.magenta.subtle"
121
121
  }, {
122
122
  "path": "color.background.brand.[default].[default]",
@@ -140,99 +140,99 @@ var renameMapper = [{
140
140
  "replacement": "color.background.selected.[default].hovered"
141
141
  }, {
142
142
  "path": "color.background.blanket",
143
- "state": "deprecated",
143
+ "state": "deleted",
144
144
  "replacement": "color.blanket.[default]"
145
145
  }, {
146
146
  "path": "color.background.boldBrand.hover",
147
- "state": "deprecated",
147
+ "state": "deleted",
148
148
  "replacement": "color.background.brand.bold.hovered"
149
149
  }, {
150
150
  "path": "color.background.boldBrand.pressed",
151
- "state": "deprecated",
151
+ "state": "deleted",
152
152
  "replacement": "color.background.brand.bold.pressed"
153
153
  }, {
154
154
  "path": "color.background.boldBrand.resting",
155
- "state": "deprecated",
155
+ "state": "deleted",
156
156
  "replacement": "color.background.brand.bold.[default]"
157
157
  }, {
158
158
  "path": "color.background.boldDanger.hover",
159
- "state": "deprecated",
159
+ "state": "deleted",
160
160
  "replacement": "color.background.danger.bold.hovered"
161
161
  }, {
162
162
  "path": "color.background.boldDanger.pressed",
163
- "state": "deprecated",
163
+ "state": "deleted",
164
164
  "replacement": "color.background.danger.bold.pressed"
165
165
  }, {
166
166
  "path": "color.background.boldDanger.resting",
167
- "state": "deprecated",
167
+ "state": "deleted",
168
168
  "replacement": "color.background.danger.bold.[default]"
169
169
  }, {
170
170
  "path": "color.background.boldDiscovery.hover",
171
- "state": "deprecated",
171
+ "state": "deleted",
172
172
  "replacement": "color.background.discovery.bold.hovered"
173
173
  }, {
174
174
  "path": "color.background.boldDiscovery.pressed",
175
- "state": "deprecated",
175
+ "state": "deleted",
176
176
  "replacement": "color.background.discovery.bold.pressed"
177
177
  }, {
178
178
  "path": "color.background.boldDiscovery.resting",
179
- "state": "deprecated",
179
+ "state": "deleted",
180
180
  "replacement": "color.background.discovery.bold.[default]"
181
181
  }, {
182
182
  "path": "color.background.boldNeutral.hover",
183
- "state": "deprecated",
183
+ "state": "deleted",
184
184
  "replacement": "color.background.neutral.bold.hovered"
185
185
  }, {
186
186
  "path": "color.background.boldNeutral.pressed",
187
- "state": "deprecated",
187
+ "state": "deleted",
188
188
  "replacement": "color.background.neutral.bold.pressed"
189
189
  }, {
190
190
  "path": "color.background.boldNeutral.resting",
191
- "state": "deprecated",
191
+ "state": "deleted",
192
192
  "replacement": "color.background.neutral.bold.[default]"
193
193
  }, {
194
194
  "path": "color.background.boldSuccess.hover",
195
- "state": "deprecated",
195
+ "state": "deleted",
196
196
  "replacement": "color.background.success.bold.hovered"
197
197
  }, {
198
198
  "path": "color.background.boldSuccess.pressed",
199
- "state": "deprecated",
199
+ "state": "deleted",
200
200
  "replacement": "color.background.success.bold.pressed"
201
201
  }, {
202
202
  "path": "color.background.boldSuccess.resting",
203
- "state": "deprecated",
203
+ "state": "deleted",
204
204
  "replacement": "color.background.success.bold.[default]"
205
205
  }, {
206
206
  "path": "color.background.boldWarning.hover",
207
- "state": "deprecated",
207
+ "state": "deleted",
208
208
  "replacement": "color.background.warning.bold.hovered"
209
209
  }, {
210
210
  "path": "color.background.boldWarning.pressed",
211
- "state": "deprecated",
211
+ "state": "deleted",
212
212
  "replacement": "color.background.warning.bold.pressed"
213
213
  }, {
214
214
  "path": "color.background.boldWarning.resting",
215
- "state": "deprecated",
215
+ "state": "deleted",
216
216
  "replacement": "color.background.warning.bold.[default]"
217
217
  }, {
218
218
  "path": "color.background.card",
219
- "state": "deprecated",
219
+ "state": "deleted",
220
220
  "replacement": "elevation.surface.raised"
221
221
  }, {
222
222
  "path": "color.background.default",
223
- "state": "deprecated",
223
+ "state": "deleted",
224
224
  "replacement": "elevation.surface.[default]"
225
225
  }, {
226
226
  "path": "color.background.overlay",
227
- "state": "deprecated",
227
+ "state": "deleted",
228
228
  "replacement": "elevation.surface.overlay"
229
229
  }, {
230
230
  "path": "color.background.subtleBorderedNeutral.pressed",
231
- "state": "deprecated",
231
+ "state": "deleted",
232
232
  "replacement": "color.background.input.pressed"
233
233
  }, {
234
234
  "path": "color.background.subtleBorderedNeutral.resting",
235
- "state": "deprecated",
235
+ "state": "deleted",
236
236
  "replacement": "color.background.input.[default]"
237
237
  }, {
238
238
  "path": "color.background.subtleBrand.hover",
@@ -248,163 +248,163 @@ var renameMapper = [{
248
248
  "replacement": "color.background.selected.[default].[default]"
249
249
  }, {
250
250
  "path": "color.background.subtleDanger.hover",
251
- "state": "deprecated",
251
+ "state": "deleted",
252
252
  "replacement": "color.background.danger.[default].hovered"
253
253
  }, {
254
254
  "path": "color.background.subtleDanger.pressed",
255
- "state": "deprecated",
255
+ "state": "deleted",
256
256
  "replacement": "color.background.danger.[default].pressed"
257
257
  }, {
258
258
  "path": "color.background.subtleDanger.resting",
259
- "state": "deprecated",
259
+ "state": "deleted",
260
260
  "replacement": "color.background.danger.[default].[default]"
261
261
  }, {
262
262
  "path": "color.background.subtleDiscovery.hover",
263
- "state": "deprecated",
263
+ "state": "deleted",
264
264
  "replacement": "color.background.discovery.[default].hovered"
265
265
  }, {
266
266
  "path": "color.background.subtleDiscovery.pressed",
267
- "state": "deprecated",
267
+ "state": "deleted",
268
268
  "replacement": "color.background.discovery.[default].pressed"
269
269
  }, {
270
270
  "path": "color.background.subtleDiscovery.resting",
271
- "state": "deprecated",
271
+ "state": "deleted",
272
272
  "replacement": "color.background.discovery.[default].[default]"
273
273
  }, {
274
274
  "path": "color.background.subtleNeutral.hover",
275
- "state": "deprecated",
275
+ "state": "deleted",
276
276
  "replacement": "color.background.neutral.[default].hovered"
277
277
  }, {
278
278
  "path": "color.background.subtleNeutral.pressed",
279
- "state": "deprecated",
279
+ "state": "deleted",
280
280
  "replacement": "color.background.neutral.[default].pressed"
281
281
  }, {
282
282
  "path": "color.background.subtleNeutral.resting",
283
- "state": "deprecated",
283
+ "state": "deleted",
284
284
  "replacement": "color.background.neutral.[default].[default]"
285
285
  }, {
286
286
  "path": "color.background.subtleSuccess.hover",
287
- "state": "deprecated",
287
+ "state": "deleted",
288
288
  "replacement": "color.background.success.[default].hovered"
289
289
  }, {
290
290
  "path": "color.background.subtleSuccess.pressed",
291
- "state": "deprecated",
291
+ "state": "deleted",
292
292
  "replacement": "color.background.success.[default].pressed"
293
293
  }, {
294
294
  "path": "color.background.subtleSuccess.resting",
295
- "state": "deprecated",
295
+ "state": "deleted",
296
296
  "replacement": "color.background.success.[default].[default]"
297
297
  }, {
298
298
  "path": "color.background.subtleWarning.hover",
299
- "state": "deprecated",
299
+ "state": "deleted",
300
300
  "replacement": "color.background.warning.[default].hovered"
301
301
  }, {
302
302
  "path": "color.background.subtleWarning.pressed",
303
- "state": "deprecated",
303
+ "state": "deleted",
304
304
  "replacement": "color.background.warning.[default].pressed"
305
305
  }, {
306
306
  "path": "color.background.subtleWarning.resting",
307
- "state": "deprecated",
307
+ "state": "deleted",
308
308
  "replacement": "color.background.warning.[default].[default]"
309
309
  }, {
310
310
  "path": "color.background.sunken",
311
- "state": "deprecated",
311
+ "state": "deleted",
312
312
  "replacement": "elevation.surface.sunken"
313
313
  }, {
314
314
  "path": "color.background.transparentNeutral.hover",
315
- "state": "deprecated",
315
+ "state": "deleted",
316
316
  "replacement": "color.background.neutral.subtle.hovered"
317
317
  }, {
318
318
  "path": "color.background.transparentNeutral.pressed",
319
- "state": "deprecated",
319
+ "state": "deleted",
320
320
  "replacement": "color.background.neutral.subtle.pressed"
321
321
  }, {
322
322
  "path": "color.accent.boldBlue",
323
- "state": "deprecated",
323
+ "state": "deleted",
324
324
  "replacement": "color.background.accent.blue.bolder"
325
325
  }, {
326
326
  "path": "color.accent.boldGreen",
327
- "state": "deprecated",
327
+ "state": "deleted",
328
328
  "replacement": "color.background.accent.green.bolder"
329
329
  }, {
330
330
  "path": "color.accent.boldOrange",
331
- "state": "deprecated",
331
+ "state": "deleted",
332
332
  "replacement": "color.background.accent.orange.bolder"
333
333
  }, {
334
334
  "path": "color.accent.boldPurple",
335
- "state": "deprecated",
335
+ "state": "deleted",
336
336
  "replacement": "color.background.accent.purple.bolder"
337
337
  }, {
338
338
  "path": "color.accent.boldRed",
339
- "state": "deprecated",
339
+ "state": "deleted",
340
340
  "replacement": "color.background.accent.red.bolder"
341
341
  }, {
342
342
  "path": "color.accent.boldTeal",
343
- "state": "deprecated",
343
+ "state": "deleted",
344
344
  "replacement": "color.background.accent.teal.bolder"
345
345
  }, {
346
346
  "path": "color.accent.subtleBlue",
347
- "state": "deprecated",
347
+ "state": "deleted",
348
348
  "replacement": "color.background.accent.blue.subtler"
349
349
  }, {
350
350
  "path": "color.accent.subtleGreen",
351
- "state": "deprecated",
351
+ "state": "deleted",
352
352
  "replacement": "color.background.accent.green.subtler"
353
353
  }, {
354
354
  "path": "color.accent.subtleMagenta",
355
- "state": "deprecated",
355
+ "state": "deleted",
356
356
  "replacement": "color.background.accent.magenta.subtler"
357
357
  }, {
358
358
  "path": "color.accent.subtleOrange",
359
- "state": "deprecated",
359
+ "state": "deleted",
360
360
  "replacement": "color.background.accent.orange.subtler"
361
361
  }, {
362
362
  "path": "color.accent.subtlePurple",
363
- "state": "deprecated",
363
+ "state": "deleted",
364
364
  "replacement": "color.background.accent.purple.subtler"
365
365
  }, {
366
366
  "path": "color.accent.subtleRed",
367
- "state": "deprecated",
367
+ "state": "deleted",
368
368
  "replacement": "color.background.accent.red.subtler"
369
369
  }, {
370
370
  "path": "color.accent.subtleTeal",
371
- "state": "deprecated",
371
+ "state": "deleted",
372
372
  "replacement": "color.background.accent.teal.subtler"
373
373
  }, {
374
374
  "path": "color.iconBorder.brand",
375
- "state": "deprecated",
375
+ "state": "deleted",
376
376
  "replacement": "color.icon.brand"
377
377
  }, {
378
378
  "path": "color.iconBorder.danger",
379
- "state": "deprecated",
379
+ "state": "deleted",
380
380
  "replacement": "color.icon.danger"
381
381
  }, {
382
382
  "path": "color.iconBorder.discovery",
383
- "state": "deprecated",
383
+ "state": "deleted",
384
384
  "replacement": "color.icon.discovery"
385
385
  }, {
386
386
  "path": "color.iconBorder.success",
387
- "state": "deprecated",
387
+ "state": "deleted",
388
388
  "replacement": "color.icon.success"
389
389
  }, {
390
390
  "path": "color.iconBorder.warning",
391
- "state": "deprecated",
391
+ "state": "deleted",
392
392
  "replacement": "color.icon.warning.[default]"
393
393
  }, {
394
394
  "path": "color.overlay.hover",
395
- "state": "deprecated",
395
+ "state": "deleted",
396
396
  "replacement": "color.interaction.hovered"
397
397
  }, {
398
398
  "path": "color.overlay.pressed",
399
- "state": "deprecated",
399
+ "state": "deleted",
400
400
  "replacement": "color.interaction.pressed"
401
401
  }, {
402
402
  "path": "shadow.card",
403
- "state": "deprecated",
403
+ "state": "deleted",
404
404
  "replacement": "elevation.shadow.raised"
405
405
  }, {
406
406
  "path": "shadow.overlay",
407
- "state": "deprecated",
407
+ "state": "deleted",
408
408
  "replacement": "elevation.shadow.overlay"
409
409
  }];
410
410
  var _default = renameMapper;
@@ -138,9 +138,9 @@ var defaultTokenValues = {
138
138
  'color.background.accent.magenta.bold': '#E774BB',
139
139
  'color.background.disabled': '#091E420F',
140
140
  'color.background.inverse': '#00000029',
141
- 'color.background.input': '#091E4208',
142
- 'color.background.input.hovered': '#FFFFFF',
143
- 'color.background.input.pressed': '#091E420F',
141
+ 'color.background.input': '#FFFFFF',
142
+ 'color.background.input.hovered': '#F7F8F9',
143
+ 'color.background.input.pressed': '#FFFFFF',
144
144
  'color.background.neutral': '#091E420F',
145
145
  'color.background.neutral.hovered': '#091E4224',
146
146
  'color.background.neutral.pressed': '#091E424F',
@@ -246,6 +246,8 @@ var defaultTokenValues = {
246
246
  'color.interaction.pressed': '#ffffff5c',
247
247
  'color.interaction.inverse.hovered': '#00000029',
248
248
  'color.interaction.inverse.pressed': '#00000052',
249
+ 'color.skeleton': '#091E420F',
250
+ 'color.skeleton.subtle': '#091E4208',
249
251
  'color.link': '#0C66E4',
250
252
  'color.link.pressed': '#0055CC',
251
253
  'color.accent.boldBlue': '#579DFF',
@@ -242,6 +242,8 @@ var tokens = {
242
242
  'color.interaction.pressed': '--ds-interaction-pressed',
243
243
  'color.interaction.inverse.hovered': '--ds-interaction-inverse-hovered',
244
244
  'color.interaction.inverse.pressed': '--ds-interaction-inverse-pressed',
245
+ 'color.skeleton': '--ds-skeleton',
246
+ 'color.skeleton.subtle': '--ds-skeleton-subtle',
245
247
  'color.link': '--ds-link',
246
248
  'color.link.pressed': '--ds-link-pressed',
247
249
  'color.accent.boldBlue': '--ds-accent-boldBlue',