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