@atlaskit/ds-explorations 3.5.0 → 3.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +368 -141
  2. package/dist/cjs/components/interaction-surface.partial.js +2 -2
  3. package/dist/cjs/components/text.partial.js +4 -4
  4. package/dist/cjs/internal/color-map.js +2 -2
  5. package/dist/cjs/internal/spacing-scale.js +1 -1
  6. package/dist/es2019/components/interaction-surface.partial.js +2 -2
  7. package/dist/es2019/components/text.partial.js +4 -4
  8. package/dist/es2019/internal/color-map.js +2 -2
  9. package/dist/es2019/internal/spacing-scale.js +1 -1
  10. package/dist/esm/components/interaction-surface.partial.js +2 -2
  11. package/dist/esm/components/text.partial.js +4 -4
  12. package/dist/esm/internal/color-map.js +2 -2
  13. package/dist/esm/internal/spacing-scale.js +1 -1
  14. package/dist/types/components/interaction-surface.partial.d.ts +2 -2
  15. package/dist/types/components/text.partial.d.ts +5 -5
  16. package/dist/types/internal/color-map.d.ts +2 -2
  17. package/dist/types/internal/spacing-scale.d.ts +1 -1
  18. package/dist/types-ts4.5/components/interaction-surface.partial.d.ts +2 -2
  19. package/dist/types-ts4.5/components/text.partial.d.ts +5 -5
  20. package/dist/types-ts4.5/internal/color-map.d.ts +2 -2
  21. package/dist/types-ts4.5/internal/spacing-scale.d.ts +1 -1
  22. package/package.json +5 -4
  23. package/scripts/__tests__/__snapshots__/codegen.test.tsx.snap +540 -754
  24. package/scripts/color-codegen-template.tsx +4 -11
  25. package/scripts/color-map-template.tsx +3 -10
  26. package/scripts/dimension-codegen-template.tsx +3 -9
  27. package/scripts/interaction-codegen.tsx +3 -11
  28. package/scripts/misc-codegen-template.tsx +4 -10
  29. package/scripts/spacing-codegen-template.tsx +3 -11
  30. package/scripts/spacing-scale-template.tsx +3 -10
  31. package/scripts/typography-codegen-template.tsx +3 -11
  32. package/src/components/interaction-surface.partial.tsx +382 -596
  33. package/src/components/text.partial.tsx +143 -143
  34. package/src/internal/color-map.tsx +29 -29
  35. package/src/internal/spacing-scale.tsx +15 -15
  36. package/tsconfig.app.json +3 -0
  37. package/tsconfig.dev.json +3 -0
package/CHANGELOG.md CHANGED
@@ -1,588 +1,815 @@
1
1
  # @atlaskit/ds-explorations
2
2
 
3
+ ## 3.5.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#98149](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98149)
8
+ [`45101e24202a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/45101e24202a) -
9
+ Internal change only; update generated styles.
10
+ - Updated dependencies
11
+
12
+ ## 3.5.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [#94487](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94487)
17
+ [`6f9d7796415a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6f9d7796415a) -
18
+ Internal codegen changes. No external change.
19
+ - Updated dependencies
20
+
3
21
  ## 3.5.0
4
22
 
5
23
  ### Minor Changes
6
24
 
7
- - [#91140](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91140) [`2afd28c5e0b2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2afd28c5e0b2) - Add support for React 18.
25
+ - [#91140](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91140)
26
+ [`2afd28c5e0b2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2afd28c5e0b2) -
27
+ Add support for React 18.
8
28
 
9
29
  ## 3.4.0
10
30
 
11
31
  ### Minor Changes
12
32
 
13
- - [#85745](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85745) [`0e9c8c15ef86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0e9c8c15ef86) - Added new color token `color.link.visited.pressed`.
33
+ - [#85745](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85745)
34
+ [`0e9c8c15ef86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0e9c8c15ef86) -
35
+ Added new color token `color.link.visited.pressed`.
14
36
 
15
37
  ### Patch Changes
16
38
 
17
- - Updated dependencies
39
+ - Updated dependencies
18
40
 
19
41
  ## 3.3.1
20
42
 
21
43
  ### Patch Changes
22
44
 
23
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
45
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
46
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
47
+ Upgrade Typescript from `4.9.5` to `5.4.2`
24
48
 
25
49
  ## 3.3.0
26
50
 
27
51
  ### Minor Changes
28
52
 
29
- - [#78900](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78900) [`6ea786dd8082`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6ea786dd8082) - Add UNSAFE_small fontsize token.
53
+ - [#78900](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78900)
54
+ [`6ea786dd8082`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6ea786dd8082) -
55
+ Add UNSAFE_small fontsize token.
30
56
 
31
57
  ### Patch Changes
32
58
 
33
- - Updated dependencies
59
+ - Updated dependencies
34
60
 
35
61
  ## 3.2.7
36
62
 
37
63
  ### Patch Changes
38
64
 
39
- - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644) [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) - Revert input border change from the previous version
65
+ - [#81644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81644)
66
+ [`8ab7a816dca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ab7a816dca7) -
67
+ Revert input border change from the previous version
40
68
 
41
69
  ## 3.2.6
42
70
 
43
71
  ### Patch Changes
44
72
 
45
- - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805) [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) - Update input border color token and width to meet 3:1 color contrast
46
- - Updated dependencies
73
+ - [#80805](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80805)
74
+ [`427c2dd9e0d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/427c2dd9e0d6) -
75
+ Update input border color token and width to meet 3:1 color contrast
76
+ - Updated dependencies
47
77
 
48
78
  ## 3.2.5
49
79
 
50
80
  ### Patch Changes
51
81
 
52
- - [#79770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79770) [`542e29efe0ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/542e29efe0ad) - Update imports from @atlaskit/tokens
53
- - Updated dependencies
82
+ - [#79770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79770)
83
+ [`542e29efe0ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/542e29efe0ad) -
84
+ Update imports from @atlaskit/tokens
85
+ - Updated dependencies
54
86
 
55
87
  ## 3.2.4
56
88
 
57
89
  ### Patch Changes
58
90
 
59
- - [#77148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77148) [`d2c916f37431`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2c916f37431) - Codegen updates
60
- - Updated dependencies
91
+ - [#77148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77148)
92
+ [`d2c916f37431`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2c916f37431) -
93
+ Codegen updates
94
+ - Updated dependencies
61
95
 
62
96
  ## 3.2.3
63
97
 
64
98
  ### Patch Changes
65
99
 
66
- - [#74836](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74836) [`3963062ac997`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3963062ac997) - Codegen to add in new font family tokens. Not exposed in any components.
67
- - Updated dependencies
100
+ - [#74836](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74836)
101
+ [`3963062ac997`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3963062ac997) -
102
+ Codegen to add in new font family tokens. Not exposed in any components.
103
+ - Updated dependencies
68
104
 
69
105
  ## 3.2.2
70
106
 
71
107
  ### Patch Changes
72
108
 
73
- - [#72557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72557) [`0c78c9c18cb7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c78c9c18cb7) - Fix font family not preferencing apple system fonts on macOS
109
+ - [#72557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72557)
110
+ [`0c78c9c18cb7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c78c9c18cb7) -
111
+ Fix font family not preferencing apple system fonts on macOS
74
112
 
75
113
  ## 3.2.1
76
114
 
77
115
  ### Patch Changes
78
116
 
79
- - [#67463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67463) [`adf1c3ebf0fd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/adf1c3ebf0fd) - Fixed an issue with `Text` where text could render incorrectly if a typography token theme was not present on a page.
80
- - Updated dependencies
117
+ - [#67463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67463)
118
+ [`adf1c3ebf0fd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/adf1c3ebf0fd) -
119
+ Fixed an issue with `Text` where text could render incorrectly if a typography token theme was
120
+ not present on a page.
121
+ - Updated dependencies
81
122
 
82
123
  ## 3.2.0
83
124
 
84
125
  ### Minor Changes
85
126
 
86
- - [#63526](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63526) [`e8835feffae9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e8835feffae9) - Internal change to improve token sorting logic for typography tokens. Typography tokens are now marked as active though they are still in development and not recommend for use without prior approval from ADS.
127
+ - [#63526](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63526)
128
+ [`e8835feffae9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e8835feffae9) -
129
+ Internal change to improve token sorting logic for typography tokens. Typography tokens are now
130
+ marked as active though they are still in development and not recommend for use without prior
131
+ approval from ADS.
87
132
 
88
133
  ### Patch Changes
89
134
 
90
- - Updated dependencies
135
+ - Updated dependencies
91
136
 
92
137
  ## 3.1.0
93
138
 
94
139
  ### Minor Changes
95
140
 
96
- - [#59752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59752) [`df0bbb7c4cc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df0bbb7c4cc1) - Removed minor-second typography theme: `typography`. ADG3 and Minor third themes remain as the two typography themes.
141
+ - [#59752](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59752)
142
+ [`df0bbb7c4cc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df0bbb7c4cc1) -
143
+ Removed minor-second typography theme: `typography`. ADG3 and Minor third themes remain as the
144
+ two typography themes.
97
145
 
98
146
  ### Patch Changes
99
147
 
100
- - Updated dependencies
148
+ - Updated dependencies
101
149
 
102
150
  ## 3.0.6
103
151
 
104
152
  ### Patch Changes
105
153
 
106
- - [#56371](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56371) [`8714b4418a12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8714b4418a12) - Testing new publish workflow
154
+ - [#56371](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56371)
155
+ [`8714b4418a12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8714b4418a12) -
156
+ Testing new publish workflow
107
157
 
108
158
  ## 3.0.5
109
159
 
110
160
  ### Patch Changes
111
161
 
112
- - [#41365](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41365) [`f0a165587f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0a165587f2) - Internal change to update codegen styles.
113
- - Updated dependencies
162
+ - [#41365](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41365)
163
+ [`f0a165587f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0a165587f2) -
164
+ Internal change to update codegen styles.
165
+ - Updated dependencies
114
166
 
115
167
  ## 3.0.4
116
168
 
117
169
  ### Patch Changes
118
170
 
119
- - [#41516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41516) [`350e4081d89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/350e4081d89) - [ux] Regenerates codegen artifacts as a result of changes to color palettes and token values
120
- - Updated dependencies
171
+ - [#41516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41516)
172
+ [`350e4081d89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/350e4081d89) - [ux]
173
+ Regenerates codegen artifacts as a result of changes to color palettes and token values
174
+ - Updated dependencies
121
175
 
122
176
  ## 3.0.3
123
177
 
124
178
  ### Patch Changes
125
179
 
126
- - [#40324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40324) [`8d123310957`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d123310957) - Minor internal changes. There is no expected behaviour change
180
+ - [#40324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40324)
181
+ [`8d123310957`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d123310957) - Minor
182
+ internal changes. There is no expected behaviour change
127
183
 
128
184
  ## 3.0.2
129
185
 
130
186
  ### Patch Changes
131
187
 
132
- - [#41492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41492) [`dc028fe1e3b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc028fe1e3b) - Loosen SurfaceProvider type to `any`.
188
+ - [#41492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41492)
189
+ [`dc028fe1e3b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc028fe1e3b) - Loosen
190
+ SurfaceProvider type to `any`.
133
191
 
134
192
  ## 3.0.1
135
193
 
136
194
  ### Patch Changes
137
195
 
138
- - [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650) [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) - Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
196
+ - [#40650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40650)
197
+ [`07aa588c8a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07aa588c8a4) -
198
+ Reverts the fix to text descender cut-off, due to incompatibilities with Firefox and Safari.
139
199
 
140
200
  ## 3.0.0
141
201
 
142
202
  ### Major Changes
143
203
 
144
- - [#41301](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41301) [`5f80fdb81a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f80fdb81a0) - Remove Box, Inline, Stack components. These components are deprecated in favour of @atlaskit/primitives.
204
+ - [#41301](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41301)
205
+ [`5f80fdb81a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f80fdb81a0) - Remove
206
+ Box, Inline, Stack components. These components are deprecated in favour of
207
+ @atlaskit/primitives.
145
208
 
146
209
  ## 2.4.0
147
210
 
148
211
  ### Minor Changes
149
212
 
150
- - [#41275](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41275) [`1fd49b30e7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fd49b30e7e) - Revert removal of Box, Inline, Stack entry-points.
213
+ - [#41275](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41275)
214
+ [`1fd49b30e7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fd49b30e7e) - Revert
215
+ removal of Box, Inline, Stack entry-points.
151
216
 
152
217
  ## 2.3.2
153
218
 
154
219
  ### Patch Changes
155
220
 
156
- - [#40299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40299) [`b1882fdd842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1882fdd842) - Change typography token naming to be more verbose.
221
+ - [#40299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40299)
222
+ [`b1882fdd842`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1882fdd842) - Change
223
+ typography token naming to be more verbose.
157
224
 
158
225
  ## 2.3.1
159
226
 
160
227
  ### Patch Changes
161
228
 
162
- - [#40041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40041) [`83cd2ae7c5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83cd2ae7c5a) - Regenerates codegen artifacts as a result of introducting new visited link token.
163
- - Updated dependencies
229
+ - [#40041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40041)
230
+ [`83cd2ae7c5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83cd2ae7c5a) -
231
+ Regenerates codegen artifacts as a result of introducting new visited link token.
232
+ - Updated dependencies
164
233
 
165
234
  ## 2.3.0
166
235
 
167
236
  ### Minor Changes
168
237
 
169
- - [#40054](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40054) [`933fd5192d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/933fd5192d6) - - Removes UNSAFE_Box component.
170
- - Removes UNSAFE_Inline component.
171
- - Removes UNSAFE_Stack component.
238
+ - [#40054](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40054)
239
+ [`933fd5192d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/933fd5192d6) - -
240
+ Removes UNSAFE_Box component.
241
+ - Removes UNSAFE_Inline component.
242
+ - Removes UNSAFE_Stack component.
172
243
 
173
244
  ## 2.2.15
174
245
 
175
246
  ### Patch Changes
176
247
 
177
- - [#39854](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39854) [`6b3e7af515d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b3e7af515d) - Updates based on new codgen for tokens (no API change).
178
- - Updated dependencies
248
+ - [#39854](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39854)
249
+ [`6b3e7af515d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b3e7af515d) -
250
+ Updates based on new codgen for tokens (no API change).
251
+ - Updated dependencies
179
252
 
180
253
  ## 2.2.14
181
254
 
182
255
  ### Patch Changes
183
256
 
184
- - [#39578](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39578) [`813edf2fe03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/813edf2fe03) - Minor internal changes. There is no expected behaviour change.
185
- - Updated dependencies
257
+ - [#39578](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39578)
258
+ [`813edf2fe03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/813edf2fe03) - Minor
259
+ internal changes. There is no expected behaviour change.
260
+ - Updated dependencies
186
261
 
187
262
  ## 2.2.13
188
263
 
189
264
  ### Patch Changes
190
265
 
191
- - [#39430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39430) [`88e4ac397ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88e4ac397ea) - Regenerates codegen artifacts as a result of introducting new accent interaction tokens.
192
- - Updated dependencies
266
+ - [#39430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39430)
267
+ [`88e4ac397ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88e4ac397ea) -
268
+ Regenerates codegen artifacts as a result of introducting new accent interaction tokens.
269
+ - Updated dependencies
193
270
 
194
271
  ## 2.2.12
195
272
 
196
273
  ### Patch Changes
197
274
 
198
- - [#39135](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39135) [`437a056278c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/437a056278c) - Update to reflect latest tokens.
199
- - Updated dependencies
275
+ - [#39135](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39135)
276
+ [`437a056278c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/437a056278c) - Update
277
+ to reflect latest tokens.
278
+ - Updated dependencies
200
279
 
201
280
  ## 2.2.11
202
281
 
203
282
  ### Patch Changes
204
283
 
205
- - [#38620](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38620) [`103ee1d5dd4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/103ee1d5dd4) - Internal updates to generated artifacts.
284
+ - [#38620](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38620)
285
+ [`103ee1d5dd4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/103ee1d5dd4) -
286
+ Internal updates to generated artifacts.
206
287
 
207
288
  ## 2.2.10
208
289
 
209
290
  ### Patch Changes
210
291
 
211
- - [#38433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38433) [`b11339bc8a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b11339bc8a3) - Internal updates for ADS Typography ADG3 theme.
212
- - Updated dependencies
292
+ - [#38433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38433)
293
+ [`b11339bc8a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b11339bc8a3) -
294
+ Internal updates for ADS Typography ADG3 theme.
295
+ - Updated dependencies
213
296
 
214
297
  ## 2.2.9
215
298
 
216
299
  ### Patch Changes
217
300
 
218
- - [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209) [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows
301
+ - [#38209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38209)
302
+ [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a
303
+ bug where text descenders were cut off at high zoom levels on Windows
219
304
 
220
305
  ## 2.2.8
221
306
 
222
307
  ### Patch Changes
223
308
 
224
- - [#37182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37182) [`74f7af9882b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74f7af9882b) - [ux] correct fallback color of token color.border.focused to meet contrast requirement
309
+ - [#37182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37182)
310
+ [`74f7af9882b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74f7af9882b) - [ux]
311
+ correct fallback color of token color.border.focused to meet contrast requirement
225
312
 
226
313
  ## 2.2.7
227
314
 
228
315
  ### Patch Changes
229
316
 
230
- - [#36967](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36967) [`298df94426c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/298df94426c) - Regenerates codegen'd artifacts as a result of introducting new brand background design tokens.
231
- - Updated dependencies
317
+ - [#36967](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36967)
318
+ [`298df94426c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/298df94426c) -
319
+ Regenerates codegen'd artifacts as a result of introducting new brand background design tokens.
320
+ - Updated dependencies
232
321
 
233
322
  ## 2.2.6
234
323
 
235
324
  ### Patch Changes
236
325
 
237
- - [#36279](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36279) [`27f6081edf2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27f6081edf2) - Regenerates codegen hashes to surface changes to tokens
326
+ - [#36279](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36279)
327
+ [`27f6081edf2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27f6081edf2) -
328
+ Regenerates codegen hashes to surface changes to tokens
238
329
 
239
330
  ## 2.2.5
240
331
 
241
332
  ### Patch Changes
242
333
 
243
- - [#36218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36218) [`7c1c449eb96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c1c449eb96) - Updated space token descriptions.
334
+ - [#36218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36218)
335
+ [`7c1c449eb96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c1c449eb96) -
336
+ Updated space token descriptions.
244
337
 
245
338
  ## 2.2.4
246
339
 
247
340
  ### Patch Changes
248
341
 
249
- - [#36072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36072) [`267a88221e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/267a88221e8) - Internal change to update codegen.
342
+ - [#36072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36072)
343
+ [`267a88221e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/267a88221e8) -
344
+ Internal change to update codegen.
250
345
 
251
346
  ## 2.2.3
252
347
 
253
348
  ### Patch Changes
254
349
 
255
- - [#35526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35526) [`55be182b904`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55be182b904) - Regenerates codegen'd artifacts as a result of introducting new design tokens.
256
- - Updated dependencies
350
+ - [#35526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35526)
351
+ [`55be182b904`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55be182b904) -
352
+ Regenerates codegen'd artifacts as a result of introducting new design tokens.
353
+ - Updated dependencies
257
354
 
258
355
  ## 2.2.2
259
356
 
260
357
  ### Patch Changes
261
358
 
262
- - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385) [`79e94411a9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79e94411a9c) - Bump to account for regeneration of tokens artifacts.
263
- - Updated dependencies
359
+ - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385)
360
+ [`79e94411a9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79e94411a9c) - Bump
361
+ to account for regeneration of tokens artifacts.
362
+ - Updated dependencies
264
363
 
265
364
  ## 2.2.1
266
365
 
267
366
  ### Patch Changes
268
367
 
269
- - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443) [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing unused dependencies and dev dependencies
368
+ - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
369
+ [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) -
370
+ Removing unused dependencies and dev dependencies
270
371
 
271
372
  ## 2.2.0
272
373
 
273
374
  ### Minor Changes
274
375
 
275
- - [#34217](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34217) [`78a3f27cc3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a3f27cc3a) - Regenerate style maps based on token updates.
376
+ - [#34217](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34217)
377
+ [`78a3f27cc3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78a3f27cc3a) -
378
+ Regenerate style maps based on token updates.
276
379
 
277
380
  ### Patch Changes
278
381
 
279
- - Updated dependencies
382
+ - Updated dependencies
280
383
 
281
384
  ## 2.1.2
282
385
 
283
386
  ### Patch Changes
284
387
 
285
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
388
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
389
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
390
+ legacy types are published for TS 4.5-4.8
286
391
 
287
392
  ## 2.1.1
288
393
 
289
394
  ### Patch Changes
290
395
 
291
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
396
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
397
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
398
+ Upgrade Typescript from `4.5.5` to `4.9.5`
292
399
 
293
400
  ## 2.1.0
294
401
 
295
402
  ### Minor Changes
296
403
 
297
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
404
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
405
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
406
+ minor dependency bump
298
407
 
299
408
  ### Patch Changes
300
409
 
301
- - Updated dependencies
410
+ - Updated dependencies
302
411
 
303
412
  ## 2.0.13
304
413
 
305
414
  ### Patch Changes
306
415
 
307
- - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211) [`1aa8720a4ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1aa8720a4ff) - Internal refactor.
416
+ - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211)
417
+ [`1aa8720a4ff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1aa8720a4ff) -
418
+ Internal refactor.
308
419
 
309
420
  ## 2.0.12
310
421
 
311
422
  ### Patch Changes
312
423
 
313
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
424
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
425
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
426
+ remove before merging to master; dupe adf-schema via adf-utils
314
427
 
315
428
  ## 2.0.11
316
429
 
317
430
  ### Patch Changes
318
431
 
319
- - [#32311](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32311) [`a02eed2974e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02eed2974e) - Move codegen into @atlassian scope to publish it to private registry
432
+ - [#32311](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32311)
433
+ [`a02eed2974e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02eed2974e) - Move
434
+ codegen into @atlassian scope to publish it to private registry
320
435
 
321
436
  ## 2.0.10
322
437
 
323
438
  ### Patch Changes
324
439
 
325
- - [#31378](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31378) [`9fb52345e8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fb52345e8d) - Update some examples to use Inline and Stack from `@atlaskit/primitives`.
440
+ - [#31378](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31378)
441
+ [`9fb52345e8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fb52345e8d) - Update
442
+ some examples to use Inline and Stack from `@atlaskit/primitives`.
326
443
 
327
444
  ## 2.0.9
328
445
 
329
446
  ### Patch Changes
330
447
 
331
- - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206) [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
448
+ - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206)
449
+ [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) -
450
+ Upgrades component types to support React 18.
332
451
 
333
452
  ## 2.0.8
334
453
 
335
454
  ### Patch Changes
336
455
 
337
- - [#30905](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30905) [`6ce08fbcba2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ce08fbcba2) - [ux] Fixed a bug where the `<Box>` `justifyContent` prop was mistakenly applying `alignItems` for `start` and `end` values
456
+ - [#30905](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30905)
457
+ [`6ce08fbcba2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ce08fbcba2) - [ux]
458
+ Fixed a bug where the `<Box>` `justifyContent` prop was mistakenly applying `alignItems` for
459
+ `start` and `end` values
338
460
 
339
461
  ## 2.0.7
340
462
 
341
463
  ### Patch Changes
342
464
 
343
- - [#31127](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31127) [`66493433ce9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66493433ce9) - Removes temporary, internal-only unsafe exports as they now live in @atlaskit/primitives/responsive.
465
+ - [#31127](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31127)
466
+ [`66493433ce9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66493433ce9) -
467
+ Removes temporary, internal-only unsafe exports as they now live in
468
+ @atlaskit/primitives/responsive.
344
469
 
345
470
  ## 2.0.6
346
471
 
347
472
  ### Patch Changes
348
473
 
349
- - [#30708](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30708) [`4b219ed17bf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b219ed17bf) - Breakpoint constants added to be used in responsive spikes initially
474
+ - [#30708](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30708)
475
+ [`4b219ed17bf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b219ed17bf) -
476
+ Breakpoint constants added to be used in responsive spikes initially
350
477
 
351
478
  ## 2.0.5
352
479
 
353
480
  ### Patch Changes
354
481
 
355
- - [#30487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30487) [`a70970a5aab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a70970a5aab) - Mark Box, Inline, and Stack as deprecated, planned for future removal.
482
+ - [#30487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30487)
483
+ [`a70970a5aab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a70970a5aab) - Mark
484
+ Box, Inline, and Stack as deprecated, planned for future removal.
356
485
 
357
486
  ## 2.0.4
358
487
 
359
488
  ### Patch Changes
360
489
 
361
- - [#30125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30125) [`7f5f23dcb68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f5f23dcb68) - Introduce shape tokens to some packages.
490
+ - [#30125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30125)
491
+ [`7f5f23dcb68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f5f23dcb68) -
492
+ Introduce shape tokens to some packages.
362
493
 
363
494
  ## 2.0.3
364
495
 
365
496
  ### Patch Changes
366
497
 
367
- - [#29387](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29387) [`069494fbea6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/069494fbea6) - Internal change. There is no behaviour or visual change.
368
- - Updated dependencies
498
+ - [#29387](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29387)
499
+ [`069494fbea6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/069494fbea6) -
500
+ Internal change. There is no behaviour or visual change.
501
+ - Updated dependencies
369
502
 
370
503
  ## 2.0.2
371
504
 
372
505
  ### Patch Changes
373
506
 
374
- - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634) [`cf16d8f8bcc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf16d8f8bcc) - Removes usage of tokens which have been removed from the codebase
375
- - Updated dependencies
507
+ - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634)
508
+ [`cf16d8f8bcc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf16d8f8bcc) -
509
+ Removes usage of tokens which have been removed from the codebase
510
+ - Updated dependencies
376
511
 
377
512
  ## 2.0.1
378
513
 
379
514
  ### Patch Changes
380
515
 
381
- - [#28784](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28784) [`290b1f069bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/290b1f069bd) - Regenerate codegen styles
516
+ - [#28784](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28784)
517
+ [`290b1f069bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/290b1f069bd) -
518
+ Regenerate codegen styles
382
519
 
383
520
  ## 2.0.0
384
521
 
385
522
  ### Major Changes
386
523
 
387
- - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891) [`544c409d79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/544c409d79f) - **Breaking Change**
524
+ - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891)
525
+ [`544c409d79f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/544c409d79f) -
526
+ **Breaking Change**
388
527
 
389
- ### `Text`
528
+ ### `Text`
390
529
 
391
- fontSize, fontWeight, and lineHeight APIs have changed due to typography tokens being introduced. The new values for fontSize and lineHeight follow a scale whereas fontWeight accepts keyword values.
530
+ fontSize, fontWeight, and lineHeight APIs have changed due to typography tokens being
531
+ introduced. The new values for fontSize and lineHeight follow a scale whereas fontWeight accepts
532
+ keyword values.
392
533
 
393
- ### `Box`
534
+ ### `Box`
394
535
 
395
- `padding`, `paddingBlock`, and `paddingInline` prop values now follow the pattern `space.x` instead of `scale.x` to align with spacing tokens.
536
+ `padding`, `paddingBlock`, and `paddingInline` prop values now follow the pattern `space.x`
537
+ instead of `scale.x` to align with spacing tokens.
396
538
 
397
- ### `Inline` and `Stack`
539
+ ### `Inline` and `Stack`
398
540
 
399
- `gap` prop values now follow the pattern `space.x` instead of `scale.x` to align with spacing tokens.
541
+ `gap` prop values now follow the pattern `space.x` instead of `scale.x` to align with spacing
542
+ tokens.
400
543
 
401
544
  ## 1.7.0
402
545
 
403
546
  ### Minor Changes
404
547
 
405
- - [#28165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28165) [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Box - Allow `display` prop to take `inline-block`.
548
+ - [#28165](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28165)
549
+ [`642298a54dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/642298a54dc) - Box -
550
+ Allow `display` prop to take `inline-block`.
406
551
 
407
552
  ## 1.6.4
408
553
 
409
554
  ### Patch Changes
410
555
 
411
- - [#27875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27875) [`1e46e236f6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e46e236f6f) - This changeset exists because a PR touches these packages in a way that doesn't require a release
556
+ - [#27875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27875)
557
+ [`1e46e236f6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e46e236f6f) - This
558
+ changeset exists because a PR touches these packages in a way that doesn't require a release
412
559
 
413
560
  ## 1.6.3
414
561
 
415
562
  ### Patch Changes
416
563
 
417
- - [#28011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28011) [`00c057bdd71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c057bdd71) - Removes spacing-raw & typography-raw entrypoints in favor of tokens-raw
418
- - Updated dependencies
564
+ - [#28011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28011)
565
+ [`00c057bdd71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c057bdd71) -
566
+ Removes spacing-raw & typography-raw entrypoints in favor of tokens-raw
567
+ - Updated dependencies
419
568
 
420
569
  ## 1.6.2
421
570
 
422
571
  ### Patch Changes
423
572
 
424
- - Updated dependencies
573
+ - Updated dependencies
425
574
 
426
575
  ## 1.6.1
427
576
 
428
577
  ### Patch Changes
429
578
 
430
- - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`f7b2dbd6eba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7b2dbd6eba) - Add fontWeight 600 to Text. Add justifyContent spaceBetween to Inline. Add overflow hidden, position fixed, and start/end flex values to Box. Add shadow and layer props to Box.
579
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
580
+ [`f7b2dbd6eba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7b2dbd6eba) - Add
581
+ fontWeight 600 to Text. Add justifyContent spaceBetween to Inline. Add overflow hidden, position
582
+ fixed, and start/end flex values to Box. Add shadow and layer props to Box.
431
583
 
432
584
  ## 1.6.0
433
585
 
434
586
  ### Minor Changes
435
587
 
436
- - [#27076](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27076) [`9f9498aafb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9498aafb1) - [ux] Box API introduces `hidden` for `overflow` prop.
588
+ - [#27076](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27076)
589
+ [`9f9498aafb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9498aafb1) - [ux]
590
+ Box API introduces `hidden` for `overflow` prop.
437
591
 
438
592
  ## 1.5.0
439
593
 
440
594
  ### Minor Changes
441
595
 
442
- - [#27789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27789) [`c146611a18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c146611a18c) - [ux] Migrate progress-indicator package to use spacing primitives to control spacing in both component and examples. Spacing values have been slightly updated depending on indicator size and spacing properties
596
+ - [#27789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27789)
597
+ [`c146611a18c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c146611a18c) - [ux]
598
+ Migrate progress-indicator package to use spacing primitives to control spacing in both
599
+ component and examples. Spacing values have been slightly updated depending on indicator size
600
+ and spacing properties
443
601
 
444
602
  ## 1.4.0
445
603
 
446
604
  ### Minor Changes
447
605
 
448
- - [#27894](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27894) [`7f886c0aa18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f886c0aa18) - The `Inline` component now allows children to be justified 'space-between'.
606
+ - [#27894](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27894)
607
+ [`7f886c0aa18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f886c0aa18) - The
608
+ `Inline` component now allows children to be justified 'space-between'.
449
609
 
450
610
  ## 1.3.2
451
611
 
452
612
  ### Patch Changes
453
613
 
454
- - [#27629](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27629) [`f824dcfff6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f824dcfff6e) - Internal changes to satisfy various lint warnings & errors
614
+ - [#27629](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27629)
615
+ [`f824dcfff6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f824dcfff6e) -
616
+ Internal changes to satisfy various lint warnings & errors
455
617
 
456
618
  ## 1.3.1
457
619
 
458
620
  ### Patch Changes
459
621
 
460
- - [#27433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27433) [`04f01205c6b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04f01205c6b) - Applies rem instead of pixels as spacing tokens fallbacks. This should have no visual or behavioural change.
622
+ - [#27433](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27433)
623
+ [`04f01205c6b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04f01205c6b) -
624
+ Applies rem instead of pixels as spacing tokens fallbacks. This should have no visual or
625
+ behavioural change.
461
626
 
462
627
  ## 1.3.0
463
628
 
464
629
  ### Minor Changes
465
630
 
466
- - [#27482](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27482) [`7d6e345cd63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d6e345cd63) - Bump to account for bump in `@atlaskit/tokens`.
631
+ - [#27482](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27482)
632
+ [`7d6e345cd63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d6e345cd63) - Bump
633
+ to account for bump in `@atlaskit/tokens`.
467
634
 
468
635
  ## 1.2.2
469
636
 
470
637
  ### Patch Changes
471
638
 
472
- - [#27209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27209) [`1dec7b39f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dec7b39f7b) - - Children are only iterated over when divider prop is passed. There should be no behaviour change.
473
- - Add `user-select: none;` to divider.
639
+ - [#27209](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27209)
640
+ [`1dec7b39f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1dec7b39f7b) - -
641
+ Children are only iterated over when divider prop is passed. There should be no behaviour
642
+ change.
643
+ - Add `user-select: none;` to divider.
474
644
 
475
645
  ## 1.2.1
476
646
 
477
647
  ### Patch Changes
478
648
 
479
- - Updated dependencies
649
+ - Updated dependencies
480
650
 
481
651
  ## 1.2.0
482
652
 
483
653
  ### Minor Changes
484
654
 
485
- - [#26801](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26801) [`e6fb7598867`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6fb7598867) - Exposes additional public entrypoints for `Inline` and `Stack`.
486
- Loosens the types of `children` for the `Inline`, `Stack` and `Box` as it was causing unexpected friction.
655
+ - [#26801](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26801)
656
+ [`e6fb7598867`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6fb7598867) -
657
+ Exposes additional public entrypoints for `Inline` and `Stack`. Loosens the types of `children`
658
+ for the `Inline`, `Stack` and `Box` as it was causing unexpected friction.
487
659
 
488
660
  ## 1.1.0
489
661
 
490
662
  ### Minor Changes
491
663
 
492
- - [#26803](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26803) [`93d75a4e289`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93d75a4e289) - Adding id prop for Text component so that element can be updated with id attribute. It's a way for an element to be uniquely identifiable for a range of reasons. For example: URL anchors, reference target for integrations and accessible label references.
664
+ - [#26803](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26803)
665
+ [`93d75a4e289`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93d75a4e289) - Adding
666
+ id prop for Text component so that element can be updated with id attribute. It's a way for an
667
+ element to be uniquely identifiable for a range of reasons. For example: URL anchors, reference
668
+ target for integrations and accessible label references.
493
669
 
494
670
  ## 1.0.0
495
671
 
496
672
  ### Major Changes
497
673
 
498
- - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`30c6ec5a76f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30c6ec5a76f) - **Breaking Change**
674
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
675
+ [`30c6ec5a76f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30c6ec5a76f) -
676
+ **Breaking Change**
499
677
 
500
- The package has been moved to a v1 state. It is no less or more stable (see readme for more information) however this update is to ensure that the consumption of minor versions for the package in downstream dependencies is correctly resolved.
678
+ The package has been moved to a v1 state. It is no less or more stable (see readme for more
679
+ information) however this update is to ensure that the consumption of minor versions for the
680
+ package in downstream dependencies is correctly resolved.
501
681
 
502
- This update also includes changes to the way the `Text` component behaves with `Box`:
682
+ This update also includes changes to the way the `Text` component behaves with `Box`:
503
683
 
504
- - Text will now remove redundant DOM elements if it detects that it is already in the context of a `Text` element. This will only occur if the Text element that is a candidate for removal does not apply any custom property.
505
- - Text will also try to apply a color that is accessible if no user choice has been provided and the background of the surface causes an accessibility failure.
684
+ - Text will now remove redundant DOM elements if it detects that it is already in the context
685
+ of a `Text` element. This will only occur if the Text element that is a candidate for
686
+ removal does not apply any custom property.
687
+ - Text will also try to apply a color that is accessible if no user choice has been provided
688
+ and the background of the surface causes an accessibility failure.
506
689
 
507
690
  ### Minor Changes
508
691
 
509
- - [`664d3fe6586`](https://bitbucket.org/atlassian/atlassian-frontend/commits/664d3fe6586) - Use spacing tokens for all spacing-related props. Remove old SPACING_SCALE and GlobalSpacingToken.
692
+ - [`664d3fe6586`](https://bitbucket.org/atlassian/atlassian-frontend/commits/664d3fe6586) - Use
693
+ spacing tokens for all spacing-related props. Remove old SPACING_SCALE and GlobalSpacingToken.
510
694
 
511
695
  ### Patch Changes
512
696
 
513
- - [`f5ae2702e35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5ae2702e35) - Box component now infers HTML attribute props from `as` prop.
514
- - [`7c6009de2f1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c6009de2f1) - [ux] Updates the visual appearance to match the legacy light mode palette.
697
+ - [`f5ae2702e35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5ae2702e35) - Box
698
+ component now infers HTML attribute props from `as` prop.
699
+ - [`7c6009de2f1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c6009de2f1) - [ux]
700
+ Updates the visual appearance to match the legacy light mode palette.
515
701
 
516
702
  ## 0.1.5
517
703
 
518
704
  ### Patch Changes
519
705
 
520
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`7014fd08976`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7014fd08976) - [ux] Inline gap prop now internally sets column-gap; Stack gap prop now internally sets row-gap
521
- - [`ba660f4f76f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba660f4f76f) - Add `start` and `end` values to Stack and Inline flex properties.
522
- - [`3ee63238f49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ee63238f49) - Update internals of Box, Text, Inline and Stack to handle `children` more accurately.
523
- Also update scope of `use-primitives` to suggest Box and Text more selectively.
524
- - [`9dec0fe6946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dec0fe6946) - Add overflow prop to Box.
525
- - [`7a9e73ec430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a9e73ec430) - [ux] Internal changes to how styles are represented in SectionMessage. Some minor visual changes to the color and spacing of SectionMessage. No changes to the SectionMessage API.
706
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
707
+ [`7014fd08976`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7014fd08976) - [ux]
708
+ Inline gap prop now internally sets column-gap; Stack gap prop now internally sets row-gap
709
+ - [`ba660f4f76f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba660f4f76f) - Add
710
+ `start` and `end` values to Stack and Inline flex properties.
711
+ - [`3ee63238f49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ee63238f49) - Update
712
+ internals of Box, Text, Inline and Stack to handle `children` more accurately. Also update scope
713
+ of `use-primitives` to suggest Box and Text more selectively.
714
+ - [`9dec0fe6946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dec0fe6946) - Add
715
+ overflow prop to Box.
716
+ - [`7a9e73ec430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a9e73ec430) - [ux]
717
+ Internal changes to how styles are represented in SectionMessage. Some minor visual changes to
718
+ the color and spacing of SectionMessage. No changes to the SectionMessage API.
526
719
 
527
720
  ## 0.1.4
528
721
 
529
722
  ### Patch Changes
530
723
 
531
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
724
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
725
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
726
+ Upgrade Typescript from `4.3.5` to `4.5.5`
532
727
 
533
728
  ## 0.1.3
534
729
 
535
730
  ### Patch Changes
536
731
 
537
- - [#24929](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24929) [`d6328e5e1ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6328e5e1ec) - Removes the default values for `<Text />`.
732
+ - [#24929](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24929)
733
+ [`d6328e5e1ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6328e5e1ec) -
734
+ Removes the default values for `<Text />`.
538
735
 
539
736
  ## 0.1.2
540
737
 
541
738
  ### Patch Changes
542
739
 
543
- - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`37246e87cfc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37246e87cfc) - Adds position static to Box.
544
- Changes lozenge to use position static instead of relative.
545
- - [`09c2fef4837`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09c2fef4837) - Introduces a `className` to `Box`.
546
- - [`862d3b09b49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/862d3b09b49) - Add `shouldTruncate` prop to Text to enable truncating text with an ellipsis. Defaults to false.
547
- - [`def8e951547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/def8e951547) - Drop href from Text. Reduce `as` options available for Text to account only for the most basic HTML elements that typically contain text.
548
- - [`22198a90b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22198a90b65) - Add textTransform prop, verticalAlign prop, and fontWeight '700' option to Text component. Changed fontSize prop options to include 'px' unit. Add default 'border-box' box-sizing to Text. Export BoxProps, TextProps, and SPACING_SCALE.
740
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004)
741
+ [`37246e87cfc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37246e87cfc) - Adds
742
+ position static to Box. Changes lozenge to use position static instead of relative.
743
+ - [`09c2fef4837`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09c2fef4837) -
744
+ Introduces a `className` to `Box`.
745
+ - [`862d3b09b49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/862d3b09b49) - Add
746
+ `shouldTruncate` prop to Text to enable truncating text with an ellipsis. Defaults to false.
747
+ - [`def8e951547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/def8e951547) - Drop
748
+ href from Text. Reduce `as` options available for Text to account only for the most basic HTML
749
+ elements that typically contain text.
750
+ - [`22198a90b65`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22198a90b65) - Add
751
+ textTransform prop, verticalAlign prop, and fontWeight '700' option to Text component. Changed
752
+ fontSize prop options to include 'px' unit. Add default 'border-box' box-sizing to Text. Export
753
+ BoxProps, TextProps, and SPACING_SCALE.
549
754
 
550
755
  ## 0.1.1
551
756
 
552
757
  ### Patch Changes
553
758
 
554
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
759
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
760
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
761
+ Upgrade Typescript from `4.2.4` to `4.3.5`.
555
762
 
556
763
  ## 0.1.0
557
764
 
558
765
  ### Minor Changes
559
766
 
560
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`57b94585c64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/57b94585c64) - Breaking change to the color props which now require a fallback. Generated colors now also include additional background color types.
561
- - [`57c59a5c2d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c59a5c2d2) - Initial implementation of UNSAFE_Box
767
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
768
+ [`57b94585c64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/57b94585c64) -
769
+ Breaking change to the color props which now require a fallback. Generated colors now also
770
+ include additional background color types.
771
+ - [`57c59a5c2d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/57c59a5c2d2) -
772
+ Initial implementation of UNSAFE_Box
562
773
 
563
774
  ### Patch Changes
564
775
 
565
- - [`72c111790cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72c111790cf) - [ux] Refine implementation of Text primitive
566
- - [`c28d7c86875`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c28d7c86875) - Add base interface to primitives in ds-explorations.
567
- - [`e11b4abd515`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e11b4abd515) - Adds initial implementation of Inline and Stack. Adds "block" option to Box `display` prop. Removes "baseline" option from Box `justifyContent` prop. Removes `gap` prop from Box.
568
- - [`0dbb4833163`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0dbb4833163) - Exports primitives components. Adds basic line-height values to Text.
569
- - [`ea36ea17c4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea36ea17c4e) - Text now supports text-align and it's used for Badge to retain existing visuals
776
+ - [`72c111790cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72c111790cf) - [ux]
777
+ Refine implementation of Text primitive
778
+ - [`c28d7c86875`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c28d7c86875) - Add
779
+ base interface to primitives in ds-explorations.
780
+ - [`e11b4abd515`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e11b4abd515) - Adds
781
+ initial implementation of Inline and Stack. Adds "block" option to Box `display` prop. Removes
782
+ "baseline" option from Box `justifyContent` prop. Removes `gap` prop from Box.
783
+ - [`0dbb4833163`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0dbb4833163) -
784
+ Exports primitives components. Adds basic line-height values to Text.
785
+ - [`ea36ea17c4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea36ea17c4e) - Text
786
+ now supports text-align and it's used for Badge to retain existing visuals
570
787
 
571
788
  ## 0.0.3
572
789
 
573
790
  ### Patch Changes
574
791
 
575
- - [#23579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23579) [`40151c42d7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/40151c42d7d) - Update background, text and icon disabled colors to use alpha base tokens
792
+ - [#23579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23579)
793
+ [`40151c42d7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/40151c42d7d) - Update
794
+ background, text and icon disabled colors to use alpha base tokens
576
795
 
577
796
  ## 0.0.2
578
797
 
579
798
  ### Patch Changes
580
799
 
581
- - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`232b2b765b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/232b2b765b9) - Internal changes to the way styles are created for the `Box` and `Text` components. Both components now use a wrapper over the `af/codegen`'s expected API to generate styles and types from the tokens package.
582
- - [`29b8b26ee79`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29b8b26ee79) - Updates Box, Text to include partial implementations to spike and experiment with different usages.
800
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642)
801
+ [`232b2b765b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/232b2b765b9) -
802
+ Internal changes to the way styles are created for the `Box` and `Text` components. Both
803
+ components now use a wrapper over the `af/codegen`'s expected API to generate styles and types
804
+ from the tokens package.
805
+ - [`29b8b26ee79`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29b8b26ee79) -
806
+ Updates Box, Text to include partial implementations to spike and experiment with different
807
+ usages.
583
808
 
584
809
  ## 0.0.1
585
810
 
586
811
  ### Patch Changes
587
812
 
588
- - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`f7edb043597`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7edb043597) - Initial release, no API exposed.
813
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029)
814
+ [`f7edb043597`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7edb043597) -
815
+ Initial release, no API exposed.