@atlaskit/tokens 1.49.1 → 1.50.0

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 (115) hide show
  1. package/CHANGELOG.md +1584 -1594
  2. package/README.md +14 -8
  3. package/codemods/css-to-design-tokens/lib/colors.tsx +47 -49
  4. package/codemods/css-to-design-tokens/lib/declaration.tsx +26 -26
  5. package/codemods/css-to-design-tokens/lib/legacy-colors.tsx +326 -326
  6. package/codemods/css-to-design-tokens/lib/meta.tsx +116 -122
  7. package/codemods/css-to-design-tokens/lib/tokens.tsx +28 -35
  8. package/codemods/css-to-design-tokens/lib/value.tsx +70 -72
  9. package/codemods/css-to-design-tokens/transform.tsx +68 -72
  10. package/codemods/hypermod.config.tsx +5 -5
  11. package/codemods/remove-fallbacks-color/transform.tsx +16 -18
  12. package/codemods/theme-to-design-tokens/transform.tsx +505 -588
  13. package/codemods/theme-to-design-tokens/utils/ast-meta.tsx +139 -147
  14. package/codemods/theme-to-design-tokens/utils/ast.tsx +23 -34
  15. package/codemods/theme-to-design-tokens/utils/color.tsx +25 -26
  16. package/codemods/theme-to-design-tokens/utils/css-utils.tsx +27 -30
  17. package/codemods/theme-to-design-tokens/utils/fuzzy-search.tsx +272 -290
  18. package/codemods/theme-to-design-tokens/utils/legacy-colors.tsx +224 -224
  19. package/codemods/theme-to-design-tokens/utils/named-colors.tsx +148 -148
  20. package/codemods/theme-to-design-tokens/utils/string-utils.tsx +10 -16
  21. package/codemods/utils/tokens.tsx +371 -371
  22. package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  23. package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  24. package/dist/cjs/artifacts/generated-pairs.js +1 -1
  25. package/dist/cjs/artifacts/theme-import-map.js +1 -1
  26. package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
  27. package/dist/cjs/artifacts/token-default-values.js +1 -1
  28. package/dist/cjs/artifacts/token-names.js +1 -1
  29. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  30. package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  31. package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  32. package/dist/es2019/artifacts/generated-pairs.js +1 -1
  33. package/dist/es2019/artifacts/theme-import-map.js +1 -1
  34. package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +2 -2
  35. package/dist/es2019/artifacts/token-default-values.js +1 -1
  36. package/dist/es2019/artifacts/token-names.js +1 -1
  37. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  38. package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  39. package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  40. package/dist/esm/artifacts/generated-pairs.js +1 -1
  41. package/dist/esm/artifacts/theme-import-map.js +1 -1
  42. package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
  43. package/dist/esm/artifacts/token-default-values.js +1 -1
  44. package/dist/esm/artifacts/token-names.js +1 -1
  45. package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  46. package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +1 -1
  47. package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +1 -1
  48. package/dist/types/artifacts/generated-pairs.d.ts +1 -1
  49. package/dist/types/artifacts/theme-import-map.d.ts +2 -2
  50. package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  51. package/dist/types/artifacts/token-default-values.d.ts +1 -1
  52. package/dist/types/artifacts/token-names.d.ts +1 -1
  53. package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
  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/babel-plugin/plugin.d.ts +1 -1
  57. package/dist/types/custom-theme.d.ts +2 -2
  58. package/dist/types/enable-global-theme.d.ts +2 -2
  59. package/dist/types/entry-points/css-type-schema.codegen.d.ts +1 -1
  60. package/dist/types/entry-points/token-ids.d.ts +1 -1
  61. package/dist/types/get-global-theme.d.ts +1 -1
  62. package/dist/types/get-ssr-auto-script.d.ts +1 -1
  63. package/dist/types/get-theme-html-attrs.d.ts +1 -1
  64. package/dist/types/get-theme-styles.d.ts +1 -1
  65. package/dist/types/get-token.d.ts +1 -1
  66. package/dist/types/index.d.ts +1 -1
  67. package/dist/types/load-custom-theme-styles.d.ts +1 -1
  68. package/dist/types/set-global-theme.d.ts +2 -2
  69. package/dist/types/theme-state-transformer.d.ts +1 -1
  70. package/dist/types/utils/color-detection.d.ts +1 -1
  71. package/dist/types/utils/color-mode-listeners.d.ts +1 -1
  72. package/dist/types/utils/configure-page.d.ts +1 -1
  73. package/dist/types/utils/contrast-mode-listeners.d.ts +1 -1
  74. package/dist/types/utils/custom-theme-loading-utils.d.ts +1 -1
  75. package/dist/types/utils/custom-theme-token-contrast-check.d.ts +1 -1
  76. package/dist/types/utils/generate-custom-color-ramp.d.ts +2 -2
  77. package/dist/types/utils/get-increased-contrast-theme.d.ts +1 -1
  78. package/dist/types/utils/get-theme-preferences.d.ts +1 -1
  79. package/dist/types/utils/theme-loading.d.ts +1 -1
  80. package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +1 -1
  81. package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +1 -1
  82. package/dist/types-ts4.5/artifacts/generated-pairs.d.ts +1 -1
  83. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +2 -2
  84. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  85. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +1 -1
  86. package/dist/types-ts4.5/artifacts/token-names.d.ts +1 -1
  87. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
  88. package/dist/types-ts4.5/artifacts/types-internal.d.ts +1 -1
  89. package/dist/types-ts4.5/artifacts/types.d.ts +1 -1
  90. package/dist/types-ts4.5/babel-plugin/plugin.d.ts +1 -1
  91. package/dist/types-ts4.5/custom-theme.d.ts +2 -2
  92. package/dist/types-ts4.5/enable-global-theme.d.ts +2 -2
  93. package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +1 -1
  94. package/dist/types-ts4.5/entry-points/token-ids.d.ts +1 -1
  95. package/dist/types-ts4.5/get-global-theme.d.ts +1 -1
  96. package/dist/types-ts4.5/get-ssr-auto-script.d.ts +1 -1
  97. package/dist/types-ts4.5/get-theme-html-attrs.d.ts +1 -1
  98. package/dist/types-ts4.5/get-theme-styles.d.ts +1 -1
  99. package/dist/types-ts4.5/get-token.d.ts +1 -1
  100. package/dist/types-ts4.5/index.d.ts +1 -1
  101. package/dist/types-ts4.5/load-custom-theme-styles.d.ts +1 -1
  102. package/dist/types-ts4.5/set-global-theme.d.ts +2 -2
  103. package/dist/types-ts4.5/theme-state-transformer.d.ts +1 -1
  104. package/dist/types-ts4.5/utils/color-detection.d.ts +1 -1
  105. package/dist/types-ts4.5/utils/color-mode-listeners.d.ts +1 -1
  106. package/dist/types-ts4.5/utils/configure-page.d.ts +1 -1
  107. package/dist/types-ts4.5/utils/contrast-mode-listeners.d.ts +1 -1
  108. package/dist/types-ts4.5/utils/custom-theme-loading-utils.d.ts +1 -1
  109. package/dist/types-ts4.5/utils/custom-theme-token-contrast-check.d.ts +1 -1
  110. package/dist/types-ts4.5/utils/generate-custom-color-ramp.d.ts +2 -2
  111. package/dist/types-ts4.5/utils/get-increased-contrast-theme.d.ts +1 -1
  112. package/dist/types-ts4.5/utils/get-theme-preferences.d.ts +1 -1
  113. package/dist/types-ts4.5/utils/theme-loading.d.ts +1 -1
  114. package/package.json +3 -5
  115. package/report.api.md +2071 -2090
package/CHANGELOG.md CHANGED
@@ -1,2811 +1,2801 @@
1
1
  # @atlaskit/tokens
2
2
 
3
+ ## 1.50.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#110191](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110191)
8
+ [`c3dc02298f8aa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c3dc02298f8aa) -
9
+ [ux] Change heading xsmall lineheight from 16 to 20 for minor third theme.
10
+
3
11
  ## 1.49.1
4
12
 
5
13
  ### Patch Changes
6
14
 
7
- - [#101609](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101609)
8
- [`4f0dff39fd37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4f0dff39fd37) -
9
- Change naming of base lineheight tokens.
15
+ - [#101609](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101609)
16
+ [`4f0dff39fd37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4f0dff39fd37) -
17
+ Change naming of base lineheight tokens.
10
18
 
11
19
  ## 1.49.0
12
20
 
13
21
  ### Minor Changes
14
22
 
15
- - [#95202](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95202)
16
- [`6350f05328cc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6350f05328cc) -
17
- Adds new IconColor type to the CSS type schema
23
+ - [#95202](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95202)
24
+ [`6350f05328cc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6350f05328cc) -
25
+ Adds new IconColor type to the CSS type schema
18
26
 
19
27
  ## 1.48.0
20
28
 
21
29
  ### Minor Changes
22
30
 
23
- - [#98637](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98637)
24
- [`ae9502319628`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae9502319628) -
25
- Export `FontFamilyToken` and `FontWeightToken` types. Added descriptions for typography tokens.
26
- Internal changes to token ordering logic.
31
+ - [#98637](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98637)
32
+ [`ae9502319628`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae9502319628) -
33
+ Export `FontFamilyToken` and `FontWeightToken` types. Added descriptions for typography tokens.
34
+ Internal changes to token ordering logic.
27
35
 
28
36
  ## 1.47.0
29
37
 
30
38
  ### Minor Changes
31
39
 
32
- - [#98149](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98149)
33
- [`45101e24202a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/45101e24202a) -
34
- Change the state of the following tokens from deprecated to active:
40
+ - [#98149](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98149)
41
+ [`45101e24202a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/45101e24202a) -
42
+ Change the state of the following tokens from deprecated to active:
35
43
 
36
- - font.family.body
37
- - font.family.code
38
- - font.family.heading
44
+ - font.family.body
45
+ - font.family.code
46
+ - font.family.heading
39
47
 
40
48
  ## 1.46.0
41
49
 
42
50
  ### Minor Changes
43
51
 
44
- - [#97306](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97306)
45
- [`cefbd515c807`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cefbd515c807) -
46
- Add support for React 18.
52
+ - [#97306](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97306)
53
+ [`cefbd515c807`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cefbd515c807) -
54
+ Add support for React 18 in non-strict mode.
47
55
 
48
56
  ### Patch Changes
49
57
 
50
- - [#98562](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98562)
51
- [`5c59b4fec679`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5c59b4fec679) -
52
- ThemeMutationObserver only ever creates one instance of a mutation observer which reduces memory
53
- impacts at scale. This change is behind a platform feature flag -
54
- "platform.design-system-team.mutation-observer-performance-improvement_8usdg"
58
+ - [#98562](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98562)
59
+ [`5c59b4fec679`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5c59b4fec679) -
60
+ ThemeMutationObserver only ever creates one instance of a mutation observer which reduces memory
61
+ impacts at scale. This change is behind a platform feature flag -
62
+ "platform.design-system-team.mutation-observer-performance-improvement_8usdg"
55
63
 
56
64
  ## 1.45.1
57
65
 
58
66
  ### Patch Changes
59
67
 
60
- - [#96516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96516)
61
- [`fc7451742d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc7451742d3b) -
62
- Remove the version from non-production warns to avoid internal conflicts as debugging like this
63
- should not be necessary; this package should be a singleton.
68
+ - [#96516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96516)
69
+ [`fc7451742d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc7451742d3b) -
70
+ Remove the version from non-production warns to avoid internal conflicts as debugging like this
71
+ should not be necessary; this package should be a singleton.
64
72
 
65
73
  ## 1.45.0
66
74
 
67
75
  ### Minor Changes
68
76
 
69
- - [#94675](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94675)
70
- [`5d9e1dccacca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d9e1dccacca) -
71
- [ux] Update input border color token to meet 3:1 color contrast ratioLight theme:
72
- color.border.input: #091E4224 → #8590A2Dark mode: color.border.input: #A6C5E229 → #738496
77
+ - [#94675](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94675)
78
+ [`5d9e1dccacca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d9e1dccacca) -
79
+ [ux] Update input border color token to meet 3:1 color contrast ratioLight theme:
80
+ color.border.input: #091E4224 → #8590A2Dark mode: color.border.input: #A6C5E229 → #738496
73
81
 
74
82
  ## 1.44.1
75
83
 
76
84
  ### Patch Changes
77
85
 
78
- - [#96059](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96059)
79
- [`e511f40c0989`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e511f40c0989) -
80
- Generate a local prebuilt version of this package (to use the babel plugin internally in local
81
- consumption more performantly)–should not interfere with distribution at all.
86
+ - [#96059](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96059)
87
+ [`e511f40c0989`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e511f40c0989) -
88
+ Generate a local prebuilt version of this package (to use the babel plugin internally in local
89
+ consumption more performantly)–should not interfere with distribution at all.
82
90
 
83
91
  ## 1.44.0
84
92
 
85
93
  ### Minor Changes
86
94
 
87
- - [#94487](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94487)
88
- [`9c81d48cda91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9c81d48cda91) -
89
- Removed deprecated experimental `font.ui` tokens. These experimental tokens were not documented
90
- and not intended for use. The `font.body` tokens should be used instead.
95
+ - [#94487](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94487)
96
+ [`9c81d48cda91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9c81d48cda91) -
97
+ Removed deprecated experimental `font.ui` tokens. These experimental tokens were not documented
98
+ and not intended for use. The `font.body` tokens should be used instead.
91
99
 
92
100
  ## 1.43.2
93
101
 
94
102
  ### Patch Changes
95
103
 
96
- - [#94316](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94316)
97
- [`35fd5ed8e1d7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/35fd5ed8e1d7) -
98
- Upgrading internal dependency `bind-event-listener` to `@^3.0.0`
104
+ - [#94316](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94316)
105
+ [`35fd5ed8e1d7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/35fd5ed8e1d7) -
106
+ Upgrading internal dependency `bind-event-listener` to `@^3.0.0`
99
107
 
100
108
  ## 1.43.1
101
109
 
102
110
  ### Patch Changes
103
111
 
104
- - [#91883](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91883)
105
- [`90edf674186c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/90edf674186c) -
106
- Gracefully handles falsy values passed in as theme properties.
112
+ - [#91883](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91883)
113
+ [`90edf674186c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/90edf674186c) -
114
+ Gracefully handles falsy values passed in as theme properties.
107
115
 
108
116
  ## 1.43.0
109
117
 
110
118
  ### Minor Changes
111
119
 
112
- - [#85745](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85745)
113
- [`0e9c8c15ef86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0e9c8c15ef86) -
114
- Added new color token `color.link.visited.pressed`.
120
+ - [#85745](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85745)
121
+ [`0e9c8c15ef86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0e9c8c15ef86) -
122
+ Added new color token `color.link.visited.pressed`.
115
123
 
116
124
  ## 1.42.1
117
125
 
118
126
  ### Patch Changes
119
127
 
120
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
121
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
122
- Upgrade Typescript from `4.9.5` to `5.4.2`
128
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
129
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
130
+ Upgrade Typescript from `4.9.5` to `5.4.2`
123
131
 
124
132
  ## 1.42.0
125
133
 
126
134
  ### Minor Changes
127
135
 
128
- - [#78900](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78900)
129
- [`6ea786dd8082`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6ea786dd8082) -
130
- Add UNSAFE_small fontsize token.
136
+ - [#78900](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78900)
137
+ [`6ea786dd8082`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6ea786dd8082) -
138
+ Add UNSAFE_small fontsize token.
131
139
 
132
140
  ## 1.41.2
133
141
 
134
142
  ### Patch Changes
135
143
 
136
- - [#80571](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80571)
137
- [`fafdb1dcce96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fafdb1dcce96) -
138
- Fix bugs in strict CSS typedef.
144
+ - [#80571](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80571)
145
+ [`fafdb1dcce96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fafdb1dcce96) -
146
+ Fix bugs in strict CSS typedef.
139
147
 
140
148
  ## 1.41.1
141
149
 
142
150
  ### Patch Changes
143
151
 
144
- - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644)
145
- [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) -
146
- Revert input border change from the previous version
152
+ - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644)
153
+ [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) -
154
+ Revert input border change from the previous version
147
155
 
148
156
  ## 1.41.0
149
157
 
150
158
  ### Minor Changes
151
159
 
152
- - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805)
153
- [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) -
154
- [ux] Update input border color token to meet 3:1 color contrast ratio
160
+ - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805)
161
+ [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) -
162
+ [ux] Update input border color token to meet 3:1 color contrast ratio
155
163
 
156
- Light theme: color.border.input: #091E4224 → #8590A2 Dark mode: color.border.input: #A6C5E229 →
157
- #738496
164
+ Light theme: color.border.input: #091E4224 → #8590A2 Dark mode: color.border.input: #A6C5E229 →
165
+ #738496
158
166
 
159
- - [#79670](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79670)
160
- [`28b71d14576b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28b71d14576b) -
161
- Adds autofallback support for Spacing, Typography, and Shape themes to the babel plugin.
167
+ - [#79670](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79670)
168
+ [`28b71d14576b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28b71d14576b) -
169
+ Adds autofallback support for Spacing, Typography, and Shape themes to the babel plugin.
162
170
 
163
171
  ## 1.40.0
164
172
 
165
173
  ### Minor Changes
166
174
 
167
- - [#79770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79770)
168
- [`42fb3733fe8b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/42fb3733fe8b) -
169
- Add exports and update entrypoint
175
+ - [#79770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79770)
176
+ [`42fb3733fe8b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/42fb3733fe8b) -
177
+ Add exports and update entrypoint
170
178
 
171
179
  ## 1.39.1
172
180
 
173
181
  ### Patch Changes
174
182
 
175
- - [#79306](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79306)
176
- [`465924177c82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/465924177c82) -
177
- Moves dependency whitelist from hypermod.config to package.json
183
+ - [#79306](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79306)
184
+ [`465924177c82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/465924177c82) -
185
+ Moves dependency whitelist from hypermod.config to package.json
178
186
 
179
187
  ## 1.39.0
180
188
 
181
189
  ### Minor Changes
182
190
 
183
- - [#77148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77148)
184
- [`20decda98a72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/20decda98a72) -
185
- Deprecated `font.ui` tokens.
191
+ - [#77148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77148)
192
+ [`20decda98a72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/20decda98a72) -
193
+ Deprecated `font.ui` tokens.
186
194
 
187
195
  ## 1.38.0
188
196
 
189
197
  ### Minor Changes
190
198
 
191
- - [#74836](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74836)
192
- [`66062ea65d5b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/66062ea65d5b) -
193
- Added font family tokens for our brand font for headings and body text.
199
+ - [#74836](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74836)
200
+ [`66062ea65d5b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/66062ea65d5b) -
201
+ Added font family tokens for our brand font for headings and body text.
194
202
 
195
203
  ## 1.37.2
196
204
 
197
205
  ### Patch Changes
198
206
 
199
- - [#73844](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73844)
200
- [`c7683b370ae8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c7683b370ae8) -
201
- Adds dependency whitelist to codemod configuration
207
+ - [#73844](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73844)
208
+ [`c7683b370ae8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c7683b370ae8) -
209
+ Adds dependency whitelist to codemod configuration
202
210
 
203
211
  ## 1.37.1
204
212
 
205
213
  ### Patch Changes
206
214
 
207
- - [#72557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72557)
208
- [`0c78c9c18cb7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c78c9c18cb7) -
209
- Fix font family not preferencing apple system fonts on macOS
215
+ - [#72557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72557)
216
+ [`0c78c9c18cb7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c78c9c18cb7) -
217
+ Fix font family not preferencing apple system fonts on macOS
210
218
 
211
219
  ## 1.37.0
212
220
 
213
221
  ### Minor Changes
214
222
 
215
- - [#71146](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71146)
216
- [`3e20d00d3d46`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3e20d00d3d46) -
217
- Moves tokens codemods into the tokens package.
223
+ - [#71146](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71146)
224
+ [`3e20d00d3d46`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3e20d00d3d46) -
225
+ Moves tokens codemods into the tokens package.
218
226
 
219
227
  ## 1.36.0
220
228
 
221
229
  ### Minor Changes
222
230
 
223
- - [#71486](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71486)
224
- [`a79fa3261943`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a79fa3261943) -
225
- Undeprecate font weight tokens
231
+ - [#71486](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71486)
232
+ [`a79fa3261943`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a79fa3261943) -
233
+ Undeprecate font weight tokens
226
234
 
227
235
  ## 1.35.0
228
236
 
229
237
  ### Minor Changes
230
238
 
231
- - [#68163](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68163)
232
- [`de75cc685652`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de75cc685652) -
233
- Font UI weight token value changed to medium weight
239
+ - [#68163](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68163)
240
+ [`de75cc685652`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de75cc685652) -
241
+ Font UI weight token value changed to medium weight
234
242
 
235
243
  ## 1.34.1
236
244
 
237
245
  ### Patch Changes
238
246
 
239
- - [#68792](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68792)
240
- [`89564a857049`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/89564a857049) -
241
- Add light border as default option
247
+ - [#68792](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68792)
248
+ [`89564a857049`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/89564a857049) -
249
+ Add light border as default option
242
250
 
243
251
  ## 1.34.0
244
252
 
245
253
  ### Minor Changes
246
254
 
247
- - [#67463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67463)
248
- [`caac5b953575`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/caac5b953575) -
249
- Fixed an issue where typography tokens referenced font family tokens that may not exist on a
250
- page, causing fallbacks to break.
255
+ - [#67463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67463)
256
+ [`caac5b953575`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/caac5b953575) -
257
+ Fixed an issue where typography tokens referenced font family tokens that may not exist on a page,
258
+ causing fallbacks to break.
251
259
 
252
260
  ## 1.33.0
253
261
 
254
262
  ### Minor Changes
255
263
 
256
- - [#63526](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63526)
257
- [`e8835feffae9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e8835feffae9) -
258
- Internal change to improve token sorting logic for typography tokens. Typography tokens are now
259
- marked as active though they are still in development and not recommend for use without prior
260
- approval from ADS.
264
+ - [#63526](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63526)
265
+ [`e8835feffae9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e8835feffae9) -
266
+ Internal change to improve token sorting logic for typography tokens. Typography tokens are now
267
+ marked as active though they are still in development and not recommend for use without prior
268
+ approval from ADS.
261
269
 
262
270
  ## 1.32.0
263
271
 
264
272
  ### Minor Changes
265
273
 
266
- - [#63504](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63504)
267
- [`668f6aa3ca86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/668f6aa3ca86) -
268
- Adds an entrypoint `@atlaskit/tokens/css-type-schema` containing a type definition for css
269
- values contrained to tokens.
274
+ - [#63504](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63504)
275
+ [`668f6aa3ca86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/668f6aa3ca86) -
276
+ Adds an entrypoint `@atlaskit/tokens/css-type-schema` containing a type definition for css values
277
+ contrained to tokens.
270
278
 
271
279
  ## 1.31.0
272
280
 
273
281
  ### Minor Changes
274
282
 
275
- - [#62155](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62155)
276
- [`d88ffee39278`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d88ffee39278) -
277
- Added new themes for ads-vision-lab
283
+ - [#62155](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62155)
284
+ [`d88ffee39278`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d88ffee39278) -
285
+ Added new themes for ads-vision-lab
278
286
 
279
287
  ## 1.30.0
280
288
 
281
289
  ### Minor Changes
282
290
 
283
- - [#59752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59752)
284
- [`df0bbb7c4cc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df0bbb7c4cc1) -
285
- Removed minor-second typography theme: `typography`. ADG3 and Minor third themes remain as the
286
- two typography themes.
291
+ - [#59752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59752)
292
+ [`df0bbb7c4cc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df0bbb7c4cc1) -
293
+ Removed minor-second typography theme: `typography`. ADG3 and Minor third themes remain as the two
294
+ typography themes.
287
295
 
288
296
  ## 1.29.2
289
297
 
290
298
  ### Patch Changes
291
299
 
292
- - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
293
- [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
294
- Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
300
+ - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
301
+ [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
302
+ Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
295
303
 
296
304
  ## 1.29.1
297
305
 
298
306
  ### Patch Changes
299
307
 
300
- - [#57118](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57118)
301
- [`b9bd80957181`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9bd80957181) -
302
- Upgrade Emotion v10 (@emotion/core) to Emotion v11 (@emotion/react). No behaviour change
303
- expected.
308
+ - [#57118](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57118)
309
+ [`b9bd80957181`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9bd80957181) -
310
+ Upgrade Emotion v10 (@emotion/core) to Emotion v11 (@emotion/react). No behaviour change expected.
304
311
 
305
312
  ## 1.29.0
306
313
 
307
314
  ### Minor Changes
308
315
 
309
- - [#43538](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43538)
310
- [`c10b408a053`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c10b408a053) -
311
- Deprecate typography base tokens.
316
+ - [#43538](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43538)
317
+ [`c10b408a053`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c10b408a053) -
318
+ Deprecate typography base tokens.
312
319
 
313
320
  ### Patch Changes
314
321
 
315
- - [#43718](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43718)
316
- [`8aebcad547a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8aebcad547a) -
317
- Deprecated tokens are now warned against even when a replacement token has not been specified
322
+ - [#43718](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43718)
323
+ [`8aebcad547a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8aebcad547a) -
324
+ Deprecated tokens are now warned against even when a replacement token has not been specified
318
325
 
319
326
  ## 1.28.2
320
327
 
321
328
  ### Patch Changes
322
329
 
323
- - [#43455](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43455)
324
- [`16586bd07a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16586bd07a0) -
325
- Updated `font.body.small` line height to 16px (1rem).
330
+ - [#43455](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43455)
331
+ [`16586bd07a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/16586bd07a0) - Updated
332
+ `font.body.small` line height to 16px (1rem).
326
333
 
327
334
  ## 1.28.1
328
335
 
329
336
  ### Patch Changes
330
337
 
331
- - [#42413](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42413)
332
- [`202e2c9c2ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202e2c9c2ff) - Fix
333
- for vuln [VULN-1112073](https://asecurityteam.atlassian.net/browse/VULN-1112073) by bumping
334
- `@babel/traverse` to safest patch 7.23.2.
338
+ - [#42413](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42413)
339
+ [`202e2c9c2ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202e2c9c2ff) - Fix for
340
+ vuln [VULN-1112073](https://asecurityteam.atlassian.net/browse/VULN-1112073) by bumping
341
+ `@babel/traverse` to safest patch 7.23.2.
335
342
 
336
343
  ## 1.28.0
337
344
 
338
345
  ### Minor Changes
339
346
 
340
- - [#41365](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41365)
341
- [`fab3ce9e39a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fab3ce9e39a) - Added
342
- smaller variants of heading tokens that get used for screen widths 1023px and below (Minor Third
343
- scale only). For example `font.heading.xlarge` will switch to the styles defined by
344
- `font.heading.large` on smaller screens.
347
+ - [#41365](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41365)
348
+ [`fab3ce9e39a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fab3ce9e39a) - Added
349
+ smaller variants of heading tokens that get used for screen widths 1023px and below (Minor Third
350
+ scale only). For example `font.heading.xlarge` will switch to the styles defined by
351
+ `font.heading.large` on smaller screens.
345
352
 
346
353
  ## 1.27.0
347
354
 
348
355
  ### Minor Changes
349
356
 
350
- - [#41516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41516)
351
- [`e6f589d4777`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f589d4777) - [ux]
352
- This version releases changes that were feature flagged in version 1.25.0; they include minor
353
- adjustments to our color palette and design tokens.
357
+ - [#41516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41516)
358
+ [`e6f589d4777`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f589d4777) - [ux]
359
+ This version releases changes that were feature flagged in version 1.25.0; they include minor
360
+ adjustments to our color palette and design tokens.
354
361
 
355
- These changes make certain colors more distinguishable, improves the visual appearance of
356
- warning and yellow accent backgrounds, and reduces saturation for subtle backgrounds in dark
357
- mode.
362
+ These changes make certain colors more distinguishable, improves the visual appearance of warning
363
+ and yellow accent backgrounds, and reduces saturation for subtle backgrounds in dark mode.
358
364
 
359
- #### Palette changes
365
+ #### Palette changes
360
366
 
361
- ##### All saturated palettes
367
+ ##### All saturated palettes
362
368
 
363
- - Saturation for `1000` shades reduced for all saturated palettes to reduce eye strain when
364
- placed against subtle UI in dark mode
369
+ - Saturation for `1000` shades reduced for all saturated palettes to reduce eye strain when placed
370
+ against subtle UI in dark mode
365
371
 
366
- ##### Red
372
+ ##### Red
367
373
 
368
- - Saturation reduced on entire scale
369
- - Hue adjusted to create more separation from orange
374
+ - Saturation reduced on entire scale
375
+ - Hue adjusted to create more separation from orange
370
376
 
371
- ##### Orange
377
+ ##### Orange
372
378
 
373
- - Saturation reduced on entire scale
374
- - Hue adjusted to create more separation from yellow
379
+ - Saturation reduced on entire scale
380
+ - Hue adjusted to create more separation from yellow
375
381
 
376
- ##### Lime
382
+ ##### Lime
377
383
 
378
- - Saturation for `100` shades reduced
384
+ - Saturation for `100` shades reduced
379
385
 
380
- ##### Green
386
+ ##### Green
381
387
 
382
- - Saturation for `100` shades reduced
388
+ - Saturation for `100` shades reduced
383
389
 
384
- ##### Teal
390
+ ##### Teal
385
391
 
386
- - Hue adjusted to create more separation from green
392
+ - Hue adjusted to create more separation from green
387
393
 
388
- ##### All palette changes
394
+ ##### All palette changes
389
395
 
390
- - `Red100` has changed from `#FFEDEB` to `#ffeceb`
391
- - `Red200` has changed from `#FFD2CC` to `#ffd5d2`
392
- - `Red300` has changed from `#FF9C8F` to `#fd9891`
393
- - `Red400` has changed from `#F87462` to `#f87168`
394
- - `Red500` has changed from `#EF5C48` to `#f15b50`
395
- - `Red600` has changed from `#E34935` to `#e2483d`
396
- - `Red700` has changed from `#CA3521` to `#c9372c`
397
- - `Red800` has changed from `#AE2A19` to `#ae2e24`
398
- - `Red900` has changed from `#601E16` to `#5d1f1a`
399
- - `Red1000` has changed from `#4F1C16` to `#42221F`
400
- - `Orange100` has changed from `#FFF4E5` to `#fff3eb`
401
- - `Orange200` has changed from `#FFE2BD` to `#fedec8`
402
- - `Orange300` has changed from `#FEC57B` to `#fec195`
403
- - `Orange400` has changed from `#FAA53D` to `#fea362`
404
- - `Orange500` has changed from `#F18D13` to `#f38a3f`
405
- - `Orange600` has changed from `#D97008` to `#e56910`
406
- - `Orange700` has changed from `#B65C02` to `#c25100`
407
- - `Orange800` has changed from `#974F0C` to `#A54800`
408
- - `Orange900` has changed from `#5F3811` to `#702e00`
409
- - `Orange1000` has changed from `#4A2B0F` to `#38291e`
410
- - `Yellow1000` has changed from `#3F3102` to `#332E1B`
411
- - `Lime100` has changed from `#EEFBDA` to `#EFFFD6`
412
- - `Lime1000` has changed from `#2A3818` to `#28311B`
413
- - `Green100` has changed from `#DFFCF0` to `#DCFFF1`
414
- - `Green1000` has changed from `#143C2B` to `#1C3329`
415
- - `Teal100` has changed from `#E3FAFC` to `#E7F9FF`
416
- - `Teal200` has changed from `#C1F0F5` to `#C6EDFB`
417
- - `Teal300` has changed from `#8BDBE5` to `#9DD9EE`
418
- - `Teal400` has changed from `#60C6D2` to `#6CC3E0`
419
- - `Teal500` has changed from `#37B4C3` to `#42B2D7`
420
- - `Teal600` has changed from `#1D9AAA` to `#2898BD`
421
- - `Teal700` has changed from `#1D7F8C` to `#227D9B`
422
- - `Teal800` has changed from `#206B74` to `#206A83`
423
- - `Teal900` has changed from `#1D474C` to `#164555`
424
- - `Teal1000` has changed from `#15373B` to `#1E3137`
425
- - `Blue1000` has changed from `#092957` to `#1C2B41`
426
- - `Purple1000` has changed from `#2B2451` to `#2B273F`
427
- - `Magenta1000` has changed from `#421F34` to `#3D2232`
396
+ - `Red100` has changed from `#FFEDEB` to `#ffeceb`
397
+ - `Red200` has changed from `#FFD2CC` to `#ffd5d2`
398
+ - `Red300` has changed from `#FF9C8F` to `#fd9891`
399
+ - `Red400` has changed from `#F87462` to `#f87168`
400
+ - `Red500` has changed from `#EF5C48` to `#f15b50`
401
+ - `Red600` has changed from `#E34935` to `#e2483d`
402
+ - `Red700` has changed from `#CA3521` to `#c9372c`
403
+ - `Red800` has changed from `#AE2A19` to `#ae2e24`
404
+ - `Red900` has changed from `#601E16` to `#5d1f1a`
405
+ - `Red1000` has changed from `#4F1C16` to `#42221F`
406
+ - `Orange100` has changed from `#FFF4E5` to `#fff3eb`
407
+ - `Orange200` has changed from `#FFE2BD` to `#fedec8`
408
+ - `Orange300` has changed from `#FEC57B` to `#fec195`
409
+ - `Orange400` has changed from `#FAA53D` to `#fea362`
410
+ - `Orange500` has changed from `#F18D13` to `#f38a3f`
411
+ - `Orange600` has changed from `#D97008` to `#e56910`
412
+ - `Orange700` has changed from `#B65C02` to `#c25100`
413
+ - `Orange800` has changed from `#974F0C` to `#A54800`
414
+ - `Orange900` has changed from `#5F3811` to `#702e00`
415
+ - `Orange1000` has changed from `#4A2B0F` to `#38291e`
416
+ - `Yellow1000` has changed from `#3F3102` to `#332E1B`
417
+ - `Lime100` has changed from `#EEFBDA` to `#EFFFD6`
418
+ - `Lime1000` has changed from `#2A3818` to `#28311B`
419
+ - `Green100` has changed from `#DFFCF0` to `#DCFFF1`
420
+ - `Green1000` has changed from `#143C2B` to `#1C3329`
421
+ - `Teal100` has changed from `#E3FAFC` to `#E7F9FF`
422
+ - `Teal200` has changed from `#C1F0F5` to `#C6EDFB`
423
+ - `Teal300` has changed from `#8BDBE5` to `#9DD9EE`
424
+ - `Teal400` has changed from `#60C6D2` to `#6CC3E0`
425
+ - `Teal500` has changed from `#37B4C3` to `#42B2D7`
426
+ - `Teal600` has changed from `#1D9AAA` to `#2898BD`
427
+ - `Teal700` has changed from `#1D7F8C` to `#227D9B`
428
+ - `Teal800` has changed from `#206B74` to `#206A83`
429
+ - `Teal900` has changed from `#1D474C` to `#164555`
430
+ - `Teal1000` has changed from `#15373B` to `#1E3137`
431
+ - `Blue1000` has changed from `#092957` to `#1C2B41`
432
+ - `Purple1000` has changed from `#2B2451` to `#2B273F`
433
+ - `Magenta1000` has changed from `#421F34` to `#3D2232`
428
434
 
429
- #### Token changes
435
+ #### Token changes
430
436
 
431
- ##### Yellow accent backgrounds
437
+ ##### Yellow accent backgrounds
432
438
 
433
- Mapped to lighter shades to create differentiation with orange, and increase vibrancy:
439
+ Mapped to lighter shades to create differentiation with orange, and increase vibrancy:
434
440
 
435
- - \[Light theme\] `color.background.yellow.subtle`: `Yellow400` → `Yellow300`
436
- - \[Light theme\] `color.background.accent.yellow.subtle.hovered`: `Yellow300` → `Yellow400`
437
- - \[Light theme\] `color.background.accent.yellow.subtle.pressed`: `Yellow200` → `Yellow500`
441
+ - \[Light theme\] `color.background.yellow.subtle`: `Yellow400` → `Yellow300`
442
+ - \[Light theme\] `color.background.accent.yellow.subtle.hovered`: `Yellow300` → `Yellow400`
443
+ - \[Light theme\] `color.background.accent.yellow.subtle.pressed`: `Yellow200` → `Yellow500`
438
444
 
439
- ##### Bold warning backgrounds
445
+ ##### Bold warning backgrounds
440
446
 
441
- Mapped to lighter shades to increase vibrancy:
447
+ Mapped to lighter shades to increase vibrancy:
442
448
 
443
- - \[Light theme\] `color.background.warning.bold`: `Yellow400` → `Yellow300`
444
- - \[Dark mode\]: `color.background.warning.bold`: `Yellow400` → `Yellow300`
445
- - \[Light theme\] `color.background.warning.bold.hovered`: `Yellow500` → `Yellow400`
446
- - \[Dark mode\]: `color.background.warning.bold.hovered`: `Yellow300` → `Yellow400`
447
- - \[Light theme\] `color.background.warning.bold.pressed`: `Yellow600` → `Yellow500`
448
- - \[Dark mode\]: `color.background.warning.bold.pressed`: `Yellow200` → `Yellow500`
449
+ - \[Light theme\] `color.background.warning.bold`: `Yellow400` → `Yellow300`
450
+ - \[Dark mode\]: `color.background.warning.bold`: `Yellow400` → `Yellow300`
451
+ - \[Light theme\] `color.background.warning.bold.hovered`: `Yellow500` → `Yellow400`
452
+ - \[Dark mode\]: `color.background.warning.bold.hovered`: `Yellow300` → `Yellow400`
453
+ - \[Light theme\] `color.background.warning.bold.pressed`: `Yellow600` → `Yellow500`
454
+ - \[Dark mode\]: `color.background.warning.bold.pressed`: `Yellow200` → `Yellow500`
449
455
 
450
- ##### Icon:
456
+ ##### Icon
451
457
 
452
- Mapped red/danger icons to darker shades to create distinction between orange and red icons:
458
+ Mapped red/danger icons to darker shades to create distinction between orange and red icons:
453
459
 
454
- - \[Light theme\]: `color.icon.accent.red`: `Red600` → `Red700`
455
- - \[Dark theme\]: `color.icon.accent.red`: `Red500` → `Red600`
456
- - \[Dark theme\]: `color.icon.accent.yellow`: `Yellow500` → `Yellow300`
457
- - \[Light theme\]: `color.icon.danger`: `Red600` → `Red700`
458
- - \[Dark theme\]: `color.icon.warning`: `Yellow500` → `Yellow300`
460
+ - \[Light theme\]: `color.icon.accent.red`: `Red600` → `Red700`
461
+ - \[Dark theme\]: `color.icon.accent.red`: `Red500` → `Red600`
462
+ - \[Dark theme\]: `color.icon.accent.yellow`: `Yellow500` → `Yellow300`
463
+ - \[Light theme\]: `color.icon.danger`: `Red600` → `Red700`
464
+ - \[Dark theme\]: `color.icon.warning`: `Yellow500` → `Yellow300`
459
465
 
460
466
  ## 1.26.1
461
467
 
462
468
  ### Patch Changes
463
469
 
464
- - [#40324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40324)
465
- [`67b68e00b3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67b68e00b3f) -
466
- Removed un-exported schema information from src and the package bundle
470
+ - [#40324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40324)
471
+ [`67b68e00b3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67b68e00b3f) - Removed
472
+ un-exported schema information from src and the package bundle
467
473
 
468
474
  ## 1.26.0
469
475
 
470
476
  ### Minor Changes
471
477
 
472
- - [#40801](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40801)
473
- [`f0f44726caa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0f44726caa) - We are
474
- testing increased contrast themes behind a feature flag. These are alternative themes that
475
- enable according to user contrast system preferences. If testing is successful they will be
476
- available in a later release.
478
+ - [#40801](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40801)
479
+ [`f0f44726caa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0f44726caa) - We are
480
+ testing increased contrast themes behind a feature flag. These are alternative themes that enable
481
+ according to user contrast system preferences. If testing is successful they will be available in
482
+ a later release.
477
483
 
478
484
  ## 1.25.2
479
485
 
480
486
  ### Patch Changes
481
487
 
482
- - [#41083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41083)
483
- [`efb7932428f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efb7932428f) - Fix a
484
- bug introduced in @atlaskit/tokens@1.25.1 that added an invalid peer dependency. The previous
485
- version has been marked as deprecated.
488
+ - [#41083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41083)
489
+ [`efb7932428f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efb7932428f) - Fix a
490
+ bug introduced in @atlaskit/tokens@1.25.1 that added an invalid peer dependency. The previous
491
+ version has been marked as deprecated.
486
492
 
487
493
  ## 1.25.1
488
494
 
489
495
  ### Patch Changes
490
496
 
491
- - [#40299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40299)
492
- [`b1882fdd842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1882fdd842) - Change
493
- typography token naming to be more verbose.
497
+ - [#40299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40299)
498
+ [`b1882fdd842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1882fdd842) - Change
499
+ typography token naming to be more verbose.
494
500
 
495
501
  ## 1.25.0
496
502
 
497
503
  ### Minor Changes
498
504
 
499
- - [#40253](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40253)
500
- [`6125697f0b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6125697f0b4) - We are
501
- testing adjustments to our color palette and design tokens behind a feature flag. These changes
502
- make certain colors more distinguishable, improves the visual appearance of warning and yellow
503
- accent backgrounds, and reduces saturation for subtle backgrounds in dark mode.
505
+ - [#40253](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40253)
506
+ [`6125697f0b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6125697f0b4) - We are
507
+ testing adjustments to our color palette and design tokens behind a feature flag. These changes
508
+ make certain colors more distinguishable, improves the visual appearance of warning and yellow
509
+ accent backgrounds, and reduces saturation for subtle backgrounds in dark mode.
504
510
 
505
- These changes are available behind a feature flag; if this test is successful it will be
506
- available in an upcoming minor release.
511
+ These changes are available behind a feature flag; if this test is successful it will be available
512
+ in an upcoming minor release.
507
513
 
508
514
  ## 1.24.0
509
515
 
510
516
  ### Minor Changes
511
517
 
512
- - [#40041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40041)
513
- [`0c2e2baec38`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c2e2baec38) - Added
514
- new `color.link.visited` token.
518
+ - [#40041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40041)
519
+ [`0c2e2baec38`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c2e2baec38) - Added
520
+ new `color.link.visited` token.
515
521
 
516
522
  ## 1.23.0
517
523
 
518
524
  ### Minor Changes
519
525
 
520
- - [#38420](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38420)
521
- [`5a967ac2397`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a967ac2397) - Adds
522
- two new synchronous theme configuration utilities:
526
+ - [#38420](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38420)
527
+ [`5a967ac2397`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a967ac2397) - Adds two
528
+ new synchronous theme configuration utilities:
523
529
 
524
- - `enableGlobalTheme` is a synchronous version of `setGlobalTheme` that sets data attributes
525
- on the page and takes a themeLoader
526
- - `UNSAFE_loadCustomThemeStyles` provides a synchronous way to generate and apply custom theme
527
- styles to the page. It can be accessed from a new entrypoint,
528
- `@atlaskit/tokens/custom-themes`
530
+ - `enableGlobalTheme` is a synchronous version of `setGlobalTheme` that sets data attributes on
531
+ the page and takes a themeLoader
532
+ - `UNSAFE_loadCustomThemeStyles` provides a synchronous way to generate and apply custom theme
533
+ styles to the page. It can be accessed from a new entrypoint, `@atlaskit/tokens/custom-themes`
529
534
 
530
535
  ## 1.22.1
531
536
 
532
537
  ### Patch Changes
533
538
 
534
- - [#40072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40072)
535
- [`7b6548e6ad0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6548e6ad0) -
536
- Internally moves the logic which applies spacing as a defaulty enabled theme to be more inline
537
- with other themes.
539
+ - [#40072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40072)
540
+ [`7b6548e6ad0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6548e6ad0) -
541
+ Internally moves the logic which applies spacing as a defaulty enabled theme to be more inline
542
+ with other themes.
538
543
 
539
544
  ## 1.22.0
540
545
 
541
546
  ### Minor Changes
542
547
 
543
- - [#39854](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39854)
544
- [`3d5c5dbe08c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5c5dbe08c) - Adds
545
- UNSAFE_textTransformUppercase token. This token should not be used directly unless to aid a
546
- migration.
548
+ - [#39854](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39854)
549
+ [`3d5c5dbe08c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5c5dbe08c) - Adds
550
+ UNSAFE_textTransformUppercase token. This token should not be used directly unless to aid a
551
+ migration.
547
552
 
548
553
  ## 1.21.1
549
554
 
550
555
  ### Patch Changes
551
556
 
552
- - [#39653](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39653)
553
- [`12c0a5a6f2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12c0a5a6f2e) - The
554
- tokens Babel plugin will now add opacity to shadow token values if they don't already contain
555
- them.
557
+ - [#39653](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39653)
558
+ [`12c0a5a6f2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12c0a5a6f2e) - The
559
+ tokens Babel plugin will now add opacity to shadow token values if they don't already contain
560
+ them.
556
561
 
557
562
  ## 1.21.0
558
563
 
559
564
  ### Minor Changes
560
565
 
561
- - [#39578](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39578)
562
- [`9eee297c402`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eee297c402) - Added
563
- negative space tokens from -2px to -32px (space.negative.025 to space.negative.400).
566
+ - [#39578](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39578)
567
+ [`9eee297c402`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eee297c402) - Added
568
+ negative space tokens from -2px to -32px (space.negative.025 to space.negative.400).
564
569
 
565
570
  ## 1.20.1
566
571
 
567
572
  ### Patch Changes
568
573
 
569
- - [#39641](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39641)
570
- [`4be033a9cb5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4be033a9cb5) - Update
571
- types
574
+ - [#39641](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39641)
575
+ [`4be033a9cb5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4be033a9cb5) - Update
576
+ types
572
577
 
573
578
  ## 1.20.0
574
579
 
575
580
  ### Minor Changes
576
581
 
577
- - [#38118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38118)
578
- [`0a95595cd3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a95595cd3e) - Space
579
- tokens are now enabled by default whenever `setGlobalTheme` is called.
582
+ - [#38118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38118)
583
+ [`0a95595cd3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a95595cd3e) - Space
584
+ tokens are now enabled by default whenever `setGlobalTheme` is called.
580
585
 
581
586
  ## 1.19.0
582
587
 
583
588
  ### Minor Changes
584
589
 
585
- - [#39430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39430)
586
- [`ff1a0d8dcfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff1a0d8dcfd) -
587
- Introduces 80 new accent interaction tokens:
588
-
589
- - color.background.accent.blue.subtlest.hovered
590
- - color.background.accent.blue.subtlest.pressed
591
- - color.background.accent.blue.subtler.hovered
592
- - color.background.accent.blue.subtler.pressed
593
- - color.background.accent.blue.subtle.hovered
594
- - color.background.accent.blue.subtle.pressed
595
- - color.background.accent.blue.bolder.hovered
596
- - color.background.accent.blue.bolder.pressed
597
-
598
- - color.background.accent.lime.subtlest.hovered
599
- - color.background.accent.lime.subtlest.pressed
600
- - color.background.accent.lime.subtler.hovered
601
- - color.background.accent.lime.subtler.pressed
602
- - color.background.accent.lime.subtle.hovered
603
- - color.background.accent.lime.subtle.pressed
604
- - color.background.accent.lime.bolder.hovered
605
- - color.background.accent.lime.bolder.pressed
606
-
607
- - color.background.accent.red.subtlest.hovered
608
- - color.background.accent.red.subtlest.pressed
609
- - color.background.accent.red.subtler.hovered
610
- - color.background.accent.red.subtler.pressed
611
- - color.background.accent.red.subtle.hovered
612
- - color.background.accent.red.subtle.pressed
613
- - color.background.accent.red.bolder.hovered
614
- - color.background.accent.red.bolder.pressed
615
-
616
- - color.background.accent.orange.subtlest.hovered
617
- - color.background.accent.orange.subtlest.pressed
618
- - color.background.accent.orange.subtler.hovered
619
- - color.background.accent.orange.subtler.pressed
620
- - color.background.accent.orange.subtle.hovered
621
- - color.background.accent.orange.subtle.pressed
622
- - color.background.accent.orange.bolder.hovered
623
- - color.background.accent.orange.bolder.pressed
624
-
625
- - color.background.accent.yellow.subtlest.hovered
626
- - color.background.accent.yellow.subtlest.pressed
627
- - color.background.accent.yellow.subtler.hovered
628
- - color.background.accent.yellow.subtler.pressed
629
- - color.background.accent.yellow.subtle.hovered
630
- - color.background.accent.yellow.subtle.pressed
631
- - color.background.accent.yellow.bolder.hovered
632
- - color.background.accent.yellow.bolder.pressed
633
-
634
- - color.background.accent.green.subtlest.hovered
635
- - color.background.accent.green.subtlest.pressed
636
- - color.background.accent.green.subtler.hovered
637
- - color.background.accent.green.subtler.pressed
638
- - color.background.accent.green.subtle.hovered
639
- - color.background.accent.green.subtle.pressed
640
- - color.background.accent.green.bolder.hovered
641
- - color.background.accent.green.bolder.pressed
642
-
643
- - color.background.accent.teal.subtlest.hovered
644
- - color.background.accent.teal.subtlest.pressed
645
- - color.background.accent.teal.subtler.hovered
646
- - color.background.accent.teal.subtler.pressed
647
- - color.background.accent.teal.subtle.hovered
648
- - color.background.accent.teal.subtle.pressed
649
- - color.background.accent.teal.bolder.hovered
650
- - color.background.accent.teal.bolder.pressed
651
-
652
- - color.background.accent.purple.subtlest.hovered
653
- - color.background.accent.purple.subtlest.pressed
654
- - color.background.accent.purple.subtler.hovered
655
- - color.background.accent.purple.subtler.pressed
656
- - color.background.accent.purple.subtle.hovered
657
- - color.background.accent.purple.subtle.pressed
658
- - color.background.accent.purple.bolder.hovered
659
- - color.background.accent.purple.bolder.pressed
660
-
661
- - color.background.accent.magenta.subtlest.hovered
662
- - color.background.accent.magenta.subtlest.pressed
663
- - color.background.accent.magenta.subtler.hovered
664
- - color.background.accent.magenta.subtler.pressed
665
- - color.background.accent.magenta.subtle.hovered
666
- - color.background.accent.magenta.subtle.pressed
667
- - color.background.accent.magenta.bolder.hovered
668
- - color.background.accent.magenta.bolder.pressed
669
-
670
- - color.background.accent.gray.subtlest.hovered
671
- - color.background.accent.gray.subtlest.pressed
672
- - color.background.accent.gray.subtler.hovered
673
- - color.background.accent.gray.subtler.pressed
674
- - color.background.accent.gray.subtle.hovered
675
- - color.background.accent.gray.subtle.pressed
676
- - color.background.accent.gray.bolder.hovered
677
- - color.background.accent.gray.bolder.pressed
590
+ - [#39430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39430)
591
+ [`ff1a0d8dcfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff1a0d8dcfd) -
592
+ Introduces 80 new accent interaction tokens:
593
+
594
+ - color.background.accent.blue.subtlest.hovered
595
+ - color.background.accent.blue.subtlest.pressed
596
+ - color.background.accent.blue.subtler.hovered
597
+ - color.background.accent.blue.subtler.pressed
598
+ - color.background.accent.blue.subtle.hovered
599
+ - color.background.accent.blue.subtle.pressed
600
+ - color.background.accent.blue.bolder.hovered
601
+ - color.background.accent.blue.bolder.pressed
602
+
603
+ - color.background.accent.lime.subtlest.hovered
604
+ - color.background.accent.lime.subtlest.pressed
605
+ - color.background.accent.lime.subtler.hovered
606
+ - color.background.accent.lime.subtler.pressed
607
+ - color.background.accent.lime.subtle.hovered
608
+ - color.background.accent.lime.subtle.pressed
609
+ - color.background.accent.lime.bolder.hovered
610
+ - color.background.accent.lime.bolder.pressed
611
+
612
+ - color.background.accent.red.subtlest.hovered
613
+ - color.background.accent.red.subtlest.pressed
614
+ - color.background.accent.red.subtler.hovered
615
+ - color.background.accent.red.subtler.pressed
616
+ - color.background.accent.red.subtle.hovered
617
+ - color.background.accent.red.subtle.pressed
618
+ - color.background.accent.red.bolder.hovered
619
+ - color.background.accent.red.bolder.pressed
620
+
621
+ - color.background.accent.orange.subtlest.hovered
622
+ - color.background.accent.orange.subtlest.pressed
623
+ - color.background.accent.orange.subtler.hovered
624
+ - color.background.accent.orange.subtler.pressed
625
+ - color.background.accent.orange.subtle.hovered
626
+ - color.background.accent.orange.subtle.pressed
627
+ - color.background.accent.orange.bolder.hovered
628
+ - color.background.accent.orange.bolder.pressed
629
+
630
+ - color.background.accent.yellow.subtlest.hovered
631
+ - color.background.accent.yellow.subtlest.pressed
632
+ - color.background.accent.yellow.subtler.hovered
633
+ - color.background.accent.yellow.subtler.pressed
634
+ - color.background.accent.yellow.subtle.hovered
635
+ - color.background.accent.yellow.subtle.pressed
636
+ - color.background.accent.yellow.bolder.hovered
637
+ - color.background.accent.yellow.bolder.pressed
638
+
639
+ - color.background.accent.green.subtlest.hovered
640
+ - color.background.accent.green.subtlest.pressed
641
+ - color.background.accent.green.subtler.hovered
642
+ - color.background.accent.green.subtler.pressed
643
+ - color.background.accent.green.subtle.hovered
644
+ - color.background.accent.green.subtle.pressed
645
+ - color.background.accent.green.bolder.hovered
646
+ - color.background.accent.green.bolder.pressed
647
+
648
+ - color.background.accent.teal.subtlest.hovered
649
+ - color.background.accent.teal.subtlest.pressed
650
+ - color.background.accent.teal.subtler.hovered
651
+ - color.background.accent.teal.subtler.pressed
652
+ - color.background.accent.teal.subtle.hovered
653
+ - color.background.accent.teal.subtle.pressed
654
+ - color.background.accent.teal.bolder.hovered
655
+ - color.background.accent.teal.bolder.pressed
656
+
657
+ - color.background.accent.purple.subtlest.hovered
658
+ - color.background.accent.purple.subtlest.pressed
659
+ - color.background.accent.purple.subtler.hovered
660
+ - color.background.accent.purple.subtler.pressed
661
+ - color.background.accent.purple.subtle.hovered
662
+ - color.background.accent.purple.subtle.pressed
663
+ - color.background.accent.purple.bolder.hovered
664
+ - color.background.accent.purple.bolder.pressed
665
+
666
+ - color.background.accent.magenta.subtlest.hovered
667
+ - color.background.accent.magenta.subtlest.pressed
668
+ - color.background.accent.magenta.subtler.hovered
669
+ - color.background.accent.magenta.subtler.pressed
670
+ - color.background.accent.magenta.subtle.hovered
671
+ - color.background.accent.magenta.subtle.pressed
672
+ - color.background.accent.magenta.bolder.hovered
673
+ - color.background.accent.magenta.bolder.pressed
674
+
675
+ - color.background.accent.gray.subtlest.hovered
676
+ - color.background.accent.gray.subtlest.pressed
677
+ - color.background.accent.gray.subtler.hovered
678
+ - color.background.accent.gray.subtler.pressed
679
+ - color.background.accent.gray.subtle.hovered
680
+ - color.background.accent.gray.subtle.pressed
681
+ - color.background.accent.gray.bolder.hovered
682
+ - color.background.accent.gray.bolder.pressed
678
683
 
679
684
  ## 1.18.0
680
685
 
681
686
  ### Minor Changes
682
687
 
683
- - [#39135](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39135)
684
- [`c27587454bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c27587454bb) - Update
685
- to include additional body token.
688
+ - [#39135](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39135)
689
+ [`c27587454bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c27587454bb) - Update
690
+ to include additional body token.
686
691
 
687
692
  ## 1.17.1
688
693
 
689
694
  ### Patch Changes
690
695
 
691
- - [#38368](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38368)
692
- [`11d00ba7be0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11d00ba7be0) - Fixes
693
- style-dictionary token references. allowing semantic tokens to be aliases of other semantic
694
- tokens
696
+ - [#38368](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38368)
697
+ [`11d00ba7be0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11d00ba7be0) - Fixes
698
+ style-dictionary token references. allowing semantic tokens to be aliases of other semantic tokens
695
699
 
696
700
  ## 1.17.0
697
701
 
698
702
  ### Minor Changes
699
703
 
700
- - [#38226](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38226)
701
- [`e6d73d0e019`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d73d0e019) -
702
- Removes inset from elevation shadow borders.
704
+ - [#38226](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38226)
705
+ [`e6d73d0e019`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d73d0e019) - Removes
706
+ inset from elevation shadow borders.
703
707
 
704
708
  ## 1.16.0
705
709
 
706
710
  ### Minor Changes
707
711
 
708
- - [#37789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37789)
709
- [`031034da425`](https://bitbucket.org/atlassian/atlassian-frontend/commits/031034da425) -
710
- Introduces surface detection through the use of design tokens/CSS variables:
712
+ - [#37789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37789)
713
+ [`031034da425`](https://bitbucket.org/atlassian/atlassian-frontend/commits/031034da425) -
714
+ Introduces surface detection through the use of design tokens/CSS variables:
711
715
 
712
- - The `utility.elevation.surface.current` design token allows UI to be styled with a color
713
- based on a parent element's surface color.
714
- - The `CURRENT_SURFACE_CSS_VAR` constant is exported to enable the current surface CSS
715
- variable to be set.
716
+ - The `utility.elevation.surface.current` design token allows UI to be styled with a color based
717
+ on a parent element's surface color.
718
+ - The `CURRENT_SURFACE_CSS_VAR` constant is exported to enable the current surface CSS variable to
719
+ be set.
716
720
 
717
721
  ## 1.15.2
718
722
 
719
723
  ### Patch Changes
720
724
 
721
- - [#39128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39128)
722
- [`3c114ea4257`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c114ea4257) - Update
723
- type definitions to conform to inherited changes from `@types/react@16.14.15`.
725
+ - [#39128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39128)
726
+ [`3c114ea4257`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c114ea4257) - Update
727
+ type definitions to conform to inherited changes from `@types/react@16.14.15`.
724
728
 
725
729
  ## 1.15.1
726
730
 
727
731
  ### Patch Changes
728
732
 
729
- - [#38620](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38620)
730
- [`2b79cf3df13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b79cf3df13) -
731
- Patches certain token values in the internal typography theme.
733
+ - [#38620](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38620)
734
+ [`2b79cf3df13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b79cf3df13) - Patches
735
+ certain token values in the internal typography theme.
732
736
 
733
737
  ## 1.15.0
734
738
 
735
739
  ### Minor Changes
736
740
 
737
- - [#38433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38433)
738
- [`6b31bb82f08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b31bb82f08) -
739
- Introduces experimental typography theme (v2).
741
+ - [#38433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38433)
742
+ [`6b31bb82f08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b31bb82f08) -
743
+ Introduces experimental typography theme (v2).
740
744
 
741
745
  ## 1.14.2
742
746
 
743
747
  ### Patch Changes
744
748
 
745
- - [#37003](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37003)
746
- [`8e1667c2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e1667c2c03) - Adds
747
- the ability to specify a fallback theme in the tokens Babel plugin via the `defaultTheme`
748
- option. Also adds 'legacy-light' as one of the available themes, while keeping 'light' as the
749
- default if nothing is provided.
749
+ - [#37003](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37003)
750
+ [`8e1667c2c03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e1667c2c03) - Adds the
751
+ ability to specify a fallback theme in the tokens Babel plugin via the `defaultTheme` option. Also
752
+ adds 'legacy-light' as one of the available themes, while keeping 'light' as the default if
753
+ nothing is provided.
750
754
 
751
755
  ## 1.14.1
752
756
 
753
757
  ### Patch Changes
754
758
 
755
- - [#37532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37532)
756
- [`b423f118bb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b423f118bb8) -
757
- Adjusted color generation system for custom theming to improve accessibility.
759
+ - [#37532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37532)
760
+ [`b423f118bb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b423f118bb8) - Adjusted
761
+ color generation system for custom theming to improve accessibility.
758
762
 
759
763
  ## 1.14.0
760
764
 
761
765
  ### Minor Changes
762
766
 
763
- - [#37768](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37768)
764
- [`d9d7c284713`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d7c284713) - Add
765
- custom theming support to `ThemeObjectToString` and `ThemeStringToObject` functions.
767
+ - [#37768](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37768)
768
+ [`d9d7c284713`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d7c284713) - Add
769
+ custom theming support to `ThemeObjectToString` and `ThemeStringToObject` functions.
766
770
 
767
771
  ## 1.13.2
768
772
 
769
773
  ### Patch Changes
770
774
 
771
- - [#37534](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37534)
772
- [`f29001ccc8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f29001ccc8c) -
773
- Renamed type "CustomBrandSchema" to "ThemeOptionsSchema" for experimental custom theming API
775
+ - [#37534](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37534)
776
+ [`f29001ccc8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f29001ccc8c) - Renamed
777
+ type "CustomBrandSchema" to "ThemeOptionsSchema" for experimental custom theming API
774
778
 
775
779
  ## 1.13.1
776
780
 
777
781
  ### Patch Changes
778
782
 
779
- - [#37182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37182)
780
- [`74f7af9882b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74f7af9882b) - [ux]
781
- correct fallback color of token color.border.focused to meet contrast requirement
783
+ - [#37182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37182)
784
+ [`74f7af9882b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74f7af9882b) - [ux]
785
+ correct fallback color of token color.border.focused to meet contrast requirement
782
786
 
783
787
  ## 1.13.0
784
788
 
785
789
  ### Minor Changes
786
790
 
787
- - [#36967](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36967)
788
- [`bc512702bdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc512702bdc) -
789
- Introduces new brand background tokens.
791
+ - [#36967](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36967)
792
+ [`bc512702bdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc512702bdc) -
793
+ Introduces new brand background tokens.
790
794
 
791
- - `color.background.brand.subtlest` - Use for the background of elements used to reinforce our
792
- brand, but with less emphasis.
793
- - `color.background.brand.subtlest.hovered` - Hovered state of
794
- color.background.brand.subtlest.
795
- - `color.background.brand.subtlest.pressed` - Pressed state of
796
- color.background.brand.subtlest.
795
+ - `color.background.brand.subtlest` - Use for the background of elements used to reinforce our
796
+ brand, but with less emphasis.
797
+ - `color.background.brand.subtlest.hovered` - Hovered state of color.background.brand.subtlest.
798
+ - `color.background.brand.subtlest.pressed` - Pressed state of color.background.brand.subtlest.
797
799
 
798
- - `color.background.brand.boldest` - Use for the background of elements used to reinforce our
799
- brand, that need to stand out a lot.
800
- - `color.background.brand.boldest.hovered` - Hovered state of color.background.brand.boldest.
801
- - `color.background.brand.boldest.pressed` - Pressed state of color.background.brand.boldest.
800
+ - `color.background.brand.boldest` - Use for the background of elements used to reinforce our
801
+ brand, that need to stand out a lot.
802
+ - `color.background.brand.boldest.hovered` - Hovered state of color.background.brand.boldest.
803
+ - `color.background.brand.boldest.pressed` - Pressed state of color.background.brand.boldest.
802
804
 
803
- Updates custom color generation system with new brand background tokens.
805
+ Updates custom color generation system with new brand background tokens.
804
806
 
805
807
  ## 1.12.0
806
808
 
807
809
  ### Minor Changes
808
810
 
809
- - [#36501](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36501)
810
- [`beba2779d31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/beba2779d31) - Add
811
- experimental support for custom theming via the `UNSAFE_themeOptions` field in `themeState`.
811
+ - [#36501](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36501)
812
+ [`beba2779d31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/beba2779d31) - Add
813
+ experimental support for custom theming via the `UNSAFE_themeOptions` field in `themeState`.
812
814
 
813
- This option is supported in the following functions:
815
+ This option is supported in the following functions:
814
816
 
815
- - `setGlobalTheme()`: optionally generates and loads customized themes based on the options
816
- provided, and sets the `data-custom-theme` attribute on page's HTML tag.
817
- - `getThemeStyles()`: returns additional style objects for constructing custom theme `<style>`
818
- tags.
819
- - `getThemeHtmlAttrs()`: now supports the `data-custom-theme` attribute.
817
+ - `setGlobalTheme()`: optionally generates and loads customized themes based on the options
818
+ provided, and sets the `data-custom-theme` attribute on page's HTML tag.
819
+ - `getThemeStyles()`: returns additional style objects for constructing custom theme `<style>`
820
+ tags.
821
+ - `getThemeHtmlAttrs()`: now supports the `data-custom-theme` attribute.
820
822
 
821
- Custom themes are generated at runtime based on the options provided. The theme generation logic
822
- is lazy-loaded only when `UNSAFE_themeOptions` is set.
823
+ Custom themes are generated at runtime based on the options provided. The theme generation logic
824
+ is lazy-loaded only when `UNSAFE_themeOptions` is set.
823
825
 
824
826
  ## 1.11.3
825
827
 
826
828
  ### Patch Changes
827
829
 
828
- - [#36457](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36457)
829
- [`1b40a9ff426`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b40a9ff426) - update
830
- border.input.color to DarkNeutral600
830
+ - [#36457](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36457)
831
+ [`1b40a9ff426`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b40a9ff426) - update
832
+ border.input.color to DarkNeutral600
831
833
 
832
834
  ## 1.11.2
833
835
 
834
836
  ### Patch Changes
835
837
 
836
- - [#36334](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36334)
837
- [`5f3a4279435`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f3a4279435) - Fixes
838
- invalid default values assigned to shadow tokens in the token-default-values.tsx artifact
839
- - [#36279](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36279)
840
- [`694b79161b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/694b79161b8) -
841
- Corrects Lime chart tokens in the dark mode theme so they use the correct base tokens
838
+ - [#36334](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36334)
839
+ [`5f3a4279435`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f3a4279435) - Fixes
840
+ invalid default values assigned to shadow tokens in the token-default-values.tsx artifact
841
+ - [#36279](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36279)
842
+ [`694b79161b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/694b79161b8) - Corrects
843
+ Lime chart tokens in the dark mode theme so they use the correct base tokens
842
844
 
843
845
  ## 1.11.1
844
846
 
845
847
  ### Patch Changes
846
848
 
847
- - [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441)
848
- [`7053f18ecc5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7053f18ecc5) - Added
849
- suggest metadata to shape tokens to aid future migration suggestions.
850
- - [`ba43427b3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba43427b3e8) -
851
- Internal changes to account for introduction of shape/radius tokens.
849
+ - [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441)
850
+ [`7053f18ecc5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7053f18ecc5) - Added
851
+ suggest metadata to shape tokens to aid future migration suggestions.
852
+ - [`ba43427b3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba43427b3e8) - Internal
853
+ changes to account for introduction of shape/radius tokens.
852
854
 
853
855
  ## 1.11.0
854
856
 
855
857
  ### Minor Changes
856
858
 
857
- - [#36265](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36265)
858
- [`c96e003db64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c96e003db64) -
859
- Following on from 1.7.0, shape tokens are no longer being enabled behind a feature flag. Only
860
- space tokens will be enabled by default when the feature flag is active.
859
+ - [#36265](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36265)
860
+ [`c96e003db64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c96e003db64) -
861
+ Following on from 1.7.0, shape tokens are no longer being enabled behind a feature flag. Only
862
+ space tokens will be enabled by default when the feature flag is active.
861
863
 
862
864
  ## 1.10.2
863
865
 
864
866
  ### Patch Changes
865
867
 
866
- - [#36218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36218)
867
- [`7c1c449eb96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c1c449eb96) -
868
- Updated space token descriptions.
868
+ - [#36218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36218)
869
+ [`7c1c449eb96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c1c449eb96) - Updated
870
+ space token descriptions.
869
871
 
870
872
  ## 1.10.1
871
873
 
872
874
  ### Patch Changes
873
875
 
874
- - [#36072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36072)
875
- [`7fb8fb4fbbb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fb8fb4fbbb) - -
876
- Fixed an issue where `getCSSCustomProperty` would return the incorrect CSS variable names for
877
- space tokens.
878
- - Updated space token descriptions.
876
+ - [#36072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36072)
877
+ [`7fb8fb4fbbb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fb8fb4fbbb) - - Fixed
878
+ an issue where `getCSSCustomProperty` would return the incorrect CSS variable names for space
879
+ tokens.
880
+ - Updated space token descriptions.
879
881
 
880
882
  ## 1.10.0
881
883
 
882
884
  ### Minor Changes
883
885
 
884
- - [#33680](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33680)
885
- [`31426322355`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31426322355) - - Add
886
- a new getAllThemeStyles() function that can be used for generating theme CSS files at build
887
- time.
888
- - Add an optional callback parameter to setGlobalTheme() that overrides the default theme
889
- loading functionality with the callback.
886
+ - [#33680](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33680)
887
+ [`31426322355`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31426322355) - - Add a
888
+ new getAllThemeStyles() function that can be used for generating theme CSS files at build time.
889
+ - Add an optional callback parameter to setGlobalTheme() that overrides the default theme loading
890
+ functionality with the callback.
890
891
 
891
892
  ## 1.9.1
892
893
 
893
894
  ### Patch Changes
894
895
 
895
- - [#35762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35762)
896
- [`7ab8146e433`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ab8146e433) -
897
- Re-introduce entry point for token-default-values
896
+ - [#35762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35762)
897
+ [`7ab8146e433`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ab8146e433) -
898
+ Re-introduce entry point for token-default-values
898
899
 
899
900
  ## 1.9.0
900
901
 
901
902
  ### Minor Changes
902
903
 
903
- - [#34744](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34744)
904
- [`06fb6792d1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06fb6792d1f) - Subtle
905
- adjustments to some color design tokens to improve the dark theme. These changes were previously
906
- being tested behind a feature flag.
904
+ - [#34744](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34744)
905
+ [`06fb6792d1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06fb6792d1f) - Subtle
906
+ adjustments to some color design tokens to improve the dark theme. These changes were previously
907
+ being tested behind a feature flag.
907
908
 
908
909
  ## 1.8.1
909
910
 
910
911
  ### Patch Changes
911
912
 
912
- - [#35111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35111)
913
- [`8f436f0c301`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f436f0c301) - extend
914
- border contrast feature flag to support confluence
913
+ - [#35111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35111)
914
+ [`8f436f0c301`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f436f0c301) - extend
915
+ border contrast feature flag to support confluence
915
916
 
916
917
  ## 1.8.0
917
918
 
918
919
  ### Minor Changes
919
920
 
920
- - [#35526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35526)
921
- [`e200f2340ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e200f2340ed) -
922
- Introduces new lime token set.
923
-
924
- - `color.text.accent.lime` - Use for lime text on subtlest and subtler lime accent backgrounds
925
- when there is no meaning tied to the color.
926
- - `color.text.accent.lime.bolder` - Use for lime text on subtle lime accent backgrounds when
927
- there is no meaning tied to the color.
928
- - `color.background.accent.lime.subtlest` - Use for lime backgrounds when there is no meaning
929
- tied to the color. Reserved for when you only want a hint of color.
930
- - `color.background.accent.lime.subtler` - Use for lime backgrounds when there is no meaning
931
- tied to the color, such as colored tags.
932
- - `color.background.accent.lime.subtle` - Use for vibrant lime backgrounds when there is no
933
- meaning tied to the color, such as colored tags.
934
- - `color.background.accent.lime.bolder` - Use for lime backgrounds when there is no meaning
935
- tied to the color, and the background needs to pass min 3:1 contrast requirements.
936
- - `color.icon.accent.lime` - Use for lime icons on non-bold backgrounds when there is no
937
- meaning tied to the color, such as file type icons.
938
- - `color.border.accent.lime` - Use for lime borders on non-bold backgrounds when there is no
939
- meaning tied to the color.
940
- - `color.chart.lime` - For data visualisation only.
941
- - `color.chart.lime.hovered` - Hovered state of color.chart.lime
942
- - `color.chart.lime.bolder` - For data visualisation only.
943
- - `color.chart.lime.bolder.hovered` - Hovered state of color.chart.lime.bolder
944
- - `color.chart.lime.boldest` - For data visualisation only.
945
- - `color.chart.lime.boldest.hovered` - Hovered state of color.chart.lime.boldest
921
+ - [#35526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35526)
922
+ [`e200f2340ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e200f2340ed) -
923
+ Introduces new lime token set.
924
+
925
+ - `color.text.accent.lime` - Use for lime text on subtlest and subtler lime accent backgrounds
926
+ when there is no meaning tied to the color.
927
+ - `color.text.accent.lime.bolder` - Use for lime text on subtle lime accent backgrounds when there
928
+ is no meaning tied to the color.
929
+ - `color.background.accent.lime.subtlest` - Use for lime backgrounds when there is no meaning tied
930
+ to the color. Reserved for when you only want a hint of color.
931
+ - `color.background.accent.lime.subtler` - Use for lime backgrounds when there is no meaning tied
932
+ to the color, such as colored tags.
933
+ - `color.background.accent.lime.subtle` - Use for vibrant lime backgrounds when there is no
934
+ meaning tied to the color, such as colored tags.
935
+ - `color.background.accent.lime.bolder` - Use for lime backgrounds when there is no meaning tied
936
+ to the color, and the background needs to pass min 3:1 contrast requirements.
937
+ - `color.icon.accent.lime` - Use for lime icons on non-bold backgrounds when there is no meaning
938
+ tied to the color, such as file type icons.
939
+ - `color.border.accent.lime` - Use for lime borders on non-bold backgrounds when there is no
940
+ meaning tied to the color.
941
+ - `color.chart.lime` - For data visualisation only.
942
+ - `color.chart.lime.hovered` - Hovered state of color.chart.lime
943
+ - `color.chart.lime.bolder` - For data visualisation only.
944
+ - `color.chart.lime.bolder.hovered` - Hovered state of color.chart.lime.bolder
945
+ - `color.chart.lime.boldest` - For data visualisation only.
946
+ - `color.chart.lime.boldest.hovered` - Hovered state of color.chart.lime.boldest
946
947
 
947
948
  ## 1.7.0
948
949
 
949
950
  ### Minor Changes
950
951
 
951
- - [#35590](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35590)
952
- [`85b5f222844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85b5f222844) - We are
953
- testing shape and space tokens behind a feature flag. These tokens will be enabled by default
954
- whenever `setGlobalTheme` is called. If this test is successful it will be available in a later
955
- release.
952
+ - [#35590](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35590)
953
+ [`85b5f222844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85b5f222844) - We are
954
+ testing shape and space tokens behind a feature flag. These tokens will be enabled by default
955
+ whenever `setGlobalTheme` is called. If this test is successful it will be available in a later
956
+ release.
956
957
 
957
958
  ## 1.6.0
958
959
 
959
960
  ### Minor Changes
960
961
 
961
- - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385)
962
- [`191bbd4a3c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/191bbd4a3c2) - Public
963
- changes to types for `setGlobalTheme` to match API - previously themes could be incorrectly
964
- applied ie the light theme could theoretically take the space theme as a valid value. No
965
- behavior changes. Internally the shape theme has been moved from experimental status. These
966
- tokens are now active however they remain disabled by default.
962
+ - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385)
963
+ [`191bbd4a3c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/191bbd4a3c2) - Public
964
+ changes to types for `setGlobalTheme` to match API - previously themes could be incorrectly
965
+ applied ie the light theme could theoretically take the space theme as a valid value. No behavior
966
+ changes. Internally the shape theme has been moved from experimental status. These tokens are now
967
+ active however they remain disabled by default.
967
968
 
968
969
  ### Patch Changes
969
970
 
970
- - [`98edc7e8b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/98edc7e8b62) - Patch
971
- for tokens metadata and descriptions.
971
+ - [`98edc7e8b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/98edc7e8b62) - Patch
972
+ for tokens metadata and descriptions.
972
973
 
973
974
  ## 1.5.2
974
975
 
975
976
  ### Patch Changes
976
977
 
977
- - [#34800](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34800)
978
- [`8be4cc2372f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8be4cc2372f) - update
979
- border color to Neutral500
978
+ - [#34800](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34800)
979
+ [`8be4cc2372f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8be4cc2372f) - update
980
+ border color to Neutral500
980
981
 
981
982
  ## 1.5.1
982
983
 
983
984
  ### Patch Changes
984
985
 
985
- - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652)
986
- [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans
987
- the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18
988
- migration work. The change is internal only and should not introduce any changes for the
989
- component consumers.
986
+ - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652)
987
+ [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the
988
+ use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration
989
+ work. The change is internal only and should not introduce any changes for the component
990
+ consumers.
990
991
 
991
992
  ## 1.5.0
992
993
 
993
994
  ### Minor Changes
994
995
 
995
- - [#34217](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34217)
996
- [`43d186af89c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/43d186af89c) - [ux]
997
- Updates spacing, typography metadata to apply rems or pixels depending on the target platform.
996
+ - [#34217](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34217)
997
+ [`43d186af89c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/43d186af89c) - [ux]
998
+ Updates spacing, typography metadata to apply rems or pixels depending on the target platform.
998
999
 
999
1000
  ### Patch Changes
1000
1001
 
1001
- - [`019af32072d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/019af32072d) - Add
1002
- shape token handling to the `ensure-design-token-usage-spacing` rule.
1002
+ - [`019af32072d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/019af32072d) - Add
1003
+ shape token handling to the `ensure-design-token-usage-spacing` rule.
1003
1004
 
1004
1005
  ## 1.4.4
1005
1006
 
1006
1007
  ### Patch Changes
1007
1008
 
1008
- - [#34445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34445)
1009
- [`33f10b7eb36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33f10b7eb36) -
1010
- Removing unused dependencies and dev dependencies
1009
+ - [#34445](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34445)
1010
+ [`33f10b7eb36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33f10b7eb36) - Removing
1011
+ unused dependencies and dev dependencies
1011
1012
 
1012
1013
  ## 1.4.3
1013
1014
 
1014
1015
  ### Patch Changes
1015
1016
 
1016
- - [#33905](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33905)
1017
- [`32e364bed0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32e364bed0b) - We are
1018
- testing color tweaks to the dark theme behind a feature flag.
1017
+ - [#33905](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33905)
1018
+ [`32e364bed0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32e364bed0b) - We are
1019
+ testing color tweaks to the dark theme behind a feature flag.
1019
1020
 
1020
1021
  ## 1.4.2
1021
1022
 
1022
1023
  ### Patch Changes
1023
1024
 
1024
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
1025
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
1026
- legacy types are published for TS 4.5-4.8
1025
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
1026
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
1027
+ legacy types are published for TS 4.5-4.8
1027
1028
 
1028
1029
  ## 1.4.1
1029
1030
 
1030
1031
  ### Patch Changes
1031
1032
 
1032
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
1033
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
1034
- Upgrade Typescript from `4.5.5` to `4.9.5`
1033
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
1034
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
1035
+ Typescript from `4.5.5` to `4.9.5`
1035
1036
 
1036
1037
  ## 1.4.0
1037
1038
 
1038
1039
  ### Minor Changes
1039
1040
 
1040
- - [#33329](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33329)
1041
- [`36158b8bcb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36158b8bcb9) - [ux]
1042
- update color.border.input to meet 3:1 contrast
1041
+ - [#33329](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33329)
1042
+ [`36158b8bcb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36158b8bcb9) - [ux]
1043
+ update color.border.input to meet 3:1 contrast
1043
1044
 
1044
1045
  ## 1.3.2
1045
1046
 
1046
1047
  ### Patch Changes
1047
1048
 
1048
- - [#33299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33299)
1049
- [`bae41641c82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bae41641c82) - Enable
1050
- the dark theme tweaks for Confluence behind a feature flag.
1049
+ - [#33299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33299)
1050
+ [`bae41641c82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bae41641c82) - Enable
1051
+ the dark theme tweaks for Confluence behind a feature flag.
1051
1052
 
1052
1053
  ## 1.3.1
1053
1054
 
1054
1055
  ### Patch Changes
1055
1056
 
1056
- - [#32858](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32858)
1057
- [`e55ef3fcfac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e55ef3fcfac) - Fixes
1058
- an issue where the dark theme tweaks (currently behind a feature flag) were not being displayed
1059
- in some cases due to a race condition.
1057
+ - [#32858](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32858)
1058
+ [`e55ef3fcfac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e55ef3fcfac) - Fixes an
1059
+ issue where the dark theme tweaks (currently behind a feature flag) were not being displayed in
1060
+ some cases due to a race condition.
1060
1061
 
1061
1062
  ## 1.3.0
1062
1063
 
1063
1064
  ### Minor Changes
1064
1065
 
1065
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
1066
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
1067
- minor dependency bump
1066
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
1067
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
1068
+ minor dependency bump
1068
1069
 
1069
1070
  ### Patch Changes
1070
1071
 
1071
- - Updated dependencies
1072
+ - Updated dependencies
1072
1073
 
1073
1074
  ## 1.2.19
1074
1075
 
1075
1076
  ### Patch Changes
1076
1077
 
1077
- - [#33005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33005)
1078
- [`1a1dc6a0370`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a1dc6a0370) -
1079
- Upgrade `@babel` scoped packages to `^7.20.0`
1078
+ - [#33005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33005)
1079
+ [`1a1dc6a0370`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a1dc6a0370) - Upgrade
1080
+ `@babel` scoped packages to `^7.20.0`
1080
1081
 
1081
1082
  ## 1.2.18
1082
1083
 
1083
1084
  ### Patch Changes
1084
1085
 
1085
- - [#32533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32533)
1086
- [`ea8c1af425d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea8c1af425d) - Fixes
1087
- a bug in `setGlobalTheme()` that caused both the light and dark themes to load when auto theme
1088
- switching was disabled — only one of the themes should be loaded in this case. It also fixes a
1089
- bug in `getThemeStyles()`, where the default color themes were loaded instead of the specified
1090
- theme.
1086
+ - [#32533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32533)
1087
+ [`ea8c1af425d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea8c1af425d) - Fixes a
1088
+ bug in `setGlobalTheme()` that caused both the light and dark themes to load when auto theme
1089
+ switching was disabled — only one of the themes should be loaded in this case. It also fixes a bug
1090
+ in `getThemeStyles()`, where the default color themes were loaded instead of the specified theme.
1091
1091
 
1092
1092
  ## 1.2.17
1093
1093
 
1094
1094
  ### Patch Changes
1095
1095
 
1096
- - [#32434](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32434)
1097
- [`6cf7fc4647d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cf7fc4647d) - Adds
1098
- color-scheme css property to color themes to ensure the correct scheme is used at all times.
1099
- Previously this was only part of the css-reset however in instances where that is not used this
1100
- property will always be applied
1096
+ - [#32434](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32434)
1097
+ [`6cf7fc4647d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cf7fc4647d) - Adds
1098
+ color-scheme css property to color themes to ensure the correct scheme is used at all times.
1099
+ Previously this was only part of the css-reset however in instances where that is not used this
1100
+ property will always be applied
1101
1101
 
1102
1102
  ## 1.2.16
1103
1103
 
1104
1104
  ### Patch Changes
1105
1105
 
1106
- - [#32333](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32333)
1107
- [`1ddf6dd6387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ddf6dd6387) - Adds a
1108
- beta contrast checking tool to token examples utilising a new "token pairing" algorithm to find
1109
- recommended pairs of foreground and background tokens. There is no change to API or bundle size.
1106
+ - [#32333](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32333)
1107
+ [`1ddf6dd6387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ddf6dd6387) - Adds a
1108
+ beta contrast checking tool to token examples utilising a new "token pairing" algorithm to find
1109
+ recommended pairs of foreground and background tokens. There is no change to API or bundle size.
1110
1110
 
1111
1111
  ## 1.2.15
1112
1112
 
1113
1113
  ### Patch Changes
1114
1114
 
1115
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
1116
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
1117
- remove before merging to master; dupe adf-schema via adf-utils
1115
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
1116
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
1117
+ remove before merging to master; dupe adf-schema via adf-utils
1118
1118
 
1119
1119
  ## 1.2.14
1120
1120
 
1121
1121
  ### Patch Changes
1122
1122
 
1123
- - [#32294](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32294)
1124
- [`e0460d5d989`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0460d5d989) - Usages
1125
- of `process` are now guarded by a `typeof` check.
1126
- - [#32308](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32308)
1127
- [`2efaed356e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2efaed356e0) -
1128
- Modified `color.text.accent.gray.bolder` token value for the dark theme.
1123
+ - [#32294](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32294)
1124
+ [`e0460d5d989`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0460d5d989) - Usages
1125
+ of `process` are now guarded by a `typeof` check.
1126
+ - [#32308](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32308)
1127
+ [`2efaed356e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2efaed356e0) - Modified
1128
+ `color.text.accent.gray.bolder` token value for the dark theme.
1129
1129
 
1130
1130
  ## 1.2.13
1131
1131
 
1132
1132
  ### Patch Changes
1133
1133
 
1134
- - [#32311](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32311)
1135
- [`a02eed2974e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02eed2974e) - Move
1136
- codegen into @atlassian scope to publish it to private registry
1134
+ - [#32311](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32311)
1135
+ [`a02eed2974e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02eed2974e) - Move
1136
+ codegen into @atlassian scope to publish it to private registry
1137
1137
 
1138
1138
  ## 1.2.12
1139
1139
 
1140
1140
  ### Patch Changes
1141
1141
 
1142
- - [#32209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32209)
1143
- [`ec8f1ac379a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec8f1ac379a) - Tweaks
1144
- to dark theme tokens (`background.selected` and `background.selected.pressed`) behind a feature
1145
- flag.
1142
+ - [#32209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32209)
1143
+ [`ec8f1ac379a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec8f1ac379a) - Tweaks
1144
+ to dark theme tokens (`background.selected` and `background.selected.pressed`) behind a feature
1145
+ flag.
1146
1146
 
1147
1147
  ## 1.2.11
1148
1148
 
1149
1149
  ### Patch Changes
1150
1150
 
1151
- - [#32057](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32057)
1152
- [`8ec4434b4c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ec4434b4c2) - The
1153
- return type for `useThemeObserver` now omits `auto` as a possible option for `colorMode`. From
1154
- the perspective of observers `auto` does not exist because `colorMode` is precalculated at
1155
- runtime.
1151
+ - [#32057](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32057)
1152
+ [`8ec4434b4c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ec4434b4c2) - The
1153
+ return type for `useThemeObserver` now omits `auto` as a possible option for `colorMode`. From the
1154
+ perspective of observers `auto` does not exist because `colorMode` is precalculated at runtime.
1156
1155
 
1157
1156
  ## 1.2.10
1158
1157
 
1159
1158
  ### Patch Changes
1160
1159
 
1161
- - [#32049](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32049)
1162
- [`80a0a472d01`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80a0a472d01) -
1163
- Onboard `@atlaskit/tokens` on push model consumption
1160
+ - [#32049](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32049)
1161
+ [`80a0a472d01`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80a0a472d01) - Onboard
1162
+ `@atlaskit/tokens` on push model consumption
1164
1163
 
1165
1164
  ## 1.2.9
1166
1165
 
1167
1166
  ### Patch Changes
1168
1167
 
1169
- - [#31793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31793)
1170
- [`aef90f8953b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aef90f8953b) - Tweaks
1171
- to a subset of dark theme tokens behind a feature flag.
1168
+ - [#31793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31793)
1169
+ [`aef90f8953b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aef90f8953b) - Tweaks
1170
+ to a subset of dark theme tokens behind a feature flag.
1172
1171
 
1173
1172
  ## 1.2.8
1174
1173
 
1175
1174
  ### Patch Changes
1176
1175
 
1177
- - [#31886](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31886)
1178
- [`de4f079569a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de4f079569a) - The
1179
- tokens babel-plugin will no longer run on files in node_module directories. This is to avoid
1180
- attempting to transform legacy tokens from older transitive dependencies.
1176
+ - [#31886](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31886)
1177
+ [`de4f079569a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de4f079569a) - The
1178
+ tokens babel-plugin will no longer run on files in node_module directories. This is to avoid
1179
+ attempting to transform legacy tokens from older transitive dependencies.
1181
1180
 
1182
1181
  ## 1.2.7
1183
1182
 
1184
1183
  ### Patch Changes
1185
1184
 
1186
- - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
1187
- [`23b381db41c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23b381db41c) -
1188
- Upgrades component types to support React 18.
1185
+ - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
1186
+ [`23b381db41c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23b381db41c) - Upgrades
1187
+ component types to support React 18.
1189
1188
 
1190
1189
  ## 1.2.6
1191
1190
 
1192
1191
  ### Patch Changes
1193
1192
 
1194
- - [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242)
1195
- [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) -
1196
- Internal change only. Replace usages of Inline/Stack with stable version from
1197
- `@atlaskit/primitives`.
1193
+ - [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242)
1194
+ [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal
1195
+ change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
1198
1196
 
1199
1197
  ## 1.2.5
1200
1198
 
1201
1199
  ### Patch Changes
1202
1200
 
1203
- - [#31155](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31155)
1204
- [`d1adc718599`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1adc718599) - Added
1205
- token-order entry-point, exported ActiveTokens type.
1201
+ - [#31155](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31155)
1202
+ [`d1adc718599`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1adc718599) - Added
1203
+ token-order entry-point, exported ActiveTokens type.
1206
1204
 
1207
1205
  ## 1.2.4
1208
1206
 
1209
1207
  ### Patch Changes
1210
1208
 
1211
- - [#30998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30998)
1212
- [`2717641f696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2717641f696) - The
1213
- getTokenValue helper now strips leading or trailing spaces if they exist.
1209
+ - [#30998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30998)
1210
+ [`2717641f696`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2717641f696) - The
1211
+ getTokenValue helper now strips leading or trailing spaces if they exist.
1214
1212
 
1215
1213
  ## 1.2.3
1216
1214
 
1217
1215
  ### Patch Changes
1218
1216
 
1219
- - [#30894](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30894)
1220
- [`e2b8df300f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2b8df300f2) - Pull
1221
- responsive helpers from `@atlaskit/primitives/responsive` instead of `@atlaskit/grid` as they've
1222
- been moved.
1217
+ - [#30894](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30894)
1218
+ [`e2b8df300f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2b8df300f2) - Pull
1219
+ responsive helpers from `@atlaskit/primitives/responsive` instead of `@atlaskit/grid` as they've
1220
+ been moved.
1223
1221
 
1224
1222
  ## 1.2.2
1225
1223
 
1226
1224
  ### Patch Changes
1227
1225
 
1228
- - [#30708](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30708)
1229
- [`67a01afe12b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67a01afe12b) - Add
1230
- internal and experimental token for border.width.0
1226
+ - [#30708](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30708)
1227
+ [`67a01afe12b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67a01afe12b) - Add
1228
+ internal and experimental token for border.width.0
1231
1229
 
1232
1230
  ## 1.2.1
1233
1231
 
1234
1232
  ### Patch Changes
1235
1233
 
1236
- - [#30125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30125)
1237
- [`7f5f23dcb68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f5f23dcb68) -
1238
- Introduce shape tokens to some packages.
1234
+ - [#30125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30125)
1235
+ [`7f5f23dcb68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f5f23dcb68) -
1236
+ Introduce shape tokens to some packages.
1239
1237
 
1240
1238
  ## 1.2.0
1241
1239
 
1242
1240
  ### Minor Changes
1243
1241
 
1244
- - [#30055](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30055)
1245
- [`64d30817221`](https://bitbucket.org/atlassian/atlassian-frontend/commits/64d30817221) -
1246
- Introduce experimental 'shape' tokens for use with border properties.
1242
+ - [#30055](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30055)
1243
+ [`64d30817221`](https://bitbucket.org/atlassian/atlassian-frontend/commits/64d30817221) -
1244
+ Introduce experimental 'shape' tokens for use with border properties.
1247
1245
 
1248
1246
  ## 1.1.0
1249
1247
 
1250
1248
  ### Minor Changes
1251
1249
 
1252
- - [#29387](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29387)
1253
- [`4b9aea55b97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b9aea55b97) -
1254
- Removed various unused experimental spacing tokens in favor of the `space.X` token format.
1250
+ - [#29387](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29387)
1251
+ [`4b9aea55b97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b9aea55b97) - Removed
1252
+ various unused experimental spacing tokens in favor of the `space.X` token format.
1255
1253
 
1256
- Removed:
1254
+ Removed:
1257
1255
 
1258
- - `spacing.scale`
1259
- - `spacing.scaleLinear`
1260
- - `spacing.size`
1261
- - `spacing.gap`
1262
- - `spacing.inset`
1263
- - `spacing.ecl`
1264
- - `spacing.ccc`
1256
+ - `spacing.scale`
1257
+ - `spacing.scaleLinear`
1258
+ - `spacing.size`
1259
+ - `spacing.gap`
1260
+ - `spacing.inset`
1261
+ - `spacing.ecl`
1262
+ - `spacing.ccc`
1265
1263
 
1266
1264
  ## 1.0.0
1267
1265
 
1268
1266
  ### Major Changes
1269
1267
 
1270
- - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
1271
- [`512be9e1854`](https://bitbucket.org/atlassian/atlassian-frontend/commits/512be9e1854) - This
1272
- PR introduces the 1.0 stable version of `@atlaskit/tokens`. With the changes introduced here,
1273
- the tokens package _will be considered stable and feature-complete moving forward_.
1268
+ - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
1269
+ [`512be9e1854`](https://bitbucket.org/atlassian/atlassian-frontend/commits/512be9e1854) - This PR
1270
+ introduces the 1.0 stable version of `@atlaskit/tokens`. With the changes introduced here, the
1271
+ tokens package _will be considered stable and feature-complete moving forward_.
1274
1272
 
1275
- #### 💥 Breaking change: Theme lazy-loading
1273
+ #### 💥 Breaking change: Theme lazy-loading
1276
1274
 
1277
- Previously, themes were exposed as static CSS files via custom entry-points. This worked quite
1278
- well but had a couple of obvious drawbacks.
1275
+ Previously, themes were exposed as static CSS files via custom entry-points. This worked quite well
1276
+ but had a couple of obvious drawbacks.
1279
1277
 
1280
- 1. CSS files depend on webpack/css-loading mechanisms (`style-loader`/`css-loader`) which
1281
- aren't available in all environments.
1278
+ 1. CSS files depend on webpack/css-loading mechanisms (`style-loader`/`css-loader`) which aren't
1279
+ available in all environments.
1282
1280
 
1283
- 2. Configuration and ordering of themes happened entirely in products, which becomes
1284
- increasingly harder to maintain as new themes & functionality are introduced
1281
+ 2. Configuration and ordering of themes happened entirely in products, which becomes increasingly
1282
+ harder to maintain as new themes & functionality are introduced
1285
1283
 
1286
- We have moved this to a lazy-loaded JS solution. Themes are now codegen'd into Javascript
1287
- modules, wrapped in a template literal string, then lazy-loaded and mounted to the head of the
1288
- document when required at runtime.
1284
+ We have moved this to a lazy-loaded JS solution. Themes are now codegen'd into Javascript modules,
1285
+ wrapped in a template literal string, then lazy-loaded and mounted to the head of the document when
1286
+ required at runtime.
1289
1287
 
1290
- **Benefits include:**
1288
+ **Benefits include:**
1291
1289
 
1292
- - More control over the ordering and composition of themes
1290
+ - More control over the ordering and composition of themes
1293
1291
 
1294
- - Automatic lazy-loading of new themes when `setGlobalTheme` is called by the client
1292
+ - Automatic lazy-loading of new themes when `setGlobalTheme` is called by the client
1295
1293
 
1296
- - Simplified bundler configuration
1294
+ - Simplified bundler configuration
1297
1295
 
1298
- - Improved portability
1296
+ - Improved portability
1299
1297
 
1300
- - Integrates with a new SSR solution for theme loading
1298
+ - Integrates with a new SSR solution for theme loading
1301
1299
 
1302
- **Changes:**
1300
+ **Changes:**
1303
1301
 
1304
- If you set themes using `setGlobalTheme` in your app, you can now remove manual imports of theme
1305
- CSS files from your app. The themes will be automatically added when `setGlobalTheme` is called.
1302
+ If you set themes using `setGlobalTheme` in your app, you can now remove manual imports of theme CSS
1303
+ files from your app. The themes will be automatically added when `setGlobalTheme` is called.
1306
1304
 
1307
- ```diff
1308
- -import("atlassian-light.css") from '@atlaskit/tokens/css'
1309
- -import("atlassian-legacy-dark.css") from '@atlaskit/tokens/css'
1310
- -setGlobalTheme("light", true)
1311
- +setGlobalTheme({light: "light", dark: "legacy-dark", colorMode: 'auto'})
1312
- ```
1305
+ ```diff
1306
+ -import("atlassian-light.css") from '@atlaskit/tokens/css'
1307
+ -import("atlassian-legacy-dark.css") from '@atlaskit/tokens/css'
1308
+ -setGlobalTheme("light", true)
1309
+ +setGlobalTheme({light: "light", dark: "legacy-dark", colorMode: 'auto'})
1310
+ ```
1313
1311
 
1314
- If your app supports server-side rendering, further work is required to ensure themes are loaded
1315
- on the page before first paint. See below for details on the new SSR utilities.
1312
+ If your app supports server-side rendering, further work is required to ensure themes are loaded on
1313
+ the page before first paint. See below for details on the new SSR utilities.
1316
1314
 
1317
- #### 💥 Breaking change: Removal of deprecated & deleted tokens
1315
+ #### 💥 Breaking change: Removal of deprecated & deleted tokens
1318
1316
 
1319
- [As per our versioning strategy](https://hello.atlassian.net/wiki/spaces/DST/pages/1818362892?search_id=660dc077-8ecb-4142-be48-1e610e372315),
1320
- MAJOR versions is when we remove all deprecated and sunset tokens. This provides significant
1321
- bundle size improvements to token CSS files.
1317
+ [As per our versioning strategy](https://hello.atlassian.net/wiki/spaces/DST/pages/1818362892?search_id=660dc077-8ecb-4142-be48-1e610e372315),
1318
+ MAJOR versions is when we remove all deprecated and sunset tokens. This provides significant bundle
1319
+ size improvements to token CSS files.
1322
1320
 
1323
- If you have been using our lint rules `@atlaskit/design-system/no-unsafe-design-token-usage` and
1324
- `@atlaskit/design-system/no-deprecated-design-token-usage`, these tokens should already be
1325
- triggering eslint errors from the version they were deprecated.
1321
+ If you have been using our lint rules `@atlaskit/design-system/no-unsafe-design-token-usage` and
1322
+ `@atlaskit/design-system/no-deprecated-design-token-usage`, these tokens should already be
1323
+ triggering eslint errors from the version they were deprecated.
1326
1324
 
1327
- Please run `yarn eslint --fix` or similar to automate your migration before upgrading to
1328
- `1.0.0`.
1325
+ Please run `yarn eslint --fix` or similar to automate your migration before upgrading to `1.0.0`.
1329
1326
 
1330
- _Please see below for a full list of removed tokens and their replacements._
1327
+ _Please see below for a full list of removed tokens and their replacements._
1331
1328
 
1332
- Note: MISSING_TOKEN is also being removed. This was a utility token to support early migration
1333
- efforts; as tokens are now visible to end-users, please ensure all usages are removed from your
1334
- app.
1329
+ Note: MISSING_TOKEN is also being removed. This was a utility token to support early migration
1330
+ efforts; as tokens are now visible to end-users, please ensure all usages are removed from your app.
1335
1331
 
1336
- #### 💥 Breaking change: `setGlobalTheme` & `ThemeObserver` & `useThemeObserver`
1332
+ #### 💥 Breaking change: `setGlobalTheme` & `ThemeObserver` & `useThemeObserver`
1337
1333
 
1338
- **ThemeState configuration object**
1334
+ **ThemeState configuration object**
1339
1335
 
1340
- `setGlobalTheme`, `ThemeMutationObserver` & `useThemeObserver` now input and output theme
1341
- preferences as a `themeState` object rather than a space-separated string. This enables:
1336
+ `setGlobalTheme`, `ThemeMutationObserver` & `useThemeObserver` now input and output theme
1337
+ preferences as a `themeState` object rather than a space-separated string. This enables:
1342
1338
 
1343
- - Stronger type safety
1339
+ - Stronger type safety
1344
1340
 
1345
- - Explicit definition of themes to render in light and dark mode.
1341
+ - Explicit definition of themes to render in light and dark mode.
1346
1342
 
1347
- - Improved extensibility options for new types of themes, such as spacing and typography.
1343
+ - Improved extensibility options for new types of themes, such as spacing and typography.
1348
1344
 
1349
- `themeState` has the following default values, which set the standard Atlassian color themes,
1350
- and enables automatic color mode switching based on the user's system preference:
1345
+ `themeState` has the following default values, which set the standard Atlassian color themes, and
1346
+ enables automatic color mode switching based on the user's system preference:
1351
1347
 
1352
- ```js
1353
- {
1354
- colorMode: 'auto',
1355
- dark: 'dark',
1356
- light: 'light',
1357
- spacing: undefined,
1358
- typography: undefined,
1359
- };
1360
- ```
1348
+ ```js
1349
+ {
1350
+ colorMode: 'auto',
1351
+ dark: 'dark',
1352
+ light: 'light',
1353
+ spacing: undefined,
1354
+ typography: undefined,
1355
+ };
1356
+ ```
1361
1357
 
1362
- Any usages of `setGlobalTheme` need` to be updated to the new object syntax:
1358
+ Any usages of `setGlobalTheme` need` to be updated to the new object syntax:
1363
1359
 
1364
- ```diff
1365
- -setGlobalTheme('light');
1366
- +setGlobalTheme({ light: 'light', colorMode: 'light' ...});
1367
- ```
1360
+ ```diff
1361
+ -setGlobalTheme('light');
1362
+ +setGlobalTheme({ light: 'light', colorMode: 'light' ...});
1363
+ ```
1368
1364
 
1369
- **Changes to colorMode**
1365
+ **Changes to colorMode**
1370
1366
 
1371
- Previously, the current color mode (i.e. "light" or "dark" mode) was inferred from the color
1372
- theme passed into `setGlobalTheme`. A second parameter, `shouldMatchSystem`, set
1373
- `data-color-mode` to `'auto'` and matched the current theme to operating system settings:
1367
+ Previously, the current color mode (i.e. "light" or "dark" mode) was inferred from the color theme
1368
+ passed into `setGlobalTheme`. A second parameter, `shouldMatchSystem`, set `data-color-mode` to
1369
+ `'auto'` and matched the current theme to operating system settings:
1374
1370
 
1375
- ```js
1376
- setGlobalTheme('legacy-dark'); // a "dark" theme, so color mode is set to 'dark'
1377
- setGlobalTheme('light', true); // color mode is 'light' or 'dark' depending on system theme
1378
- ```
1371
+ ```js
1372
+ setGlobalTheme('legacy-dark'); // a "dark" theme, so color mode is set to 'dark'
1373
+ setGlobalTheme('light', true); // color mode is 'light' or 'dark' depending on system theme
1374
+ ```
1379
1375
 
1380
- Now, the current color mode, as well as which themes to render in each color mode, can be
1381
- configured via the `themeState` object:
1376
+ Now, the current color mode, as well as which themes to render in each color mode, can be configured
1377
+ via the `themeState` object:
1382
1378
 
1383
- ```js
1384
- setGlobalTheme({
1385
- dark: 'dark' // in dark mode, use the 'dark' theme
1386
- light: 'light' // in light mode, use the 'light' theme
1387
- colorMode: 'auto', // Set the color mode automatically based on system preference
1388
- });
1389
- ```
1379
+ ```js
1380
+ setGlobalTheme({
1381
+ dark: 'dark' // in dark mode, use the 'dark' theme
1382
+ light: 'light' // in light mode, use the 'light' theme
1383
+ colorMode: 'auto', // Set the color mode automatically based on system preference
1384
+ });
1385
+ ```
1390
1386
 
1391
- If your app previously set the second parameter, `shouldMatchSystem`, this feature is now
1392
- enabled by default.
1387
+ If your app previously set the second parameter, `shouldMatchSystem`, this feature is now enabled by
1388
+ default.
1393
1389
 
1394
- ```diff
1395
- // Automatic theme switching
1396
- -setGlobalTheme('light', true)
1397
- +setGlobalTheme({light: 'light', dark: 'dark', 'auto'})
1398
- // OR, since setGlobalTheme has default values
1399
- +setGlobalTheme({})
1390
+ ```diff
1391
+ // Automatic theme switching
1392
+ -setGlobalTheme('light', true)
1393
+ +setGlobalTheme({light: 'light', dark: 'dark', 'auto'})
1394
+ // OR, since setGlobalTheme has default values
1395
+ +setGlobalTheme({})
1400
1396
 
1401
- // Light theme
1402
- -setGlobalTheme('light')
1403
- +setGlobalTheme({light: 'light', colorMode: 'light'})
1404
- // OR
1405
- +setGlobalTheme({colorMode: 'light'})
1397
+ // Light theme
1398
+ -setGlobalTheme('light')
1399
+ +setGlobalTheme({light: 'light', colorMode: 'light'})
1400
+ // OR
1401
+ +setGlobalTheme({colorMode: 'light'})
1406
1402
 
1407
- // Dark theme
1408
- -setGlobalTheme('dark')
1409
- +setGlobalTheme({dark: 'dark', colorMode: 'dark'})
1410
- // OR
1411
- +setGlobalTheme({colorMode: 'dark'})
1412
- ```
1403
+ // Dark theme
1404
+ -setGlobalTheme('dark')
1405
+ +setGlobalTheme({dark: 'dark', colorMode: 'dark'})
1406
+ // OR
1407
+ +setGlobalTheme({colorMode: 'dark'})
1408
+ ```
1413
1409
 
1414
- **Color mode switching is enabled by default**
1410
+ **Color mode switching is enabled by default**
1415
1411
 
1416
- As noted above, automatic theme switching is now enabled by default. To disable automatic theme
1417
- switching, set `colorMode` to either `'light'` or `'dark'`.
1412
+ As noted above, automatic theme switching is now enabled by default. To disable automatic theme
1413
+ switching, set `colorMode` to either `'light'` or `'dark'`.
1418
1414
 
1419
- #### 🔀 Breaking behavioural change: `data-theme` & `data-color-mode`
1415
+ #### 🔀 Breaking behavioural change: `data-theme` & `data-color-mode`
1420
1416
 
1421
- The way this state is reflected on the DOM has been updated to match the changes above:
1417
+ The way this state is reflected on the DOM has been updated to match the changes above:
1422
1418
 
1423
- ```diff
1424
- -<html data-theme="light" data-color-mode="light">
1425
- +<html data-theme="light:light dark:dark spacing:compact" data-color-mode="light">
1426
- ```
1419
+ ```diff
1420
+ -<html data-theme="light" data-color-mode="light">
1421
+ +<html data-theme="light:light dark:dark spacing:compact" data-color-mode="light">
1422
+ ```
1427
1423
 
1428
- Theme state on the DOM is primarily to store data in a place that can be accessed from anywhere
1429
- in the app, and secondly to activate CSS selectors.
1424
+ Theme state on the DOM is primarily to store data in a place that can be accessed from anywhere in
1425
+ the app, and secondly to activate CSS selectors.
1430
1426
 
1431
- Two new utilities, `themeStringToObject` and `themeObjectToString`, allow conversion from string
1432
- to object syntax if necessary.
1433
-
1434
- #### 🔀 Breaking change: System-level theme switching
1435
-
1436
- Token auto theme switching now uses a Javascript-based solution, rather than embedding media
1437
- queries in theme CSS files. If `colorMode` is set to `'auto'`, media query event listeners will
1438
- trigger when the system theme changes, and update `data-color-mode` to `'light'` or `'dark'`
1439
- automatically.
1440
-
1441
- This provides several benefits:
1442
-
1443
- - Significant (~50%) improvements to bundle size for token CSS files compared to the
1444
- pre-release version of `@atlaskit/tokens`.
1445
-
1446
- - Simpler logic for switching an experience based on the current theme:
1447
-
1448
- - Previously, experiences using theme observers had to check a combination of the
1449
- `data-color-mode` attribute use media queries to to correctly match the currently
1450
- rendered color mode in light, dark and 'auto' color modes. Now, the `data-color-mode`
1451
- attribute always matches the currently rendered color mode, and media queries are no
1452
- longer required.
1453
-
1454
- As a result of this change, the `data-color-mode` attribute no longer supports the value
1455
- `'auto'`. If your experience checked for this value, this logic can now be removed, as
1456
- `data-color-mode` will always reflect the currently rendered theme.
1457
-
1458
- #### New: server-side rendering utility functions
1459
-
1460
- Three new utility functions provide the logic required to load and display the correct themes in
1461
- your server-rendered output, preventing a flash of incorrectly themed content on first paint.
1462
- Each accepts the same themeState object representing the user's stored theme preference:
1463
-
1464
- - `getThemeStyles` provides the contents of `<style>` tags to attach to the head of your
1465
- server-side rendered document
1466
-
1467
- - `getThemeHtmlAttributes` provides data-attributes to set on the root of your document.
1468
-
1469
- - `getSSRAutoScript` provides a script to detect the system theme and configure the color mode
1470
- before first paint.
1471
-
1472
- For more information on these utilities, check the
1473
- [@atlaskit/tokens API documentation](https://atlassian.design/components/tokens/code) on
1474
- atlassian.design.
1475
-
1476
- #### 🐞 Fixes
1477
-
1478
- **Observer fixes:**
1479
-
1480
- `useThemeObserver` & `ThemeMutationObserver` now listen to changes on data-theme instead of
1481
- data-color-mode.
1482
-
1483
- Previously changes between two themes that both have a light color mode would not trigger an
1484
- event since `data-color-mode` would not be updated. With this fix, the event fires on every call
1485
- to `setGlobalTheme` regardless if there is a change to the theme or not.
1486
-
1487
- **Automatic theme switching changes:**
1488
-
1489
- Previously, the order of themes determined which one rendered. If you had multiple 'light'
1490
- themes in your app, the order of the CSS files in the DOM determined which one rendered in
1491
- "auto" mode.
1492
-
1493
- Now, the theme that renders when the system is in 'light' and 'dark' mode is deterministic, and
1494
- explicitly configured via the `themeState` object.
1495
-
1496
- #### 🚮 Removed tokens
1497
-
1498
- The following tokens have been moved from the `deprecated` & `deleted` to removed state in their
1499
- lifecycles. These tokens will no longer exist and will not be functional moving forward, tooling
1500
- will begin to error wherever they're used.
1501
-
1502
- - `color.text.highEmphasis` => `color.text`
1503
- - `color.text.link.pressed` => `color.link.pressed`
1504
- - `color.text.link.resting` => `color.link`
1505
- - `color.text.lowEmphasis` => `color.text.subtlest`
1506
- - `color.text.mediumEmphasis` => `color.text.subtle`
1507
- - `color.text.onBold` => `color.text.inverse`
1508
- - `color.text.onBoldWarning` => `color.text.warning.inverse`
1509
- - `color.border.focus` => `color.border.focused`
1510
- - `color.border.neutral` => `color.border`
1511
- - `color.background.accent.blue` => `color.background.accent.blue.subtler`
1512
- - `color.background.accent.blue.bold` => `color.background.accent.blue.subtle`
1513
- - `color.background.accent.red` => `color.background.accent.red.subtler`
1514
- - `color.background.accent.red.bold` => `color.background.accent.red.subtle`
1515
- - `color.background.accent.orange` => `color.background.accent.orange.subtler`
1516
- - `color.background.accent.orange.bold` => `color.background.accent.orange.subtle`
1517
- - `color.background.accent.yellow` => `color.background.accent.yellow.subtler`
1518
- - `color.background.accent.yellow.bold` => `color.background.accent.yellow.subtle`
1519
- - `color.background.accent.green` => `color.background.accent.green.subtler`
1520
- - `color.background.accent.green.bold` => `color.background.accent.green.subtle`
1521
- - `color.background.accent.teal` => `color.background.accent.teal.subtler`
1522
- - `color.background.accent.teal.bold` => `color.background.accent.teal.subtle`
1523
- - `color.background.accent.purple` => `color.background.accent.purple.subtler`
1524
- - `color.background.accent.purple.bold` => `color.background.accent.purple.subtle`
1525
- - `color.background.accent.magenta` => `color.background.accent.magenta.subtler`
1526
- - `color.background.accent.magenta.bold` => `color.background.accent.magenta.subtle`
1527
- - `color.background.inverse` => `color.background.inverse.subtle`
1528
- - `color.background.brand` => `color.background.selected`
1529
- - `color.background.brand.hovered` => `color.background.selected.hovered`
1530
- - `color.background.brand.pressed` => `color.background.selected.pressed`
1531
- - `color.background.selected.resting` => `color.background.selected`
1532
- - `color.background.selected.hover` => `color.background.selected.hovered`
1533
- - `color.background.blanket` => `color.blanket`
1534
- - `color.background.boldBrand.hover` => `color.background.brand.bold.hovered`
1535
- - `color.background.boldBrand.pressed` => `color.background.brand.bold.pressed`
1536
- - `color.background.boldBrand.resting` => `color.background.brand.bold`
1537
- - `color.background.boldDanger.hover` => `color.background.danger.bold.hovered`
1538
- - `color.background.boldDanger.pressed` => `color.background.danger.bold.pressed`
1539
- - `color.background.boldDanger.resting` => `color.background.danger.bold`
1540
- - `color.background.boldDiscovery.hover` => `color.background.discovery.bold.hovered`
1541
- - `color.background.boldDiscovery.pressed` => `color.background.discovery.bold.pressed`
1542
- - `color.background.boldDiscovery.resting` => `color.background.discovery.bold`
1543
- - `color.background.boldNeutral.hover` => `color.background.neutral.bold.hovered`
1544
- - `color.background.boldNeutral.pressed` => `color.background.neutral.bold.pressed`
1545
- - `color.background.boldNeutral.resting` => `color.background.neutral.bold`
1546
- - `color.background.boldSuccess.hover` => `color.background.success.bold.hovered`
1547
- - `color.background.boldSuccess.pressed` => `color.background.success.bold.pressed`
1548
- - `color.background.boldSuccess.resting` => `color.background.success.bold`
1549
- - `color.background.boldWarning.hover` => `color.background.warning.bold.hovered`
1550
- - `color.background.boldWarning.pressed` => `color.background.warning.bold.pressed`
1551
- - `color.background.boldWarning.resting` => `color.background.warning.bold`
1552
- - `color.background.card` => `elevation.surface.raised`
1553
- - `color.background.default` => `elevation.surface`
1554
- - `color.background.overlay` => `elevation.surface.overlay`
1555
- - `color.background.subtleBorderedNeutral.pressed` => `color.background.input.pressed`
1556
- - `color.background.subtleBorderedNeutral.resting` => `color.background.input`
1557
- - `color.background.subtleBrand.hover` => `color.background.selected.hovered`
1558
- - `color.background.subtleBrand.pressed` => `color.background.selected.pressed`
1559
- - `color.background.subtleBrand.resting` => `color.background.selected`
1560
- - `color.background.subtleDanger.hover` => `color.background.danger.hovered`
1561
- - `color.background.subtleDanger.pressed` => `color.background.danger.pressed`
1562
- - `color.background.subtleDanger.resting` => `color.background.danger`
1563
- - `color.background.subtleDiscovery.hover` => `color.background.discovery.hovered`
1564
- - `color.background.subtleDiscovery.pressed` => `color.background.discovery.pressed`
1565
- - `color.background.subtleDiscovery.resting` => `color.background.discovery`
1566
- - `color.background.subtleNeutral.hover` => `color.background.neutral.hovered`
1567
- - `color.background.subtleNeutral.pressed` => `color.background.neutral.pressed`
1568
- - `color.background.subtleNeutral.resting` => `color.background.neutral`
1569
- - `color.background.subtleSuccess.hover` => `color.background.success.hovered`
1570
- - `color.background.subtleSuccess.pressed` => `color.background.success.pressed`
1571
- - `color.background.subtleSuccess.resting` => `color.background.success`
1572
- - `color.background.subtleWarning.hover` => `color.background.warning.hovered`
1573
- - `color.background.subtleWarning.pressed` => `color.background.warning.pressed`
1574
- - `color.background.subtleWarning.resting` => `color.background.warning`
1575
- - `color.background.sunken` => `elevation.surface.sunken`
1576
- - `color.background.transparentNeutral.hover` => `color.background.neutral.subtle.hovered`
1577
- - `color.background.transparentNeutral.pressed` => `color.background.neutral.subtle.pressed`
1578
- - `color.interaction.inverse.hovered` => `color.background.inverse.subtle.hovered`
1579
- - `color.interaction.inverse.pressed` => `color.background.inverse.subtle.pressed`
1580
- - `color.accent.boldBlue` => `color.background.accent.blue.bolder`
1581
- - `color.accent.boldGreen` => `color.background.accent.green.bolder`
1582
- - `color.accent.boldOrange` => `color.background.accent.orange.bolder`
1583
- - `color.accent.boldPurple` => `color.background.accent.purple.bolder`
1584
- - `color.accent.boldRed` => `color.background.accent.red.bolder`
1585
- - `color.accent.boldTeal` => `color.background.accent.teal.bolder`
1586
- - `color.accent.subtleBlue` => `color.background.accent.blue.subtler`
1587
- - `color.accent.subtleGreen` => `color.background.accent.green.subtler`
1588
- - `color.accent.subtleMagenta` => `color.background.accent.magenta.subtler`
1589
- - `color.accent.subtleOrange` => `color.background.accent.orange.subtler`
1590
- - `color.accent.subtlePurple` => `color.background.accent.purple.subtler`
1591
- - `color.accent.subtleRed` => `color.background.accent.red.subtler`
1592
- - `color.accent.subtleTeal` => `color.background.accent.teal.subtler`
1593
- - `color.iconBorder.brand` => `color.icon.brand`
1594
- - `color.iconBorder.danger` => `color.icon.danger`
1595
- - `color.iconBorder.discovery` => `color.icon.discovery`
1596
- - `color.iconBorder.success` => `color.icon.success`
1597
- - `color.iconBorder.warning` => `color.icon.warning`
1598
- - `color.overlay.hover` => `color.interaction.hovered`
1599
- - `color.overlay.pressed` => `color.interaction.pressed`
1600
- - `shadow.card` => `elevation.shadow.raised`
1601
- - `shadow.overlay` => `elevation.shadow.overlay`
1602
- - `utility.UNSAFE_util.transparent` => `utility.UNSAFE.transparent`
1603
- - `utility.UNSAFE_util.MISSING_TOKEN` => No replacement
1427
+ Two new utilities, `themeStringToObject` and `themeObjectToString`, allow conversion from string to
1428
+ object syntax if necessary.
1429
+
1430
+ #### 🔀 Breaking change: System-level theme switching
1431
+
1432
+ Token auto theme switching now uses a Javascript-based solution, rather than embedding media queries
1433
+ in theme CSS files. If `colorMode` is set to `'auto'`, media query event listeners will trigger when
1434
+ the system theme changes, and update `data-color-mode` to `'light'` or `'dark'` automatically.
1435
+
1436
+ This provides several benefits:
1437
+
1438
+ - Significant (~50%) improvements to bundle size for token CSS files compared to the pre-release
1439
+ version of `@atlaskit/tokens`.
1440
+
1441
+ - Simpler logic for switching an experience based on the current theme:
1442
+
1443
+ - Previously, experiences using theme observers had to check a combination of the
1444
+ `data-color-mode` attribute use media queries to to correctly match the currently rendered color
1445
+ mode in light, dark and 'auto' color modes. Now, the `data-color-mode` attribute always matches
1446
+ the currently rendered color mode, and media queries are no longer required.
1447
+
1448
+ As a result of this change, the `data-color-mode` attribute no longer supports the value `'auto'`.
1449
+ If your experience checked for this value, this logic can now be removed, as `data-color-mode` will
1450
+ always reflect the currently rendered theme.
1451
+
1452
+ #### New: server-side rendering utility functions
1453
+
1454
+ Three new utility functions provide the logic required to load and display the correct themes in
1455
+ your server-rendered output, preventing a flash of incorrectly themed content on first paint. Each
1456
+ accepts the same themeState object representing the user's stored theme preference:
1457
+
1458
+ - `getThemeStyles` provides the contents of `<style>` tags to attach to the head of your server-side
1459
+ rendered document
1460
+
1461
+ - `getThemeHtmlAttributes` provides data-attributes to set on the root of your document.
1462
+
1463
+ - `getSSRAutoScript` provides a script to detect the system theme and configure the color mode
1464
+ before first paint.
1465
+
1466
+ For more information on these utilities, check the
1467
+ [@atlaskit/tokens API documentation](https://atlassian.design/components/tokens/code) on
1468
+ atlassian.design.
1469
+
1470
+ #### 🐞 Fixes
1471
+
1472
+ **Observer fixes:**
1473
+
1474
+ `useThemeObserver` & `ThemeMutationObserver` now listen to changes on data-theme instead of
1475
+ data-color-mode.
1476
+
1477
+ Previously changes between two themes that both have a light color mode would not trigger an event
1478
+ since `data-color-mode` would not be updated. With this fix, the event fires on every call to
1479
+ `setGlobalTheme` regardless if there is a change to the theme or not.
1480
+
1481
+ **Automatic theme switching changes:**
1482
+
1483
+ Previously, the order of themes determined which one rendered. If you had multiple 'light' themes in
1484
+ your app, the order of the CSS files in the DOM determined which one rendered in "auto" mode.
1485
+
1486
+ Now, the theme that renders when the system is in 'light' and 'dark' mode is deterministic, and
1487
+ explicitly configured via the `themeState` object.
1488
+
1489
+ #### 🚮 Removed tokens
1490
+
1491
+ The following tokens have been moved from the `deprecated` & `deleted` to removed state in their
1492
+ lifecycles. These tokens will no longer exist and will not be functional moving forward, tooling
1493
+ will begin to error wherever they're used.
1494
+
1495
+ - `color.text.highEmphasis` => `color.text`
1496
+ - `color.text.link.pressed` => `color.link.pressed`
1497
+ - `color.text.link.resting` => `color.link`
1498
+ - `color.text.lowEmphasis` => `color.text.subtlest`
1499
+ - `color.text.mediumEmphasis` => `color.text.subtle`
1500
+ - `color.text.onBold` => `color.text.inverse`
1501
+ - `color.text.onBoldWarning` => `color.text.warning.inverse`
1502
+ - `color.border.focus` => `color.border.focused`
1503
+ - `color.border.neutral` => `color.border`
1504
+ - `color.background.accent.blue` => `color.background.accent.blue.subtler`
1505
+ - `color.background.accent.blue.bold` => `color.background.accent.blue.subtle`
1506
+ - `color.background.accent.red` => `color.background.accent.red.subtler`
1507
+ - `color.background.accent.red.bold` => `color.background.accent.red.subtle`
1508
+ - `color.background.accent.orange` => `color.background.accent.orange.subtler`
1509
+ - `color.background.accent.orange.bold` => `color.background.accent.orange.subtle`
1510
+ - `color.background.accent.yellow` => `color.background.accent.yellow.subtler`
1511
+ - `color.background.accent.yellow.bold` => `color.background.accent.yellow.subtle`
1512
+ - `color.background.accent.green` => `color.background.accent.green.subtler`
1513
+ - `color.background.accent.green.bold` => `color.background.accent.green.subtle`
1514
+ - `color.background.accent.teal` => `color.background.accent.teal.subtler`
1515
+ - `color.background.accent.teal.bold` => `color.background.accent.teal.subtle`
1516
+ - `color.background.accent.purple` => `color.background.accent.purple.subtler`
1517
+ - `color.background.accent.purple.bold` => `color.background.accent.purple.subtle`
1518
+ - `color.background.accent.magenta` => `color.background.accent.magenta.subtler`
1519
+ - `color.background.accent.magenta.bold` => `color.background.accent.magenta.subtle`
1520
+ - `color.background.inverse` => `color.background.inverse.subtle`
1521
+ - `color.background.brand` => `color.background.selected`
1522
+ - `color.background.brand.hovered` => `color.background.selected.hovered`
1523
+ - `color.background.brand.pressed` => `color.background.selected.pressed`
1524
+ - `color.background.selected.resting` => `color.background.selected`
1525
+ - `color.background.selected.hover` => `color.background.selected.hovered`
1526
+ - `color.background.blanket` => `color.blanket`
1527
+ - `color.background.boldBrand.hover` => `color.background.brand.bold.hovered`
1528
+ - `color.background.boldBrand.pressed` => `color.background.brand.bold.pressed`
1529
+ - `color.background.boldBrand.resting` => `color.background.brand.bold`
1530
+ - `color.background.boldDanger.hover` => `color.background.danger.bold.hovered`
1531
+ - `color.background.boldDanger.pressed` => `color.background.danger.bold.pressed`
1532
+ - `color.background.boldDanger.resting` => `color.background.danger.bold`
1533
+ - `color.background.boldDiscovery.hover` => `color.background.discovery.bold.hovered`
1534
+ - `color.background.boldDiscovery.pressed` => `color.background.discovery.bold.pressed`
1535
+ - `color.background.boldDiscovery.resting` => `color.background.discovery.bold`
1536
+ - `color.background.boldNeutral.hover` => `color.background.neutral.bold.hovered`
1537
+ - `color.background.boldNeutral.pressed` => `color.background.neutral.bold.pressed`
1538
+ - `color.background.boldNeutral.resting` => `color.background.neutral.bold`
1539
+ - `color.background.boldSuccess.hover` => `color.background.success.bold.hovered`
1540
+ - `color.background.boldSuccess.pressed` => `color.background.success.bold.pressed`
1541
+ - `color.background.boldSuccess.resting` => `color.background.success.bold`
1542
+ - `color.background.boldWarning.hover` => `color.background.warning.bold.hovered`
1543
+ - `color.background.boldWarning.pressed` => `color.background.warning.bold.pressed`
1544
+ - `color.background.boldWarning.resting` => `color.background.warning.bold`
1545
+ - `color.background.card` => `elevation.surface.raised`
1546
+ - `color.background.default` => `elevation.surface`
1547
+ - `color.background.overlay` => `elevation.surface.overlay`
1548
+ - `color.background.subtleBorderedNeutral.pressed` => `color.background.input.pressed`
1549
+ - `color.background.subtleBorderedNeutral.resting` => `color.background.input`
1550
+ - `color.background.subtleBrand.hover` => `color.background.selected.hovered`
1551
+ - `color.background.subtleBrand.pressed` => `color.background.selected.pressed`
1552
+ - `color.background.subtleBrand.resting` => `color.background.selected`
1553
+ - `color.background.subtleDanger.hover` => `color.background.danger.hovered`
1554
+ - `color.background.subtleDanger.pressed` => `color.background.danger.pressed`
1555
+ - `color.background.subtleDanger.resting` => `color.background.danger`
1556
+ - `color.background.subtleDiscovery.hover` => `color.background.discovery.hovered`
1557
+ - `color.background.subtleDiscovery.pressed` => `color.background.discovery.pressed`
1558
+ - `color.background.subtleDiscovery.resting` => `color.background.discovery`
1559
+ - `color.background.subtleNeutral.hover` => `color.background.neutral.hovered`
1560
+ - `color.background.subtleNeutral.pressed` => `color.background.neutral.pressed`
1561
+ - `color.background.subtleNeutral.resting` => `color.background.neutral`
1562
+ - `color.background.subtleSuccess.hover` => `color.background.success.hovered`
1563
+ - `color.background.subtleSuccess.pressed` => `color.background.success.pressed`
1564
+ - `color.background.subtleSuccess.resting` => `color.background.success`
1565
+ - `color.background.subtleWarning.hover` => `color.background.warning.hovered`
1566
+ - `color.background.subtleWarning.pressed` => `color.background.warning.pressed`
1567
+ - `color.background.subtleWarning.resting` => `color.background.warning`
1568
+ - `color.background.sunken` => `elevation.surface.sunken`
1569
+ - `color.background.transparentNeutral.hover` => `color.background.neutral.subtle.hovered`
1570
+ - `color.background.transparentNeutral.pressed` => `color.background.neutral.subtle.pressed`
1571
+ - `color.interaction.inverse.hovered` => `color.background.inverse.subtle.hovered`
1572
+ - `color.interaction.inverse.pressed` => `color.background.inverse.subtle.pressed`
1573
+ - `color.accent.boldBlue` => `color.background.accent.blue.bolder`
1574
+ - `color.accent.boldGreen` => `color.background.accent.green.bolder`
1575
+ - `color.accent.boldOrange` => `color.background.accent.orange.bolder`
1576
+ - `color.accent.boldPurple` => `color.background.accent.purple.bolder`
1577
+ - `color.accent.boldRed` => `color.background.accent.red.bolder`
1578
+ - `color.accent.boldTeal` => `color.background.accent.teal.bolder`
1579
+ - `color.accent.subtleBlue` => `color.background.accent.blue.subtler`
1580
+ - `color.accent.subtleGreen` => `color.background.accent.green.subtler`
1581
+ - `color.accent.subtleMagenta` => `color.background.accent.magenta.subtler`
1582
+ - `color.accent.subtleOrange` => `color.background.accent.orange.subtler`
1583
+ - `color.accent.subtlePurple` => `color.background.accent.purple.subtler`
1584
+ - `color.accent.subtleRed` => `color.background.accent.red.subtler`
1585
+ - `color.accent.subtleTeal` => `color.background.accent.teal.subtler`
1586
+ - `color.iconBorder.brand` => `color.icon.brand`
1587
+ - `color.iconBorder.danger` => `color.icon.danger`
1588
+ - `color.iconBorder.discovery` => `color.icon.discovery`
1589
+ - `color.iconBorder.success` => `color.icon.success`
1590
+ - `color.iconBorder.warning` => `color.icon.warning`
1591
+ - `color.overlay.hover` => `color.interaction.hovered`
1592
+ - `color.overlay.pressed` => `color.interaction.pressed`
1593
+ - `shadow.card` => `elevation.shadow.raised`
1594
+ - `shadow.overlay` => `elevation.shadow.overlay`
1595
+ - `utility.UNSAFE_util.transparent` => `utility.UNSAFE.transparent`
1596
+ - `utility.UNSAFE_util.MISSING_TOKEN` => No replacement
1604
1597
 
1605
1598
  ## 0.13.5
1606
1599
 
1607
1600
  ### Patch Changes
1608
1601
 
1609
- - [#29360](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29360)
1610
- [`1f558943507`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f558943507) -
1611
- Correct Figma entrypoints to use raw json
1602
+ - [#29360](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29360)
1603
+ [`1f558943507`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f558943507) - Correct
1604
+ Figma entrypoints to use raw json
1612
1605
 
1613
1606
  ## 0.13.4
1614
1607
 
1615
1608
  ### Patch Changes
1616
1609
 
1617
- - [#28784](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28784)
1618
- [`48c9ecca2c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48c9ecca2c4) - -
1619
- `@atlaskit/tokens/figma-sync` entrypoint added to sync design tokens to the ADS Figma library
1620
- (not intended for external use).
1621
- - Tokens are now sorted by a predefined order across artifact output, ensuring consistency
1622
- across experiences.
1610
+ - [#28784](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28784)
1611
+ [`48c9ecca2c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48c9ecca2c4) - -
1612
+ `@atlaskit/tokens/figma-sync` entrypoint added to sync design tokens to the ADS Figma library (not
1613
+ intended for external use).
1614
+ - Tokens are now sorted by a predefined order across artifact output, ensuring consistency across
1615
+ experiences.
1623
1616
 
1624
1617
  ## 0.13.3
1625
1618
 
1626
1619
  ### Patch Changes
1627
1620
 
1628
- - [#27875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27875)
1629
- [`0438a9318a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0438a9318a1) -
1630
- Tweaked the values of the `Neutral500` and `Neutral500` base tokens and updated
1631
- `text.accent.gray.bolder` to improve color contrast:
1621
+ - [#27875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27875)
1622
+ [`0438a9318a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0438a9318a1) - Tweaked
1623
+ the values of the `Neutral500` and `Neutral500` base tokens and updated `text.accent.gray.bolder`
1624
+ to improve color contrast:
1632
1625
 
1633
- - Adjust `Neutral500` from `#8993A5` to `#8590A2` so that it passes 3:1 contrast against
1634
- sunken surfaces in light mode
1635
- - Adjust `Neutral500A` from `#091E42 @ 48%` to `#091E42 @ 49%` to match color of `Neutral500`
1636
- on default surfaces
1637
- - Update `text.accent.gray.bolder` to use `Neutral1100` so gray tags pass contrast
1638
- requirements
1626
+ - Adjust `Neutral500` from `#8993A5` to `#8590A2` so that it passes 3:1 contrast against sunken
1627
+ surfaces in light mode
1628
+ - Adjust `Neutral500A` from `#091E42 @ 48%` to `#091E42 @ 49%` to match color of `Neutral500` on
1629
+ default surfaces
1630
+ - Update `text.accent.gray.bolder` to use `Neutral1100` so gray tags pass contrast requirements
1639
1631
 
1640
- - [`765c27c301e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/765c27c301e) - Adds
1641
- new chart tokens for data visualisation and charts.
1632
+ - [`765c27c301e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/765c27c301e) - Adds new
1633
+ chart tokens for data visualisation and charts.
1642
1634
 
1643
- 27 generic chart tokens and hovered state tokens:
1635
+ 27 generic chart tokens and hovered state tokens:
1644
1636
 
1645
- - `color.chart.[color].bold`
1646
- - `color.chart.[color].bolder`
1647
- - `color.chart.[color].boldest`
1637
+ - `color.chart.[color].bold`
1638
+ - `color.chart.[color].bolder`
1639
+ - `color.chart.[color].boldest`
1648
1640
 
1649
- 12 semantic chart tokens and hovered state tokens:
1641
+ 12 semantic chart tokens and hovered state tokens:
1650
1642
 
1651
- - `color.chart.brand`
1652
- - `color.chart.neutral`
1653
- - `color.chart.success`
1654
- - `color.chart.success.bold`
1655
- - `color.chart.danger`
1656
- - `color.chart.danger.bold`
1657
- - `color.chart.warning`
1658
- - `color.chart.warning.bold`
1659
- - `color.chart.information`
1660
- - `color.chart.information.bold`
1661
- - `color.chart.discovery`
1662
- - `color.chart.discovery.bold`
1643
+ - `color.chart.brand`
1644
+ - `color.chart.neutral`
1645
+ - `color.chart.success`
1646
+ - `color.chart.success.bold`
1647
+ - `color.chart.danger`
1648
+ - `color.chart.danger.bold`
1649
+ - `color.chart.warning`
1650
+ - `color.chart.warning.bold`
1651
+ - `color.chart.information`
1652
+ - `color.chart.information.bold`
1653
+ - `color.chart.discovery`
1654
+ - `color.chart.discovery.bold`
1663
1655
 
1664
- 8 categorical chart tokens and hovered state tokens:
1656
+ 8 categorical chart tokens and hovered state tokens:
1665
1657
 
1666
- - `color.chart.categorical.1`
1667
- - `color.chart.categorical.2`
1668
- - `color.chart.categorical.3`
1669
- - `color.chart.categorical.4`
1670
- - `color.chart.categorical.5`
1671
- - `color.chart.categorical.6`
1672
- - `color.chart.categorical.7`
1673
- - `color.chart.categorical.8`
1658
+ - `color.chart.categorical.1`
1659
+ - `color.chart.categorical.2`
1660
+ - `color.chart.categorical.3`
1661
+ - `color.chart.categorical.4`
1662
+ - `color.chart.categorical.5`
1663
+ - `color.chart.categorical.6`
1664
+ - `color.chart.categorical.7`
1665
+ - `color.chart.categorical.8`
1674
1666
 
1675
1667
  ## 0.13.2
1676
1668
 
1677
1669
  ### Patch Changes
1678
1670
 
1679
- - [#28159](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28159)
1680
- [`716af1d3387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/716af1d3387) - Bump
1681
- @atlaskit/heading from 1.0.0 to 1.0.1 to avoid resolving to poison dependency version
1671
+ - [#28159](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28159)
1672
+ [`716af1d3387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/716af1d3387) - Bump
1673
+ @atlaskit/heading from 1.0.0 to 1.0.1 to avoid resolving to poison dependency version
1682
1674
 
1683
1675
  ## 0.13.1
1684
1676
 
1685
1677
  ### Patch Changes
1686
1678
 
1687
- - [#27730](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27730)
1688
- [`a5eed85fe2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5eed85fe2e) - Added
1689
- a new `getTokenValue()` API - it accepts a dot-separated token name and a fallback value, and
1690
- returns the current computed CSS value for the resulting CSS Custom Property. This should be
1691
- used when the CSS cascade isn't available, eg. `<canvas>` elements, JS charting libraries, etc.
1679
+ - [#27730](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27730)
1680
+ [`a5eed85fe2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5eed85fe2e) - Added a
1681
+ new `getTokenValue()` API - it accepts a dot-separated token name and a fallback value, and
1682
+ returns the current computed CSS value for the resulting CSS Custom Property. This should be used
1683
+ when the CSS cascade isn't available, eg. `<canvas>` elements, JS charting libraries, etc.
1692
1684
 
1693
1685
  ## 0.13.0
1694
1686
 
1695
1687
  ### Minor Changes
1696
1688
 
1697
- - [#28011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28011)
1698
- [`00c057bdd71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c057bdd71) -
1699
- Removes spacing-raw & typography-raw entrypoints in favor of tokens-raw
1689
+ - [#28011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28011)
1690
+ [`00c057bdd71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c057bdd71) - Removes
1691
+ spacing-raw & typography-raw entrypoints in favor of tokens-raw
1700
1692
 
1701
1693
  ## 0.12.0
1702
1694
 
1703
1695
  ### Minor Changes
1704
1696
 
1705
- - [#28041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28041)
1706
- [`5892d12b125`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5892d12b125) -
1707
- Refactors token artifact generation via style-dictionary. The tokens package no longer outputs
1708
- redundant files on a per theme basis and instead consolidates schema-focused outputs into
1709
- individual files where possible.
1697
+ - [#28041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28041)
1698
+ [`5892d12b125`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5892d12b125) -
1699
+ Refactors token artifact generation via style-dictionary. The tokens package no longer outputs
1700
+ redundant files on a per theme basis and instead consolidates schema-focused outputs into
1701
+ individual files where possible.
1710
1702
 
1711
1703
  ## 0.11.6
1712
1704
 
1713
1705
  ### Patch Changes
1714
1706
 
1715
- - [#27880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27880)
1716
- [`3d46e550157`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d46e550157) - Fixes
1717
- a bug with the tokens-babel-plugin where it was transforming token functions which were imported
1718
- from modules other than the @atlaskit/tokens package.
1707
+ - [#27880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27880)
1708
+ [`3d46e550157`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d46e550157) - Fixes a
1709
+ bug with the tokens-babel-plugin where it was transforming token functions which were imported
1710
+ from modules other than the @atlaskit/tokens package.
1719
1711
 
1720
1712
  ## 0.11.5
1721
1713
 
1722
1714
  ### Patch Changes
1723
1715
 
1724
- - [#27885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27885)
1725
- [`bcef9745338`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcef9745338) -
1726
- useThemeObserver now exclusively watches `data-theme` instead of `data-color-mode` to ensure all
1727
- changes to the theme attr trigger an event. Previously, if a theme moved from light theme, which
1728
- had a mode="light", to another theme such as legacy-light with the same mode, no event will be
1729
- triggered.
1716
+ - [#27885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27885)
1717
+ [`bcef9745338`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcef9745338) -
1718
+ useThemeObserver now exclusively watches `data-theme` instead of `data-color-mode` to ensure all
1719
+ changes to the theme attr trigger an event. Previously, if a theme moved from light theme, which
1720
+ had a mode="light", to another theme such as legacy-light with the same mode, no event will be
1721
+ triggered.
1730
1722
 
1731
1723
  ## 0.11.4
1732
1724
 
1733
1725
  ### Patch Changes
1734
1726
 
1735
- - [#27592](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27592)
1736
- [`39c4b520ef3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39c4b520ef3) - - Adds
1737
- `typography-raw` entry point for easy access.
1727
+ - [#27592](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27592)
1728
+ [`39c4b520ef3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39c4b520ef3) - - Adds
1729
+ `typography-raw` entry point for easy access.
1738
1730
 
1739
1731
  ## 0.11.3
1740
1732
 
1741
1733
  ### Patch Changes
1742
1734
 
1743
- - [#27629](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27629)
1744
- [`f824dcfff6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f824dcfff6e) -
1745
- Internal changes to satisfy various lint warnings & errors
1735
+ - [#27629](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27629)
1736
+ [`f824dcfff6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f824dcfff6e) - Internal
1737
+ changes to satisfy various lint warnings & errors
1746
1738
 
1747
1739
  ## 0.11.2
1748
1740
 
1749
1741
  ### Patch Changes
1750
1742
 
1751
- - [#27482](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27482)
1752
- [`81e34736aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81e34736aa0) - [ux]
1753
- Introduces additional token set `space.*`. These tokens match the behavior of `spacing.scale.*`.
1754
- Also introduces two additional base tokens, `Space800` and `Space1000`.
1743
+ - [#27482](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27482)
1744
+ [`81e34736aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81e34736aa0) - [ux]
1745
+ Introduces additional token set `space.*`. These tokens match the behavior of `spacing.scale.*`.
1746
+ Also introduces two additional base tokens, `Space800` and `Space1000`.
1755
1747
 
1756
1748
  ## 0.11.1
1757
1749
 
1758
1750
  ### Patch Changes
1759
1751
 
1760
- - [#27449](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27449)
1761
- [`9307ebb86d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9307ebb86d8) - Revert
1762
- addition of init entry point in favor of an upcoming solution.
1752
+ - [#27449](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27449)
1753
+ [`9307ebb86d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9307ebb86d8) - Revert
1754
+ addition of init entry point in favor of an upcoming solution.
1763
1755
 
1764
1756
  ## 0.11.0
1765
1757
 
1766
1758
  ### Minor Changes
1767
1759
 
1768
- - [#26991](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26991)
1769
- [`65222c75362`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65222c75362) - - Adds
1770
- experimental typography tokens for font size, font weight, font family, and line height. These
1771
- are not intended for public consumption yet.
1772
- - Adds a new init entry point for easily importing all theme CSS files (currently light, dark,
1773
- spacing, and typography).
1774
- - Spacing and typography tokens are now added to the `:root` rather than requiring a
1775
- `data-theme` attribute.
1776
- - Removes 'spacing' from the default theme.
1760
+ - [#26991](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26991)
1761
+ [`65222c75362`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65222c75362) - - Adds
1762
+ experimental typography tokens for font size, font weight, font family, and line height. These are
1763
+ not intended for public consumption yet.
1764
+ - Adds a new init entry point for easily importing all theme CSS files (currently light, dark,
1765
+ spacing, and typography).
1766
+ - Spacing and typography tokens are now added to the `:root` rather than requiring a `data-theme`
1767
+ attribute.
1768
+ - Removes 'spacing' from the default theme.
1777
1769
 
1778
1770
  ## 0.10.35
1779
1771
 
1780
1772
  ### Patch Changes
1781
1773
 
1782
- - [#26560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26560)
1783
- [`44c1c98c87a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44c1c98c87a) - Export
1784
- CSSTokenMap
1774
+ - [#26560](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26560)
1775
+ [`44c1c98c87a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44c1c98c87a) - Export
1776
+ CSSTokenMap
1785
1777
 
1786
1778
  ## 0.10.34
1787
1779
 
1788
1780
  ### Patch Changes
1789
1781
 
1790
- - [#26764](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26764)
1791
- [`10f2fea8f3d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/10f2fea8f3d) -
1792
- Updated JSDoc descriptions for token() and setGlobalTheme()
1782
+ - [#26764](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26764)
1783
+ [`10f2fea8f3d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/10f2fea8f3d) - Updated
1784
+ JSDoc descriptions for token() and setGlobalTheme()
1793
1785
 
1794
1786
  ## 0.10.33
1795
1787
 
1796
1788
  ### Patch Changes
1797
1789
 
1798
- - [#26623](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26623)
1799
- [`7a7d1aedac0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a7d1aedac0) - Change
1800
- pixels to rems for spacing tokens.
1790
+ - [#26623](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26623)
1791
+ [`7a7d1aedac0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a7d1aedac0) - Change
1792
+ pixels to rems for spacing tokens.
1801
1793
 
1802
1794
  ## 0.10.32
1803
1795
 
1804
1796
  ### Patch Changes
1805
1797
 
1806
- - [#26624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26624)
1807
- [`c8bd8ee1920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8bd8ee1920) - Adds
1808
- new shadow tokens, elevation.shadow.overflow.spread and elevation.shadow.overflow.perimeter,
1809
- that can be applied in combination to replicate the overflow shadow when
1810
- elevation.shadow.overflow is not technically feasible to implement.
1798
+ - [#26624](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26624)
1799
+ [`c8bd8ee1920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8bd8ee1920) - Adds new
1800
+ shadow tokens, elevation.shadow.overflow.spread and elevation.shadow.overflow.perimeter, that can
1801
+ be applied in combination to replicate the overflow shadow when elevation.shadow.overflow is not
1802
+ technically feasible to implement.
1811
1803
 
1812
1804
  ## 0.10.31
1813
1805
 
1814
1806
  ### Patch Changes
1815
1807
 
1816
- - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
1817
- [`e35fc41dc33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e35fc41dc33) -
1818
- Internal change to use updated primtive spacing prop values. No expected behaviour change.
1819
- - [`92ee7c98d1a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92ee7c98d1a) - Fixes
1820
- a number of neutral palette colors which were being generated without their alphas in the legacy
1821
- palette.
1822
- - [`7e491389968`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e491389968) - Adds
1823
- experimental spacing tokens, currently for internal use only. These are not ready for widespread
1824
- consumption yet and a lint rule will raise issues if you try to use them.
1808
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
1809
+ [`e35fc41dc33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e35fc41dc33) - Internal
1810
+ change to use updated primtive spacing prop values. No expected behaviour change.
1811
+ - [`92ee7c98d1a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92ee7c98d1a) - Fixes a
1812
+ number of neutral palette colors which were being generated without their alphas in the legacy
1813
+ palette.
1814
+ - [`7e491389968`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e491389968) - Adds
1815
+ experimental spacing tokens, currently for internal use only. These are not ready for widespread
1816
+ consumption yet and a lint rule will raise issues if you try to use them.
1825
1817
 
1826
1818
  ## 0.10.30
1827
1819
 
1828
1820
  ### Patch Changes
1829
1821
 
1830
- - [#26186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26186)
1831
- [`d9173fbdc13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9173fbdc13) - Added
1832
- some more experimental spacing tokens for internal testing and validation. These are not
1833
- intended for public consumption yet.
1822
+ - [#26186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26186)
1823
+ [`d9173fbdc13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9173fbdc13) - Added
1824
+ some more experimental spacing tokens for internal testing and validation. These are not intended
1825
+ for public consumption yet.
1834
1826
 
1835
1827
  ## 0.10.29
1836
1828
 
1837
1829
  ### Patch Changes
1838
1830
 
1839
- - [#26128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26128)
1840
- [`41dad8915d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41dad8915d7) - **✨
1841
- Color modes**
1831
+ - [#26128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26128)
1832
+ [`41dad8915d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41dad8915d7) - **✨
1833
+ Color modes**
1842
1834
 
1843
- Color modes are now attached to the DOM with the data-theme attr:
1835
+ Color modes are now attached to the DOM with the data-theme attr:
1844
1836
 
1845
- ```html
1846
- <html data-theme="dark" data-color-mode="auto"></html>
1847
- ```
1837
+ ```html
1838
+ <html data-theme="dark" data-color-mode="auto"></html>
1839
+ ```
1848
1840
 
1849
- **✨ Multi-theme**
1841
+ **✨ Multi-theme**
1850
1842
 
1851
- We now allow multiple active themes:
1843
+ We now allow multiple active themes:
1852
1844
 
1853
- ```html
1854
- <html data-theme="dark spacing"></html>
1855
- ```
1845
+ ```html
1846
+ <html data-theme="dark spacing"></html>
1847
+ ```
1856
1848
 
1857
- **✨ System preferences**
1849
+ **✨ System preferences**
1858
1850
 
1859
- We also output `@media (prefers-color-scheme: dark)` media selectors for color themes
1851
+ We also output `@media (prefers-color-scheme: dark)` media selectors for color themes
1860
1852
 
1861
- ```css
1862
- @media (prefers-color-scheme: dark) {
1863
- html[data-color-mode='auto'] {
1864
- ...;
1865
- }
1853
+ ```css
1854
+ @media (prefers-color-scheme: dark) {
1855
+ html[data-color-mode='auto'] {
1856
+ ...;
1866
1857
  }
1867
- ```
1858
+ }
1859
+ ```
1868
1860
 
1869
- This allows Product themes to be toggled by the OS-level setting.
1861
+ This allows Product themes to be toggled by the OS-level setting.
1870
1862
 
1871
- **✨ Setting theme state**
1863
+ **✨ Setting theme state**
1872
1864
 
1873
- `setGlobalTheme` now allows you to set auto color scheme via an additional boolean arg
1865
+ `setGlobalTheme` now allows you to set auto color scheme via an additional boolean arg
1874
1866
 
1875
- ```js
1876
- setGlobalTheme(themeState, true); // data-color-mode="auto"
1877
- ```
1867
+ ```js
1868
+ setGlobalTheme(themeState, true); // data-color-mode="auto"
1869
+ ```
1878
1870
 
1879
- ✨ Source of truth for themes
1871
+ ✨ Source of truth for themes
1880
1872
 
1881
- All theme configuration now exists in a single object as a source of truth
1873
+ All theme configuration now exists in a single object as a source of truth
1882
1874
 
1883
- ```ts
1884
- const themeConfig: Record<Themes, ThemeConfig> = {
1885
- 'atlassian-light': {
1886
- id: 'light',
1887
- displayName: 'Light Theme',
1888
- palette: 'defaultPalette',
1889
- attributes: {
1890
- type: 'color',
1891
- mode: 'light',
1892
- },
1875
+ ```ts
1876
+ const themeConfig: Record<Themes, ThemeConfig> = {
1877
+ 'atlassian-light': {
1878
+ id: 'light',
1879
+ displayName: 'Light Theme',
1880
+ palette: 'defaultPalette',
1881
+ attributes: {
1882
+ type: 'color',
1883
+ mode: 'light',
1893
1884
  },
1894
- ...
1895
- };
1896
- ```
1885
+ },
1886
+ ...
1887
+ };
1888
+ ```
1897
1889
 
1898
1890
  ## 0.10.28
1899
1891
 
1900
1892
  ### Patch Changes
1901
1893
 
1902
- - [#26165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26165)
1903
- [`52ee11d5b3c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/52ee11d5b3c) - Adds
1904
- an additional entrypoint for the `@atlaskit/tokens` package to support tooling.
1894
+ - [#26165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26165)
1895
+ [`52ee11d5b3c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/52ee11d5b3c) - Adds an
1896
+ additional entrypoint for the `@atlaskit/tokens` package to support tooling.
1905
1897
 
1906
1898
  ## 0.10.27
1907
1899
 
1908
1900
  ### Patch Changes
1909
1901
 
1910
- - [#26111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26111)
1911
- [`56b107f0989`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b107f0989) - Adds
1912
- experimental spacing tokens, currently for internal use only. These are not ready for widespread
1913
- consumption yet and a lint rule will raise issues if you try to use them.
1902
+ - [#26111](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26111)
1903
+ [`56b107f0989`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b107f0989) - Adds
1904
+ experimental spacing tokens, currently for internal use only. These are not ready for widespread
1905
+ consumption yet and a lint rule will raise issues if you try to use them.
1914
1906
 
1915
1907
  ## 0.10.26
1916
1908
 
1917
1909
  ### Patch Changes
1918
1910
 
1919
- - [#25755](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25755)
1920
- [`92faa09c2d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92faa09c2d4) - Rename
1921
- base tokens to pascal case
1911
+ - [#25755](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25755)
1912
+ [`92faa09c2d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92faa09c2d4) - Rename
1913
+ base tokens to pascal case
1922
1914
 
1923
1915
  ## 0.10.25
1924
1916
 
1925
1917
  ### Patch Changes
1926
1918
 
1927
- - [#25841](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25841)
1928
- [`2e2ac6d3091`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e2ac6d3091) - Add
1929
- new entrypoint `@atlaskit/tokens/tokens-raw` which provides access to raw token data. This
1930
- enables the Atlassian Design Tokens Figma plugin to import required token information:wq
1919
+ - [#25841](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25841)
1920
+ [`2e2ac6d3091`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e2ac6d3091) - Add new
1921
+ entrypoint `@atlaskit/tokens/tokens-raw` which provides access to raw token data. This enables the
1922
+ Atlassian Design Tokens Figma plugin to import required token information:wq
1931
1923
 
1932
1924
  ## 0.10.24
1933
1925
 
1934
1926
  ### Patch Changes
1935
1927
 
1936
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
1937
- [`619d2c2eaed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/619d2c2eaed) - Fixed
1938
- typo in `elevation.surface.overlay` description
1928
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
1929
+ [`619d2c2eaed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/619d2c2eaed) - Fixed
1930
+ typo in `elevation.surface.overlay` description
1939
1931
 
1940
1932
  ## 0.10.23
1941
1933
 
1942
1934
  ### Patch Changes
1943
1935
 
1944
- - [#25673](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25673)
1945
- [`264f928f021`](https://bitbucket.org/atlassian/atlassian-frontend/commits/264f928f021) - Fix
1946
- ignored entrypoint to allow correct access to babel-plugin
1936
+ - [#25673](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25673)
1937
+ [`264f928f021`](https://bitbucket.org/atlassian/atlassian-frontend/commits/264f928f021) - Fix
1938
+ ignored entrypoint to allow correct access to babel-plugin
1947
1939
 
1948
1940
  ## 0.10.22
1949
1941
 
1950
1942
  ### Patch Changes
1951
1943
 
1952
- - [#22827](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22827)
1953
- [`8e324bc208f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e324bc208f) - Source
1954
- files for tokens chrome extension has been moved out and into its own pacakge
1944
+ - [#22827](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22827)
1945
+ [`8e324bc208f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e324bc208f) - Source
1946
+ files for tokens chrome extension has been moved out and into its own pacakge
1955
1947
 
1956
1948
  ## 0.10.21
1957
1949
 
1958
1950
  ### Patch Changes
1959
1951
 
1960
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
1961
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
1962
- Upgrade Typescript from `4.3.5` to `4.5.5`
1952
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
1953
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
1954
+ Typescript from `4.3.5` to `4.5.5`
1963
1955
 
1964
1956
  ## 0.10.20
1965
1957
 
1966
1958
  ### Patch Changes
1967
1959
 
1968
- - [#25211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25211)
1969
- [`9f6aa1d7cdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f6aa1d7cdc) -
1970
- Introduces new interaction states to a number of existing elevation tokens:
1960
+ - [#25211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25211)
1961
+ [`9f6aa1d7cdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f6aa1d7cdc) -
1962
+ Introduces new interaction states to a number of existing elevation tokens:
1971
1963
 
1972
- - elevation.surface.hovered
1973
- - elevation.surface.pressed
1974
- - elevation.surface.raised.hovered
1975
- - elevation.surface.raised.pressed
1976
- - elevation.surface.overlay.hovered
1977
- - elevation.surface.overlay.pressed
1964
+ - elevation.surface.hovered
1965
+ - elevation.surface.pressed
1966
+ - elevation.surface.raised.hovered
1967
+ - elevation.surface.raised.pressed
1968
+ - elevation.surface.overlay.hovered
1969
+ - elevation.surface.overlay.pressed
1978
1970
 
1979
1971
  ## 0.10.19
1980
1972
 
1981
1973
  ### Patch Changes
1982
1974
 
1983
- - [#24502](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24502)
1984
- [`efe09ca1159`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efe09ca1159) - Adds
1985
- new opacity tokens, opacity.disabled and opacity.loading, that can be applied to elements to
1986
- indicate loading and disabled states.
1975
+ - [#24502](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24502)
1976
+ [`efe09ca1159`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efe09ca1159) - Adds new
1977
+ opacity tokens, opacity.disabled and opacity.loading, that can be applied to elements to indicate
1978
+ loading and disabled states.
1987
1979
 
1988
1980
  ## 0.10.18
1989
1981
 
1990
1982
  ### Patch Changes
1991
1983
 
1992
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
1993
- [`7101fb6a895`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7101fb6a895) -
1994
- Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
1984
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
1985
+ [`7101fb6a895`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7101fb6a895) - Updates
1986
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
1995
1987
 
1996
1988
  ## 0.10.17
1997
1989
 
1998
1990
  ### Patch Changes
1999
1991
 
2000
- - [#24390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24390)
2001
- [`e6dc2779c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6dc2779c94) - Adds
2002
- support for two new themes "Atlassian-legacy-light" & "Atlassian-legacy-dark". These are
2003
- compatibility themes, utilising colors from the legacy color palette.
1992
+ - [#24390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24390)
1993
+ [`e6dc2779c94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6dc2779c94) - Adds
1994
+ support for two new themes "Atlassian-legacy-light" & "Atlassian-legacy-dark". These are
1995
+ compatibility themes, utilising colors from the legacy color palette.
2004
1996
 
2005
1997
  ## 0.10.16
2006
1998
 
2007
1999
  ### Patch Changes
2008
2000
 
2009
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
2010
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
2011
- Upgrade Typescript from `4.2.4` to `4.3.5`.
2001
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
2002
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
2003
+ Typescript from `4.2.4` to `4.3.5`.
2012
2004
 
2013
2005
  ## 0.10.15
2014
2006
 
2015
2007
  ### Patch Changes
2016
2008
 
2017
- - [#24188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24188)
2018
- [`50299267c2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50299267c2e) -
2019
- Refactors style-dictionary to support multiple palettes.
2009
+ - [#24188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24188)
2010
+ [`50299267c2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50299267c2e) -
2011
+ Refactors style-dictionary to support multiple palettes.
2020
2012
 
2021
- - Adds legacy-palette containing colours from `@atlaskit/theme`.
2022
- - Palettes are processed as their own 'themes' (functionally) and now have their own
2023
- configuration via style-dictionary.
2024
- - formatters + transformers were renamed and moved to match best practices
2025
- - Types were updated to allow multi-palette values (base tokens)
2013
+ - Adds legacy-palette containing colours from `@atlaskit/theme`.
2014
+ - Palettes are processed as their own 'themes' (functionally) and now have their own configuration
2015
+ via style-dictionary.
2016
+ - formatters + transformers were renamed and moved to match best practices
2017
+ - Types were updated to allow multi-palette values (base tokens)
2026
2018
 
2027
2019
  ## 0.10.14
2028
2020
 
2029
2021
  ### Patch Changes
2030
2022
 
2031
- - [#24077](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24077)
2032
- [`e3377246ebc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3377246ebc) - Moves
2033
- the following `deprecated` tokens to the `sunset` phase. Please ensure that all `sunset` tokens
2034
- are removed from your application, they will be completely removed in the next major version:
2023
+ - [#24077](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24077)
2024
+ [`e3377246ebc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3377246ebc) - Moves
2025
+ the following `deprecated` tokens to the `sunset` phase. Please ensure that all `sunset` tokens
2026
+ are removed from your application, they will be completely removed in the next major version:
2035
2027
 
2036
- - 'color.interaction.inverse.hovered' => 'color.background.inverse.subtle.hovered'
2037
- - 'color.interaction.inverse.pressed' => 'color.background.inverse.subtle.pressed'
2028
+ - 'color.interaction.inverse.hovered' => 'color.background.inverse.subtle.hovered'
2029
+ - 'color.interaction.inverse.pressed' => 'color.background.inverse.subtle.pressed'
2038
2030
 
2039
- If you have configured the design token eslint rules, running `eslint --fix` will resolve these
2040
- changes automatically.
2031
+ If you have configured the design token eslint rules, running `eslint --fix` will resolve these
2032
+ changes automatically.
2041
2033
 
2042
2034
  ## 0.10.13
2043
2035
 
2044
2036
  ### Patch Changes
2045
2037
 
2046
- - [#23579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23579)
2047
- [`39a56a3c4e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39a56a3c4e7) - Update
2048
- disabled tokens to use alpha base tokens:
2038
+ - [#23579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23579)
2039
+ [`39a56a3c4e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39a56a3c4e7) - Update
2040
+ disabled tokens to use alpha base tokens:
2049
2041
 
2050
- - `color.text.disabled`
2051
- - `color.icon.disabled`
2052
- - `color.background.disabled`
2042
+ - `color.text.disabled`
2043
+ - `color.icon.disabled`
2044
+ - `color.background.disabled`
2053
2045
 
2054
2046
  ## 0.10.12
2055
2047
 
2056
2048
  ### Patch Changes
2057
2049
 
2058
- - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
2059
- [`83c253f28bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83c253f28bd) - [ux] -
2060
- Correct 'color.interaction.hovered' and 'color.interaction.pressed' token values, which were
2061
- mistakenly mapped inversely in light and dark mode. The token values have now been swapped.
2050
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
2051
+ [`83c253f28bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83c253f28bd) - [ux] -
2052
+ Correct 'color.interaction.hovered' and 'color.interaction.pressed' token values, which were
2053
+ mistakenly mapped inversely in light and dark mode. The token values have now been swapped.
2062
2054
 
2063
- - Deprecate 'color.interaction.inverse.hovered' which has been replaced with
2064
- 'color.background.inverse.subtle.hovered'.
2065
- - Deprecate 'color.interaction.inverse.pressed' which has been replaced with
2066
- 'color.background.inverse.subtle.pressed'.
2055
+ - Deprecate 'color.interaction.inverse.hovered' which has been replaced with
2056
+ 'color.background.inverse.subtle.hovered'.
2057
+ - Deprecate 'color.interaction.inverse.pressed' which has been replaced with
2058
+ 'color.background.inverse.subtle.pressed'.
2067
2059
 
2068
2060
  ## 0.10.11
2069
2061
 
2070
2062
  ### Patch Changes
2071
2063
 
2072
- - [#23027](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23027)
2073
- [`d9d18df130f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d18df130f) - [ux]
2074
- Tweaked the values of the DN500 and DN500A base tokens to improve color contrast when paired
2075
- with text:
2064
+ - [#23027](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23027)
2065
+ [`d9d18df130f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d18df130f) - [ux]
2066
+ Tweaked the values of the DN500 and DN500A base tokens to improve color contrast when paired with
2067
+ text:
2076
2068
 
2077
- - DN500 has changed from `#5C6C7A` to `#596773`
2078
- - DN500A has changed from `#A9C5DF7A` to `#9BB4CA80`
2069
+ - DN500 has changed from `#5C6C7A` to `#596773`
2070
+ - DN500A has changed from `#A9C5DF7A` to `#9BB4CA80`
2079
2071
 
2080
- This changes the values in dark mode for the following tokens:
2072
+ This changes the values in dark mode for the following tokens:
2081
2073
 
2082
- _(active)_:
2074
+ _(active)_:
2083
2075
 
2084
- - `color.text.disabled`
2085
- - `color.icon.disabled`
2086
- - `color.background.accent.gray.subtle`
2076
+ - `color.text.disabled`
2077
+ - `color.icon.disabled`
2078
+ - `color.background.accent.gray.subtle`
2087
2079
 
2088
- _(deprecated)_:
2080
+ _(deprecated)_:
2089
2081
 
2090
- - `color.overlay.pressed`
2082
+ - `color.overlay.pressed`
2091
2083
 
2092
2084
  ## 0.10.10
2093
2085
 
2094
2086
  ### Patch Changes
2095
2087
 
2096
- - [#22892](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22892)
2097
- [`dc05530d2a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc05530d2a0) -
2098
- Internal refactor to the way the documentation is built.
2088
+ - [#22892](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22892)
2089
+ [`dc05530d2a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc05530d2a0) - Internal
2090
+ refactor to the way the documentation is built.
2099
2091
 
2100
2092
  ## 0.10.9
2101
2093
 
2102
2094
  ### Patch Changes
2103
2095
 
2104
- - Updated dependencies
2096
+ - Updated dependencies
2105
2097
 
2106
2098
  ## 0.10.8
2107
2099
 
2108
2100
  ### Patch Changes
2109
2101
 
2110
- - [#22551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22551)
2111
- [`3c1eda5c3d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c1eda5c3d0) -
2112
- [Tokens] added new color.border.bold token
2102
+ - [#22551](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22551)
2103
+ [`3c1eda5c3d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c1eda5c3d0) - [Tokens]
2104
+ added new color.border.bold token
2113
2105
 
2114
2106
  ## 0.10.7
2115
2107
 
2116
2108
  ### Patch Changes
2117
2109
 
2118
- - [#22107](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22107)
2119
- [`cb8723a7974`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb8723a7974) -
2120
- Introduces a new set of neutral accent tokens:
2110
+ - [#22107](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22107)
2111
+ [`cb8723a7974`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb8723a7974) -
2112
+ Introduces a new set of neutral accent tokens:
2121
2113
 
2122
- - `color.background.accent.gray.bolder`
2123
- - `color.background.accent.gray.subtle`
2124
- - `color.background.accent.gray.subtler`
2125
- - `color.background.accent.gray.subtlest`
2126
- - `color.border.accent.gray`
2127
- - `color.icon.accent.gray`
2128
- - `color.text.accent.gray`
2129
- - `color.text.accent.gray.bolder`
2114
+ - `color.background.accent.gray.bolder`
2115
+ - `color.background.accent.gray.subtle`
2116
+ - `color.background.accent.gray.subtler`
2117
+ - `color.background.accent.gray.subtlest`
2118
+ - `color.border.accent.gray`
2119
+ - `color.icon.accent.gray`
2120
+ - `color.text.accent.gray`
2121
+ - `color.text.accent.gray.bolder`
2130
2122
 
2131
2123
  ## 0.10.6
2132
2124
 
2133
2125
  ### Patch Changes
2134
2126
 
2135
- - [#22364](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22364)
2136
- [`04fc3d5c658`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04fc3d5c658) - Run
2137
- token transform earlier by hooking into Program visitor
2127
+ - [#22364](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22364)
2128
+ [`04fc3d5c658`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04fc3d5c658) - Run
2129
+ token transform earlier by hooking into Program visitor
2138
2130
 
2139
2131
  ## 0.10.5
2140
2132
 
2141
2133
  ### Patch Changes
2142
2134
 
2143
- - [#22060](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22060)
2144
- [`1124fa435ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1124fa435ed) - Moves
2145
- the following `deprecated` tokens to the `sunset` phase. Please ensure that all `sunset` tokens
2146
- are removed from your application, they will be completely removed in the next major version:
2135
+ - [#22060](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22060)
2136
+ [`1124fa435ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1124fa435ed) - Moves
2137
+ the following `deprecated` tokens to the `sunset` phase. Please ensure that all `sunset` tokens
2138
+ are removed from your application, they will be completely removed in the next major version:
2147
2139
 
2148
- - `color.background.brand.hovered` => `color.background.selected.hovered`
2149
- - `color.background.brand.pressed` => `color.background.selected.pressed`
2150
- - `color.background.brand` => `color.background.selected`
2151
- - `color.background.inverse` => `color.background.inverse.subtle`
2152
- - `color.background.selected.hover` => `color.background.selected.hovered`
2153
- - `color.background.selected.resting` => `color.background.selected`
2154
- - `color.background.subtleBrand.hover` => `color.background.selected.hovered`
2155
- - `color.background.subtleBrand.pressed` => `color.background.selected.pressed`
2156
- - `color.background.subtleBrand.resting` => `color.background.selected`
2140
+ - `color.background.brand.hovered` => `color.background.selected.hovered`
2141
+ - `color.background.brand.pressed` => `color.background.selected.pressed`
2142
+ - `color.background.brand` => `color.background.selected`
2143
+ - `color.background.inverse` => `color.background.inverse.subtle`
2144
+ - `color.background.selected.hover` => `color.background.selected.hovered`
2145
+ - `color.background.selected.resting` => `color.background.selected`
2146
+ - `color.background.subtleBrand.hover` => `color.background.selected.hovered`
2147
+ - `color.background.subtleBrand.pressed` => `color.background.selected.pressed`
2148
+ - `color.background.subtleBrand.resting` => `color.background.selected`
2157
2149
 
2158
- If you have configured the design token eslint rules, running `eslint --fix` will resolve these
2159
- changes automatically.
2150
+ If you have configured the design token eslint rules, running `eslint --fix` will resolve these
2151
+ changes automatically.
2160
2152
 
2161
2153
  ## 0.10.4
2162
2154
 
2163
2155
  ### Patch Changes
2164
2156
 
2165
- - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
2166
- [`7b9be57869b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b9be57869b) -
2167
- ED-14905 made fallback token name work for production
2157
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570)
2158
+ [`7b9be57869b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b9be57869b) - ED-14905
2159
+ made fallback token name work for production
2168
2160
 
2169
2161
  ## 0.10.3
2170
2162
 
2171
2163
  ### Patch Changes
2172
2164
 
2173
- - [#21650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21650)
2174
- [`acbd8d5576a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/acbd8d5576a) - Added
2175
- a color-contrast test for our color pairs in the Tokens package.
2165
+ - [#21650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21650)
2166
+ [`acbd8d5576a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/acbd8d5576a) - Added a
2167
+ color-contrast test for our color pairs in the Tokens package.
2176
2168
 
2177
2169
  ## 0.10.2
2178
2170
 
2179
2171
  ### Patch Changes
2180
2172
 
2181
- - [#21920](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21920)
2182
- [`5b8212f08b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b8212f08b0) - The
2183
- current theme can now be accessed and monitored for changes using new exports.
2173
+ - [#21920](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21920)
2174
+ [`5b8212f08b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b8212f08b0) - The
2175
+ current theme can now be accessed and monitored for changes using new exports.
2184
2176
 
2185
- - `useThemeObserver` React hook
2186
- - `ThemeMutationObserver` Mutation Observer
2177
+ - `useThemeObserver` React hook
2178
+ - `ThemeMutationObserver` Mutation Observer
2187
2179
 
2188
2180
  ## 0.10.1
2189
2181
 
2190
2182
  ### Patch Changes
2191
2183
 
2192
- - [#21813](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21813)
2193
- [`7267d0aad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7267d0aad7c) - Update
2194
- group name metadata for light and dark neutral palette tokens
2184
+ - [#21813](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21813)
2185
+ [`7267d0aad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7267d0aad7c) - Update
2186
+ group name metadata for light and dark neutral palette tokens
2195
2187
 
2196
2188
  ## 0.10.0
2197
2189
 
2198
2190
  ### Minor Changes
2199
2191
 
2200
- - [#21484](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21484)
2201
- [`aa06bcc3c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa06bcc3c48) -
2202
- Removes the :root selector from the light theme, which allows the light theme to be turned off
2203
- once the css is mounted. This is to support our migration efforts, but we will ultimately
2204
- reintroduce this behaviour once tokens are the default experience
2192
+ - [#21484](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21484)
2193
+ [`aa06bcc3c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa06bcc3c48) - Removes
2194
+ the :root selector from the light theme, which allows the light theme to be turned off once the
2195
+ css is mounted. This is to support our migration efforts, but we will ultimately reintroduce this
2196
+ behaviour once tokens are the default experience
2205
2197
 
2206
2198
  ## 0.9.5
2207
2199
 
2208
2200
  ### Patch Changes
2209
2201
 
2210
- - [#21487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21487)
2211
- [`4942487a9f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4942487a9f6) - Fixes
2212
- internal representation of CSS entrypoints for themes. This is an internal change only and does
2213
- not effect public APIs.
2202
+ - [#21487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21487)
2203
+ [`4942487a9f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4942487a9f6) - Fixes
2204
+ internal representation of CSS entrypoints for themes. This is an internal change only and does
2205
+ not effect public APIs.
2214
2206
 
2215
2207
  ## 0.9.4
2216
2208
 
2217
2209
  ### Patch Changes
2218
2210
 
2219
- - [#21543](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21543)
2220
- [`1dad88929cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dad88929cd) - Adds
2221
- the `@atlassian/codegen` package that is designed to be used in concert with packages that
2222
- utilise built assets in their source. Initial release adds an integrity header to assets from
2223
- `@atlaskit/tokens`.
2211
+ - [#21543](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21543)
2212
+ [`1dad88929cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dad88929cd) - Adds the
2213
+ `@atlassian/codegen` package that is designed to be used in concert with packages that utilise
2214
+ built assets in their source. Initial release adds an integrity header to assets from
2215
+ `@atlaskit/tokens`.
2224
2216
 
2225
2217
  ## 0.9.3
2226
2218
 
2227
2219
  ### Patch Changes
2228
2220
 
2229
- - [#20579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20579)
2230
- [`ae9eab2df7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae9eab2df7d) - Fixing
2231
- blanket selected and danger tokens that were 80% instead of 8% opacity
2221
+ - [#20579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20579)
2222
+ [`ae9eab2df7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae9eab2df7d) - Fixing
2223
+ blanket selected and danger tokens that were 80% instead of 8% opacity
2232
2224
 
2233
2225
  ## 0.9.2
2234
2226
 
2235
2227
  ### Patch Changes
2236
2228
 
2237
- - [#20895](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20895)
2238
- [`c1de986e861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1de986e861) - Added
2239
- new entrypoint `@atlaskit/tokens/palettes-raw` for raw palette token data (used in
2240
- documentation)
2229
+ - [#20895](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20895)
2230
+ [`c1de986e861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1de986e861) - Added
2231
+ new entrypoint `@atlaskit/tokens/palettes-raw` for raw palette token data (used in documentation)
2241
2232
 
2242
2233
  ## 0.9.1
2243
2234
 
2244
2235
  ### Patch Changes
2245
2236
 
2246
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
2247
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
2248
- Upgrade to TypeScript 4.2.4
2237
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
2238
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
2239
+ to TypeScript 4.2.4
2249
2240
 
2250
2241
  ## 0.9.0
2251
2242
 
2252
2243
  ### Minor Changes
2253
2244
 
2254
- - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
2255
- [`54180abbf55`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54180abbf55) - [ux]
2256
- Add a new `color.border.inverse` token. Use for borders on bold backgrounds
2245
+ - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
2246
+ [`54180abbf55`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54180abbf55) - [ux] Add
2247
+ a new `color.border.inverse` token. Use for borders on bold backgrounds
2257
2248
 
2258
2249
  ## 0.8.3
2259
2250
 
2260
2251
  ### Patch Changes
2261
2252
 
2262
- - [#20065](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20065)
2263
- [`530455156a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/530455156a8) -
2264
- Deprecating color.background.inverse in favour of the new color.background.inverse.subtle token
2265
- instead. Also introduced color.background.inverse.subtle.hovered and
2266
- color.background.inverse.subtle.pressed tokens to supplement it.
2253
+ - [#20065](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20065)
2254
+ [`530455156a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/530455156a8) -
2255
+ Deprecating color.background.inverse in favour of the new color.background.inverse.subtle token
2256
+ instead. Also introduced color.background.inverse.subtle.hovered and
2257
+ color.background.inverse.subtle.pressed tokens to supplement it.
2267
2258
 
2268
2259
  ## 0.8.2
2269
2260
 
2270
2261
  ### Patch Changes
2271
2262
 
2272
- - [#20082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20082)
2273
- [`b170565a618`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b170565a618) - [ux]
2274
- Update to input token colors: `color.background.input`, `color.background.input.hovered`,
2275
- `color.background.input.pressed`.
2263
+ - [#20082](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20082)
2264
+ [`b170565a618`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b170565a618) - [ux]
2265
+ Update to input token colors: `color.background.input`, `color.background.input.hovered`,
2266
+ `color.background.input.pressed`.
2276
2267
 
2277
2268
  ## 0.8.1
2278
2269
 
2279
2270
  ### Patch Changes
2280
2271
 
2281
- - [#19900](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19900)
2282
- [`a66253fc6a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a66253fc6a5) - Export
2283
- token ID utility functions with new entrypoint `@atlaskit/tokens/token-ids`
2272
+ - [#19900](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19900)
2273
+ [`a66253fc6a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a66253fc6a5) - Export
2274
+ token ID utility functions with new entrypoint `@atlaskit/tokens/token-ids`
2284
2275
 
2285
2276
  ## 0.8.0
2286
2277
 
2287
2278
  ### Minor Changes
2288
2279
 
2289
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
2290
- [`1fb52fef1a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fb52fef1a8) - [ux]
2291
- New Skeleton color tokens `color.skeleton.subtle` and `color.skeleton.subtlest`. Use for
2292
- skeleton loading states
2293
-
2294
- ### Patch Changes
2295
-
2296
- - [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) -
2297
- Replaces usage of deprecated design tokens. No visual or functional changes
2298
- - [`308db322b04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/308db322b04) - The
2299
- following tokens have been moved from the `deprecated` to `deleted` state in their lifecycles.
2300
- These tokens will continue to exist, however tooling will begin to error wherever they're used.
2301
- If you haven't already, please run `yarn eslint --fix` or similar to automate your migration.
2302
-
2303
- - `color.background.blanket` => `color.blanket`
2304
- - `color.background.boldBrand.resting` => `color.background.brand.bold`
2305
- - `color.background.boldBrand.hover` => `color.background.brand.bold.hovered`
2306
- - `color.background.boldBrand.pressed` => `color.background.brand.bold.pressed`
2307
- - `color.background.boldDanger.resting` => `color.background.danger.bold`
2308
- - `color.background.boldDanger.hover` => `color.background.danger.bold.hovered`
2309
- - `color.background.boldDanger.pressed` => `color.background.danger.bold.pressed`
2310
- - `color.background.boldDiscovery.resting` => `color.background.discovery.bold`
2311
- - `color.background.boldDiscovery.hover` => `color.background.discovery.bold.hovered`
2312
- - `color.background.boldDiscovery.pressed` => `color.background.discovery.bold.pressed`
2313
- - `color.background.boldNeutral.resting` => `color.background.neutral.bold`
2314
- - `color.background.boldNeutral.hover` => `color.background.neutral.bold.hovered`
2315
- - `color.background.boldNeutral.pressed` => `color.background.neutral.bold.pressed`
2316
- - `color.background.boldSuccess.resting` => `color.background.success.bold`
2317
- - `color.background.boldSuccess.hover` => `color.background.success.bold.hovered`
2318
- - `color.background.boldSuccess.pressed` => `color.background.success.bold.pressed`
2319
- - `color.background.boldWarning.resting` => `color.background.warning.bold`
2320
- - `color.background.boldWarning.hover` => `color.background.warning.bold.hovered`
2321
- - `color.background.boldWarning.pressed` => `color.background.warning.bold.pressed`
2322
- - `color.background.default` => `elevation.surface`
2323
- - `color.background.card` => `elevation.surface.raised`
2324
- - `color.background.overlay` => `elevation.surface.overlay`
2325
- - `color.background.selected.resting` => `color.background.selected`
2326
- - `color.background.selected.hover` => `color.background.selected.hovered`
2327
- - `color.background.subtleBorderedNeutral.resting` => `color.background.input`
2328
- - `color.background.subtleBorderedNeutral.pressed` => `color.background.input.pressed`
2329
- - `color.background.subtleBrand.resting` => `color.background.brand`
2330
- - `color.background.subtleBrand.hover` => `color.background.brand.hovered`
2331
- - `color.background.subtleBrand.pressed` => `color.background.brand.pressed`
2332
- - `color.background.subtleDanger.resting` => `color.background.danger`
2333
- - `color.background.subtleDanger.hover` => `color.background.danger.hovered`
2334
- - `color.background.subtleDanger.pressed` => `color.background.danger.pressed`
2335
- - `color.background.subtleDiscovery.resting` => `color.background.discovery`
2336
- - `color.background.subtleDiscovery.hover` => `color.background.discovery.hovered`
2337
- - `color.background.subtleDiscovery.pressed` => `color.background.discovery.pressed`
2338
- - `color.background.subtleNeutral.resting` => `color.background.neutral`
2339
- - `color.background.subtleNeutral.hover` => `color.background.neutral.hovered`
2340
- - `color.background.subtleNeutral.pressed` => `color.background.neutral.pressed`
2341
- - `color.background.subtleSuccess.resting` => `color.background.success`
2342
- - `color.background.subtleSuccess.hover` => `color.background.success.hovered`
2343
- - `color.background.subtleSuccess.pressed` => `color.background.success.pressed`
2344
- - `color.background.subtleWarning.resting` => `color.background.warning`
2345
- - `color.background.subtleWarning.hover` => `color.background.warning.hovered`
2346
- - `color.background.subtleWarning.pressed` => `color.background.warning.pressed`
2347
- - `color.background.sunken` => `elevation.surface.sunken`
2348
- - `color.background.transparentNeutral.hover` => `color.background.neutral.subtle.hovered`
2349
- - `color.background.transparentNeutral.pressed` => `color.background.neutral.subtle.pressed`
2350
- - `color.text.highEmphasis` => `color.text`
2351
- - `color.text.mediumEmphasis` => `color.text.subtle`
2352
- - `color.text.lowEmphasis` => `color.text.subtlest`
2353
- - `color.text.link.resting` => `color.link`
2354
- - `color.text.link.pressed` => `color.link.pressed`
2355
- - `color.text.onBold` => `color.text.inverse`
2356
- - `color.text.onBoldWarning` => `color.text.inverse.warning`
2357
- - `color.border.focus` => `color.border.focused`
2358
- - `color.border.neutral` => `color.border`
2359
- - `color.iconBorder.brand` => `color.icon.brand` or `color.border.brand`
2360
- - `color.iconBorder.danger` => `color.icon.danger` or `color.border.danger`
2361
- - `color.iconBorder.warning` => `color.icon.warning` or `color.border.warning`
2362
- - `color.iconBorder.success` => `color.icon.success` or `color.border.success`
2363
- - `color.iconBorder.discovery` => `color.icon.discovery` or `color.border.discovery`
2364
- - `color.overlay.hover` => `color.interaction.hovered`
2365
- - `color.overlay.pressed` => `color.interaction.pressed`
2366
- - `color.shadow.card` => `elevation.shadow.raised`
2367
- - `color.shadow.overlay` => `elevation.shadow.overlay`
2280
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
2281
+ [`1fb52fef1a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fb52fef1a8) - [ux] New
2282
+ Skeleton color tokens `color.skeleton.subtle` and `color.skeleton.subtlest`. Use for skeleton
2283
+ loading states
2284
+
2285
+ ### Patch Changes
2286
+
2287
+ - [`ac9343c3ed4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac9343c3ed4) - Replaces
2288
+ usage of deprecated design tokens. No visual or functional changes
2289
+ - [`308db322b04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/308db322b04) - The
2290
+ following tokens have been moved from the `deprecated` to `deleted` state in their lifecycles.
2291
+ These tokens will continue to exist, however tooling will begin to error wherever they're used. If
2292
+ you haven't already, please run `yarn eslint --fix` or similar to automate your migration.
2293
+
2294
+ - `color.background.blanket` => `color.blanket`
2295
+ - `color.background.boldBrand.resting` => `color.background.brand.bold`
2296
+ - `color.background.boldBrand.hover` => `color.background.brand.bold.hovered`
2297
+ - `color.background.boldBrand.pressed` => `color.background.brand.bold.pressed`
2298
+ - `color.background.boldDanger.resting` => `color.background.danger.bold`
2299
+ - `color.background.boldDanger.hover` => `color.background.danger.bold.hovered`
2300
+ - `color.background.boldDanger.pressed` => `color.background.danger.bold.pressed`
2301
+ - `color.background.boldDiscovery.resting` => `color.background.discovery.bold`
2302
+ - `color.background.boldDiscovery.hover` => `color.background.discovery.bold.hovered`
2303
+ - `color.background.boldDiscovery.pressed` => `color.background.discovery.bold.pressed`
2304
+ - `color.background.boldNeutral.resting` => `color.background.neutral.bold`
2305
+ - `color.background.boldNeutral.hover` => `color.background.neutral.bold.hovered`
2306
+ - `color.background.boldNeutral.pressed` => `color.background.neutral.bold.pressed`
2307
+ - `color.background.boldSuccess.resting` => `color.background.success.bold`
2308
+ - `color.background.boldSuccess.hover` => `color.background.success.bold.hovered`
2309
+ - `color.background.boldSuccess.pressed` => `color.background.success.bold.pressed`
2310
+ - `color.background.boldWarning.resting` => `color.background.warning.bold`
2311
+ - `color.background.boldWarning.hover` => `color.background.warning.bold.hovered`
2312
+ - `color.background.boldWarning.pressed` => `color.background.warning.bold.pressed`
2313
+ - `color.background.default` => `elevation.surface`
2314
+ - `color.background.card` => `elevation.surface.raised`
2315
+ - `color.background.overlay` => `elevation.surface.overlay`
2316
+ - `color.background.selected.resting` => `color.background.selected`
2317
+ - `color.background.selected.hover` => `color.background.selected.hovered`
2318
+ - `color.background.subtleBorderedNeutral.resting` => `color.background.input`
2319
+ - `color.background.subtleBorderedNeutral.pressed` => `color.background.input.pressed`
2320
+ - `color.background.subtleBrand.resting` => `color.background.brand`
2321
+ - `color.background.subtleBrand.hover` => `color.background.brand.hovered`
2322
+ - `color.background.subtleBrand.pressed` => `color.background.brand.pressed`
2323
+ - `color.background.subtleDanger.resting` => `color.background.danger`
2324
+ - `color.background.subtleDanger.hover` => `color.background.danger.hovered`
2325
+ - `color.background.subtleDanger.pressed` => `color.background.danger.pressed`
2326
+ - `color.background.subtleDiscovery.resting` => `color.background.discovery`
2327
+ - `color.background.subtleDiscovery.hover` => `color.background.discovery.hovered`
2328
+ - `color.background.subtleDiscovery.pressed` => `color.background.discovery.pressed`
2329
+ - `color.background.subtleNeutral.resting` => `color.background.neutral`
2330
+ - `color.background.subtleNeutral.hover` => `color.background.neutral.hovered`
2331
+ - `color.background.subtleNeutral.pressed` => `color.background.neutral.pressed`
2332
+ - `color.background.subtleSuccess.resting` => `color.background.success`
2333
+ - `color.background.subtleSuccess.hover` => `color.background.success.hovered`
2334
+ - `color.background.subtleSuccess.pressed` => `color.background.success.pressed`
2335
+ - `color.background.subtleWarning.resting` => `color.background.warning`
2336
+ - `color.background.subtleWarning.hover` => `color.background.warning.hovered`
2337
+ - `color.background.subtleWarning.pressed` => `color.background.warning.pressed`
2338
+ - `color.background.sunken` => `elevation.surface.sunken`
2339
+ - `color.background.transparentNeutral.hover` => `color.background.neutral.subtle.hovered`
2340
+ - `color.background.transparentNeutral.pressed` => `color.background.neutral.subtle.pressed`
2341
+ - `color.text.highEmphasis` => `color.text`
2342
+ - `color.text.mediumEmphasis` => `color.text.subtle`
2343
+ - `color.text.lowEmphasis` => `color.text.subtlest`
2344
+ - `color.text.link.resting` => `color.link`
2345
+ - `color.text.link.pressed` => `color.link.pressed`
2346
+ - `color.text.onBold` => `color.text.inverse`
2347
+ - `color.text.onBoldWarning` => `color.text.inverse.warning`
2348
+ - `color.border.focus` => `color.border.focused`
2349
+ - `color.border.neutral` => `color.border`
2350
+ - `color.iconBorder.brand` => `color.icon.brand` or `color.border.brand`
2351
+ - `color.iconBorder.danger` => `color.icon.danger` or `color.border.danger`
2352
+ - `color.iconBorder.warning` => `color.icon.warning` or `color.border.warning`
2353
+ - `color.iconBorder.success` => `color.icon.success` or `color.border.success`
2354
+ - `color.iconBorder.discovery` => `color.icon.discovery` or `color.border.discovery`
2355
+ - `color.overlay.hover` => `color.interaction.hovered`
2356
+ - `color.overlay.pressed` => `color.interaction.pressed`
2357
+ - `color.shadow.card` => `elevation.shadow.raised`
2358
+ - `color.shadow.overlay` => `elevation.shadow.overlay`
2368
2359
 
2369
2360
  ## 0.7.3
2370
2361
 
2371
2362
  ### Patch Changes
2372
2363
 
2373
- - [#19805](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19805)
2374
- [`ba0ddcf976e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba0ddcf976e) - Adding
2375
- new token for `elevation.shadow.overflow`
2364
+ - [#19805](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19805)
2365
+ [`ba0ddcf976e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba0ddcf976e) - Adding
2366
+ new token for `elevation.shadow.overflow`
2376
2367
 
2377
2368
  ## 0.7.2
2378
2369
 
2379
2370
  ### Patch Changes
2380
2371
 
2381
- - [#19817](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19817)
2382
- [`2229ec7c745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2229ec7c745) -
2383
- elevation.sunken no longer uses a transparent color
2372
+ - [#19817](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19817)
2373
+ [`2229ec7c745`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2229ec7c745) -
2374
+ elevation.sunken no longer uses a transparent color
2384
2375
 
2385
2376
  ## 0.7.1
2386
2377
 
2387
2378
  ### Patch Changes
2388
2379
 
2389
- - [#19458](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19458)
2390
- [`5d35c6b1c5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d35c6b1c5f) - Adding
2391
- new tokens for `color.blanket.selected` and `color.blanket.danger`
2380
+ - [#19458](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19458)
2381
+ [`5d35c6b1c5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d35c6b1c5f) - Adding
2382
+ new tokens for `color.blanket.selected` and `color.blanket.danger`
2392
2383
 
2393
2384
  ## 0.7.0
2394
2385
 
2395
2386
  ### Minor Changes
2396
2387
 
2397
- - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
2398
- [`220aa7f8aab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/220aa7f8aab) - [ux]
2399
- Dark Mode token colours changed for the background of elements in a selected state
2400
- (color.background.brand)
2388
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019)
2389
+ [`220aa7f8aab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/220aa7f8aab) - [ux]
2390
+ Dark Mode token colours changed for the background of elements in a selected state
2391
+ (color.background.brand)
2401
2392
 
2402
2393
  ### Patch Changes
2403
2394
 
2404
- - [`c2ec60d6a1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2ec60d6a1b) - [ux]
2405
- Updating existing 16 background accent colors
2395
+ - [`c2ec60d6a1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2ec60d6a1b) - [ux]
2396
+ Updating existing 16 background accent colors
2406
2397
 
2407
- - Rename default to subtler (Light:200 / Dark:900)
2408
- - Rename bold renamed to subtle (Light:400 / Dark:700)
2409
- - Update this ⤴ base token for dark mode from 700 to 800 (so it is now Light:400 / Dark:800)
2398
+ - Rename default to subtler (Light:200 / Dark:900)
2399
+ - Rename bold renamed to subtle (Light:400 / Dark:700)
2400
+ - Update this ⤴ base token for dark mode from 700 to 800 (so it is now Light:400 / Dark:800)
2410
2401
 
2411
- 16 new accent background colors:
2402
+ 16 new accent background colors:
2412
2403
 
2413
- - color.background.accent.[color].subtlest (Light: 100 / Dark:1000)
2414
- - color.background.accent.[color].bolder (Light: 700 / Dark: 400)
2404
+ - color.background.accent.[color].subtlest (Light: 100 / Dark:1000)
2405
+ - color.background.accent.[color].bolder (Light: 700 / Dark: 400)
2415
2406
 
2416
- 8 new text accent colors:
2407
+ 8 new text accent colors:
2417
2408
 
2418
- - color.text.accent.[color].bolder (Light:900 / Dark:200)
2409
+ - color.text.accent.[color].bolder (Light:900 / Dark:200)
2419
2410
 
2420
- - [`7b6b994bef5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6b994bef5) -
2421
- Correct shorthand hex code conversion in Figma synchronisation script
2422
- - [`91a3f179e8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/91a3f179e8c) - Prefix
2423
- warnings to deprecated tokens in the Figma synchronizer script
2411
+ - [`7b6b994bef5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6b994bef5) - Correct
2412
+ shorthand hex code conversion in Figma synchronisation script
2413
+ - [`91a3f179e8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/91a3f179e8c) - Prefix
2414
+ warnings to deprecated tokens in the Figma synchronizer script
2424
2415
 
2425
2416
  ## 0.6.3
2426
2417
 
2427
2418
  ### Patch Changes
2428
2419
 
2429
- - [#19313](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19313)
2430
- [`39f4b3b6b48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39f4b3b6b48) - Added
2431
- new base dark mode token DN-100 and modified elevation.surface.token to use it rather than the
2432
- alpha.
2420
+ - [#19313](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19313)
2421
+ [`39f4b3b6b48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39f4b3b6b48) - Added
2422
+ new base dark mode token DN-100 and modified elevation.surface.token to use it rather than the
2423
+ alpha.
2433
2424
 
2434
2425
  ## 0.6.2
2435
2426
 
2436
2427
  ### Patch Changes
2437
2428
 
2438
- - [#19072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19072)
2439
- [`899fd622557`](https://bitbucket.org/atlassian/atlassian-frontend/commits/899fd622557) -
2440
- Re-introduces the selected and selected.bold tokens:
2429
+ - [#19072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19072)
2430
+ [`899fd622557`](https://bitbucket.org/atlassian/atlassian-frontend/commits/899fd622557) -
2431
+ Re-introduces the selected and selected.bold tokens:
2441
2432
 
2442
- - `color.text.selected`
2443
- - `color.icon.selected`
2444
- - `color.border.selected`
2445
- - `color.background.selected`
2446
- - `color.background.selected.hovered`
2447
- - `color.background.selected.pressed`
2448
- - `color.background.selected.bold`
2449
- - `color.background.selected.bold.hovered`
2450
- - `color.background.selected.bold.pressed`
2433
+ - `color.text.selected`
2434
+ - `color.icon.selected`
2435
+ - `color.border.selected`
2436
+ - `color.background.selected`
2437
+ - `color.background.selected.hovered`
2438
+ - `color.background.selected.pressed`
2439
+ - `color.background.selected.bold`
2440
+ - `color.background.selected.bold.hovered`
2441
+ - `color.background.selected.bold.pressed`
2451
2442
 
2452
- The following tokens are _deprecated_:
2443
+ The following tokens are _deprecated_:
2453
2444
 
2454
- - `color.background.brand`
2455
- - `color.background.brand.hovered`
2456
- - `color.background.brand.pressed`
2445
+ - `color.background.brand`
2446
+ - `color.background.brand.hovered`
2447
+ - `color.background.brand.pressed`
2457
2448
 
2458
- **IMPORTANT (Manual verification required):**
2449
+ **IMPORTANT (Manual verification required):**
2459
2450
 
2460
- Please ensure all usages of the following tokens are replaced with their `selected` counterpart,
2461
- wherever a brand token is used to represent a selected state.
2451
+ Please ensure all usages of the following tokens are replaced with their `selected` counterpart,
2452
+ wherever a brand token is used to represent a selected state.
2462
2453
 
2463
- - `color.background.brand.[default|hovered|pressed]` =>
2464
- `color.background.selected.[default|hovered|pressed]`
2465
- - `color.background.brand.bold.[default|hovered|pressed]` =>
2466
- `color.background.selected.bold.[default|hovered|pressed]`
2467
- - `color.text.brand` => `color.text.selected`
2468
- - `color.icon.brand` => `color.icon.selected`
2469
- - `color.border.brand` => `color.border.selected`
2454
+ - `color.background.brand.[default|hovered|pressed]` =>
2455
+ `color.background.selected.[default|hovered|pressed]`
2456
+ - `color.background.brand.bold.[default|hovered|pressed]` =>
2457
+ `color.background.selected.bold.[default|hovered|pressed]`
2458
+ - `color.text.brand` => `color.text.selected`
2459
+ - `color.icon.brand` => `color.icon.selected`
2460
+ - `color.border.brand` => `color.border.selected`
2470
2461
 
2471
2462
  ## 0.6.1
2472
2463
 
2473
2464
  ### Patch Changes
2474
2465
 
2475
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
2476
- [`3ed3071ee35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ed3071ee35) -
2477
- Updates elevation.surface.sunken base token in darkmode to DN-100A
2478
- - Updated dependencies
2466
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
2467
+ [`3ed3071ee35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ed3071ee35) - Updates
2468
+ elevation.surface.sunken base token in darkmode to DN-100A
2469
+ - Updated dependencies
2479
2470
 
2480
2471
  ## 0.6.0
2481
2472
 
2482
2473
  ### Minor Changes
2483
2474
 
2484
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
2485
- Various improvements & changes to the tokens build scripts. These changes affect how various
2486
- artifacts are generated, particularly relating to Figma
2487
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Adds
2488
- new tokens which represent the latest taxonomy changes.
2489
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
2490
- Introduces the new accent token set from the latest version of the taxonomy
2475
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Various
2476
+ improvements & changes to the tokens build scripts. These changes affect how various artifacts are
2477
+ generated, particularly relating to Figma
2478
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Adds new
2479
+ tokens which represent the latest taxonomy changes.
2480
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
2481
+ Introduces the new accent token set from the latest version of the taxonomy
2491
2482
 
2492
2483
  ### Patch Changes
2493
2484
 
2494
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
2495
- `token()` function no longer throws and instead omits an error in the case where the provided
2496
- token doesn't exist or is not found.
2485
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
2486
+ `token()` function no longer throws and instead omits an error in the case where the provided
2487
+ token doesn't exist or is not found.
2497
2488
 
2498
2489
  ## 0.5.0
2499
2490
 
2500
2491
  ### Minor Changes
2501
2492
 
2502
- - [#18168](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18168)
2503
- [`03a2ceaaabd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03a2ceaaabd) - Rename
2504
- mapper entrypoint now outputs migration meta data in array format rather than object.
2493
+ - [#18168](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18168)
2494
+ [`03a2ceaaabd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03a2ceaaabd) - Rename
2495
+ mapper entrypoint now outputs migration meta data in array format rather than object.
2505
2496
 
2506
2497
  ## 0.4.2
2507
2498
 
2508
2499
  ### Patch Changes
2509
2500
 
2510
- - [#18080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18080)
2511
- [`068c9a0b770`](https://bitbucket.org/atlassian/atlassian-frontend/commits/068c9a0b770) - Adds
2512
- official entrypoint for theme css files
2501
+ - [#18080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18080)
2502
+ [`068c9a0b770`](https://bitbucket.org/atlassian/atlassian-frontend/commits/068c9a0b770) - Adds
2503
+ official entrypoint for theme css files
2513
2504
 
2514
2505
  ## 0.4.1
2515
2506
 
2516
2507
  ### Patch Changes
2517
2508
 
2518
- - [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
2519
- [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
2520
- VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
2509
+ - [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475)
2510
+ [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch
2511
+ VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
2521
2512
 
2522
2513
  ## 0.4.0
2523
2514
 
2524
2515
  ### Minor Changes
2525
2516
 
2526
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
2527
- [`b46c0681c29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b46c0681c29) - Adds
2528
- "MISSING_TOKEN" for instances where a suitable token does not exist
2529
- - [`d5e751f7236`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5e751f7236) - Tweaks
2530
- new palette colors to reflect feedback from the pilot program
2531
- - [`2c855cf3bf4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c855cf3bf4) - New
2532
- internal config change allows this package to be run pre-build by ts-node, allowing access to
2533
- the babel plugin by repo build tooling
2534
-
2535
- Removes token-default-values entrypoint
2536
-
2537
- - [`81a0d9b5692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81a0d9b5692) - Pulled
2538
- tokens babel plugin in and updated the entrypoint from `@atlaskit/babel-plugin-tokens` to
2539
- `@atlaskit/tokens/babel-plugin`
2540
- - [`4ec42b57298`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ec42b57298) -
2541
- Updates the figma synchroniser to remove theme prefixes from tokens names, incorperate the
2542
- isPalette flag into the group attribute and space separate interaction states. These changes
2543
- improve the findability of tokens in figma
2544
-
2545
- ### Patch Changes
2546
-
2547
- - [`a1ad2de440a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1ad2de440a) - Fixes
2548
- internal types being coerced to implicit any.
2549
- - [`286e1d43477`](https://bitbucket.org/atlassian/atlassian-frontend/commits/286e1d43477) -
2550
- Updated internal token representation to include state/lifecycle metadata
2551
- - [`ed086330194`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed086330194) -
2552
- Internal file restructure for style-dictionary to group it’s inputs /src/tokens and outputs
2553
- /src/artifacts in dedicated directories
2554
- - [`9b1703048e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9b1703048e3) -
2555
- Updates build tooling in preparation for the new taxonomy.
2517
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
2518
+ [`b46c0681c29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b46c0681c29) - Adds
2519
+ "MISSING_TOKEN" for instances where a suitable token does not exist
2520
+ - [`d5e751f7236`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5e751f7236) - Tweaks
2521
+ new palette colors to reflect feedback from the pilot program
2522
+ - [`2c855cf3bf4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c855cf3bf4) - New
2523
+ internal config change allows this package to be run pre-build by ts-node, allowing access to the
2524
+ babel plugin by repo build tooling
2525
+
2526
+ Removes token-default-values entrypoint
2527
+
2528
+ - [`81a0d9b5692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81a0d9b5692) - Pulled
2529
+ tokens babel plugin in and updated the entrypoint from `@atlaskit/babel-plugin-tokens` to
2530
+ `@atlaskit/tokens/babel-plugin`
2531
+ - [`4ec42b57298`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ec42b57298) - Updates
2532
+ the figma synchroniser to remove theme prefixes from tokens names, incorperate the isPalette flag
2533
+ into the group attribute and space separate interaction states. These changes improve the
2534
+ findability of tokens in figma
2535
+
2536
+ ### Patch Changes
2537
+
2538
+ - [`a1ad2de440a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1ad2de440a) - Fixes
2539
+ internal types being coerced to implicit any.
2540
+ - [`286e1d43477`](https://bitbucket.org/atlassian/atlassian-frontend/commits/286e1d43477) - Updated
2541
+ internal token representation to include state/lifecycle metadata
2542
+ - [`ed086330194`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed086330194) - Internal
2543
+ file restructure for style-dictionary to group it’s inputs /src/tokens and outputs /src/artifacts
2544
+ in dedicated directories
2545
+ - [`9b1703048e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9b1703048e3) - Updates
2546
+ build tooling in preparation for the new taxonomy.
2556
2547
 
2557
2548
  ## 0.3.0
2558
2549
 
2559
2550
  ### Minor Changes
2560
2551
 
2561
- - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
2562
- [`092e10c6184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/092e10c6184) - CSS
2563
- variables generated by the tokens package now have a prefix "ds-" to differentiate them from
2564
- other CSS variables in an application
2552
+ - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
2553
+ [`092e10c6184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/092e10c6184) - CSS
2554
+ variables generated by the tokens package now have a prefix "ds-" to differentiate them from other
2555
+ CSS variables in an application
2565
2556
 
2566
2557
  ## 0.2.1
2567
2558
 
2568
2559
  ### Patch Changes
2569
2560
 
2570
- - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
2571
- [`5c1cf4723e4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c1cf4723e4) -
2572
- typescript-token-name formatter now outputs token names with an indexable Record type
2573
- - [`2f9faec5201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f9faec5201) - Tokens
2574
- now provided with descriptions for when they should be used
2561
+ - [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319)
2562
+ [`5c1cf4723e4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c1cf4723e4) -
2563
+ typescript-token-name formatter now outputs token names with an indexable Record type
2564
+ - [`2f9faec5201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f9faec5201) - Tokens
2565
+ now provided with descriptions for when they should be used
2575
2566
 
2576
2567
  ## 0.2.0
2577
2568
 
2578
2569
  ### Minor Changes
2579
2570
 
2580
- - [#13665](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13665)
2581
- [`18b502b7083`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18b502b7083) - Added
2582
- a new export, token-default-values, which maps token names to their value in the default theme
2583
- (currently the "atlassian-light" theme).
2571
+ - [#13665](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13665)
2572
+ [`18b502b7083`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18b502b7083) - Added a
2573
+ new export, token-default-values, which maps token names to their value in the default theme
2574
+ (currently the "atlassian-light" theme).
2584
2575
 
2585
2576
  ## 0.1.1
2586
2577
 
2587
2578
  ### Patch Changes
2588
2579
 
2589
- - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
2590
- [`6f3632e65d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f3632e65d4) -
2591
- Updates README with MVP instructions for usage.
2592
- - [`c1498cb226e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1498cb226e) -
2593
- Removes previous rename map
2594
- - [`0936217160c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0936217160c) - Add
2595
- bold accent tokens:
2580
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
2581
+ [`6f3632e65d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f3632e65d4) - Updates
2582
+ README with MVP instructions for usage.
2583
+ - [`c1498cb226e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1498cb226e) - Removes
2584
+ previous rename map
2585
+ - [`0936217160c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0936217160c) - Add bold
2586
+ accent tokens:
2596
2587
 
2597
- - `color.accent.boldBlue`
2598
- - `color.accent.boldRed`
2599
- - `color.accent.boldGreen`
2600
- - `color.accent.boldOrange`
2601
- - `color.accent.boldTeal`
2602
- - `color.accent.boldPurple`
2588
+ - `color.accent.boldBlue`
2589
+ - `color.accent.boldRed`
2590
+ - `color.accent.boldGreen`
2591
+ - `color.accent.boldOrange`
2592
+ - `color.accent.boldTeal`
2593
+ - `color.accent.boldPurple`
2603
2594
 
2604
- - [`6d72bea69a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d72bea69a0) -
2605
- Descriptions and other token metadata is now stored in the "default" theme.
2606
- - [`addf9436414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/addf9436414) - [ux]
2607
- Introduced a restricted util token for use during the initial token migration. This token is for
2608
- internal use only and will be removed in a future version of `@atlaskit/tokens`.
2595
+ - [`6d72bea69a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d72bea69a0) -
2596
+ Descriptions and other token metadata is now stored in the "default" theme.
2597
+ - [`addf9436414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/addf9436414) - [ux]
2598
+ Introduced a restricted util token for use during the initial token migration. This token is for
2599
+ internal use only and will be removed in a future version of `@atlaskit/tokens`.
2609
2600
 
2610
2601
  ## 0.1.0
2611
2602
 
2612
2603
  ### Minor Changes
2613
2604
 
2614
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
2615
- [`642f26d0f0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642f26d0f0c) - Adds
2616
- rename-mapping as an entry point for @atlaskit/tokens. rename-mapping is an object mapping old
2617
- token names to their new replacements
2605
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
2606
+ [`642f26d0f0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642f26d0f0c) - Adds
2607
+ rename-mapping as an entry point for @atlaskit/tokens. rename-mapping is an object mapping old
2608
+ token names to their new replacements
2618
2609
 
2619
2610
  ### Patch Changes
2620
2611
 
2621
- - [`c784665d01d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c784665d01d) -
2622
- Removes `color.border.overlay` token and replaces it with a third shadow inside
2623
- `shadow.overlay`.
2624
- - [`76b718b72e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76b718b72e1) - [ux]
2625
- Fixes incorrect values in the palette and token definitions.
2626
- - [`855d6afb3d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/855d6afb3d3) -
2627
- Parsing of alpha hex in the Figma synchronizer is fixed.
2628
- - [`8d0cb37bfe0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d0cb37bfe0) -
2629
- Updates: `text.link.pressed` values to `B800/B300` Removes: `text.link.hover` Combines:
2630
- `border.disabled` and `background.disabled` → `background.disabled` Updates:
2631
- `background.disabled` token value to `N/DN200A` Renames: All accents from
2632
- `color.accent.blueSubtle` → `color.accent.subtleBlue` Renames: `background.selected` to
2633
- `background.selected.resting` Adds: `background.selected.hover`, `background.selected.pressed`
2634
- - [`53749f08286`](https://bitbucket.org/atlassian/atlassian-frontend/commits/53749f08286) - Adds
2635
- tokens:
2612
+ - [`c784665d01d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c784665d01d) - Removes
2613
+ `color.border.overlay` token and replaces it with a third shadow inside `shadow.overlay`.
2614
+ - [`76b718b72e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76b718b72e1) - [ux]
2615
+ Fixes incorrect values in the palette and token definitions.
2616
+ - [`855d6afb3d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/855d6afb3d3) - Parsing
2617
+ of alpha hex in the Figma synchronizer is fixed.
2618
+ - [`8d0cb37bfe0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d0cb37bfe0) - Updates:
2619
+ `text.link.pressed` values to `B800/B300` Removes: `text.link.hover` Combines: `border.disabled`
2620
+ and `background.disabled` `background.disabled` Updates: `background.disabled` token value to
2621
+ `N/DN200A` Renames: All accents from `color.accent.blueSubtle` → `color.accent.subtleBlue`
2622
+ Renames: `background.selected` to `background.selected.resting` Adds: `background.selected.hover`,
2623
+ `background.selected.pressed`
2624
+ - [`53749f08286`](https://bitbucket.org/atlassian/atlassian-frontend/commits/53749f08286) - Adds
2625
+ tokens:
2636
2626
 
2637
- - `color.overlay.hover`
2638
- - `color.overlay.pressed`
2627
+ - `color.overlay.hover`
2628
+ - `color.overlay.pressed`
2639
2629
 
2640
2630
  ## 0.0.18
2641
2631
 
2642
2632
  ### Patch Changes
2643
2633
 
2644
- - [#13518](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13518)
2645
- [`2bda3783615`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2bda3783615) -
2646
- License information added to package.json
2634
+ - [#13518](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13518)
2635
+ [`2bda3783615`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2bda3783615) - License
2636
+ information added to package.json
2647
2637
 
2648
2638
  ## 0.0.17
2649
2639
 
2650
2640
  ### Patch Changes
2651
2641
 
2652
- - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837)
2653
- [`0d0ecc6e790`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d0ecc6e790) -
2654
- Corrects eslint supressions.
2642
+ - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837)
2643
+ [`0d0ecc6e790`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d0ecc6e790) - Corrects
2644
+ eslint supressions.
2655
2645
 
2656
2646
  ## 0.0.16
2657
2647
 
2658
2648
  ### Patch Changes
2659
2649
 
2660
- - [#12619](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12619)
2661
- [`8418348bf66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8418348bf66) - Revert
2662
- focus ring token from a shadow to border
2650
+ - [#12619](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12619)
2651
+ [`8418348bf66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8418348bf66) - Revert
2652
+ focus ring token from a shadow to border
2663
2653
 
2664
2654
  ## 0.0.15
2665
2655
 
2666
2656
  ### Patch Changes
2667
2657
 
2668
- - [#12592](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12592)
2669
- [`e11b3e4e1ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e11b3e4e1ee) -
2670
- Restructures tokens into the following format {group}{property}{variant}{state}
2658
+ - [#12592](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12592)
2659
+ [`e11b3e4e1ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e11b3e4e1ee) -
2660
+ Restructures tokens into the following format {group}{property}{variant}{state}
2671
2661
 
2672
2662
  ## 0.0.14
2673
2663
 
2674
2664
  ### Patch Changes
2675
2665
 
2676
- - [#12528](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12528)
2677
- [`1926dba3536`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1926dba3536) - Adds,
2678
- removes & renames tokens
2666
+ - [#12528](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12528)
2667
+ [`1926dba3536`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1926dba3536) - Adds,
2668
+ removes & renames tokens
2679
2669
 
2680
- Adds:
2670
+ Adds:
2681
2671
 
2682
- - `color.backgroundSelect`
2672
+ - `color.backgroundSelect`
2683
2673
 
2684
- Renames:
2674
+ Renames:
2685
2675
 
2686
- - `color.borderTextHighlighted` to `color.bordertextSelected`
2687
- - `elevation.base` to `evelation.backgroundDefault`
2688
- - `elevation.flatSecondary` to `elevation.backgroundSunken`
2689
- - `elevation.backgroundCard` to `color.backgroundCard`
2690
- - `elevation.backgroundOverlay` to `color.backgroundOverlay`
2691
- - `elevation.borderOverlay` to `color.borderOverlay`
2692
- - `elevation.shadowCard` to `shadow.card`
2693
- - `elevation.shadowOverlay` to `shadow.overlay`
2676
+ - `color.borderTextHighlighted` to `color.bordertextSelected`
2677
+ - `elevation.base` to `evelation.backgroundDefault`
2678
+ - `elevation.flatSecondary` to `elevation.backgroundSunken`
2679
+ - `elevation.backgroundCard` to `color.backgroundCard`
2680
+ - `elevation.backgroundOverlay` to `color.backgroundOverlay`
2681
+ - `elevation.borderOverlay` to `color.borderOverlay`
2682
+ - `elevation.shadowCard` to `shadow.card`
2683
+ - `elevation.shadowOverlay` to `shadow.overlay`
2694
2684
 
2695
- Removes:
2685
+ Removes:
2696
2686
 
2697
- - `elevation.boarderFlatPrimary`
2687
+ - `elevation.boarderFlatPrimary`
2698
2688
 
2699
- Updates:
2689
+ Updates:
2700
2690
 
2701
- - `elevation.shadowOverlay` value to `DN100`
2702
- - `color.textWarning` in light mode to `O800`
2703
- - `color.iconBorderWarning` in light mode to `O600`
2691
+ - `elevation.shadowOverlay` value to `DN100`
2692
+ - `color.textWarning` in light mode to `O800`
2693
+ - `color.iconBorderWarning` in light mode to `O600`
2704
2694
 
2705
2695
  ## 0.0.13
2706
2696
 
2707
2697
  ### Patch Changes
2708
2698
 
2709
- - [#12444](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12444)
2710
- [`769ea83469c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/769ea83469c) - Moves
2711
- tokens and eslint-plugin-design-system to the public namespace.
2699
+ - [#12444](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12444)
2700
+ [`769ea83469c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/769ea83469c) - Moves
2701
+ tokens and eslint-plugin-design-system to the public namespace.
2712
2702
 
2713
2703
  ## 0.0.12
2714
2704
 
2715
2705
  ### Patch Changes
2716
2706
 
2717
- - [#12123](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12123)
2718
- [`6cde35b66d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cde35b66d9) -
2719
- Updates the figma synchronizer with the ability to rename tokens
2707
+ - [#12123](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12123)
2708
+ [`6cde35b66d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6cde35b66d9) - Updates
2709
+ the figma synchronizer with the ability to rename tokens
2720
2710
 
2721
2711
  ## 0.0.11
2722
2712
 
2723
2713
  ### Patch Changes
2724
2714
 
2725
- - [#11993](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11993)
2726
- [`170b971ce50`](https://bitbucket.org/atlassian/atlassian-frontend/commits/170b971ce50) -
2727
- Exposes token names as an entrypoint.
2715
+ - [#11993](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11993)
2716
+ [`170b971ce50`](https://bitbucket.org/atlassian/atlassian-frontend/commits/170b971ce50) - Exposes
2717
+ token names as an entrypoint.
2728
2718
 
2729
2719
  ## 0.0.10
2730
2720
 
2731
2721
  ### Patch Changes
2732
2722
 
2733
- - [#11992](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11992)
2734
- [`eb05da78cd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb05da78cd0) - Figma
2735
- sync now can set spread property for effect styles.
2723
+ - [#11992](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11992)
2724
+ [`eb05da78cd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb05da78cd0) - Figma
2725
+ sync now can set spread property for effect styles.
2736
2726
 
2737
2727
  ## 0.0.9
2738
2728
 
2739
2729
  ### Patch Changes
2740
2730
 
2741
- - [#11920](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11920)
2742
- [`76836669a4c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76836669a4c) - Global
2743
- theme CSS custom properties are now scoped to the html element.
2731
+ - [#11920](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11920)
2732
+ [`76836669a4c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76836669a4c) - Global
2733
+ theme CSS custom properties are now scoped to the html element.
2744
2734
 
2745
2735
  ## 0.0.8
2746
2736
 
2747
2737
  ### Patch Changes
2748
2738
 
2749
- - [#11906](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11906)
2750
- [`be2a49c8e04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be2a49c8e04) - Focus
2751
- ring token is now a shadow.
2739
+ - [#11906](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11906)
2740
+ [`be2a49c8e04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be2a49c8e04) - Focus
2741
+ ring token is now a shadow.
2752
2742
 
2753
2743
  ## 0.0.7
2754
2744
 
2755
2745
  ### Patch Changes
2756
2746
 
2757
- - [#11789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11789)
2758
- [`f06c9466af2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f06c9466af2) - Color
2759
- palette has been updated with new values.
2747
+ - [#11789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11789)
2748
+ [`f06c9466af2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f06c9466af2) - Color
2749
+ palette has been updated with new values.
2760
2750
 
2761
2751
  ## 0.0.6
2762
2752
 
2763
2753
  ### Patch Changes
2764
2754
 
2765
- - [#11680](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11680)
2766
- [`5fccc343a1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fccc343a1b) - Subtle
2767
- accent colors added to token set.
2755
+ - [#11680](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11680)
2756
+ [`5fccc343a1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fccc343a1b) - Subtle
2757
+ accent colors added to token set.
2768
2758
 
2769
2759
  ## 0.0.5
2770
2760
 
2771
2761
  ### Patch Changes
2772
2762
 
2773
- - [#11380](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11380)
2774
- [`2106cf48ddb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2106cf48ddb) - Adds
2775
- token "getter" to allow users to fetch and use tokens in their components
2763
+ - [#11380](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11380)
2764
+ [`2106cf48ddb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2106cf48ddb) - Adds
2765
+ token "getter" to allow users to fetch and use tokens in their components
2776
2766
 
2777
2767
  ## 0.0.4
2778
2768
 
2779
2769
  ### Patch Changes
2780
2770
 
2781
- - [#11433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11433)
2782
- [`202cf0733de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202cf0733de) - Tokens
2783
- are now built using style dictionary with three outputs:
2771
+ - [#11433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11433)
2772
+ [`202cf0733de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202cf0733de) - Tokens
2773
+ are now built using style dictionary with three outputs:
2784
2774
 
2785
- 1. CSS
2786
- 1. Figma synchronizers
2787
- 1. Token name map
2775
+ 1. CSS
2776
+ 1. Figma synchronizers
2777
+ 1. Token name map
2788
2778
 
2789
2779
  ## 0.0.3
2790
2780
 
2791
2781
  ### Patch Changes
2792
2782
 
2793
- - [#11333](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11333)
2794
- [`931f6fc633a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/931f6fc633a) -
2795
- Updates token schema shape.
2783
+ - [#11333](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11333)
2784
+ [`931f6fc633a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/931f6fc633a) - Updates
2785
+ token schema shape.
2796
2786
 
2797
2787
  ## 0.0.2
2798
2788
 
2799
2789
  ### Patch Changes
2800
2790
 
2801
- - [#11275](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11275)
2802
- [`9eaba799050`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eaba799050) - Adds
2803
- theme tokens and script to add tokens to figma.
2791
+ - [#11275](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11275)
2792
+ [`9eaba799050`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eaba799050) - Adds
2793
+ theme tokens and script to add tokens to figma.
2804
2794
 
2805
2795
  ## 0.0.1
2806
2796
 
2807
2797
  ### Patch Changes
2808
2798
 
2809
- - [#11179](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11179)
2810
- [`73aaa81802a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73aaa81802a) -
2811
- Initial setup & release
2799
+ - [#11179](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11179)
2800
+ [`73aaa81802a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73aaa81802a) - Initial
2801
+ setup & release