@atlaskit/side-navigation 3.1.2 → 3.2.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 +654 -640
  2. package/afm-cc/tsconfig.json +3 -0
  3. package/afm-jira/tsconfig.json +43 -0
  4. package/codemods/0.8.0-change-css-fn-prop.tsx +9 -8
  5. package/codemods/helpers/generic.tsx +12 -11
  6. package/constellation/index/props.mdx +17 -12
  7. package/dist/cjs/common/styles.js +2 -2
  8. package/dist/cjs/components/Footer/index.js +3 -3
  9. package/dist/cjs/components/Header/index.js +10 -5
  10. package/dist/cjs/components/Item/skeleton-item.js +2 -2
  11. package/dist/cjs/components/NavigationHeader/index.js +1 -1
  12. package/dist/es2019/common/styles.js +2 -2
  13. package/dist/es2019/components/Footer/index.js +3 -3
  14. package/dist/es2019/components/Header/index.js +8 -4
  15. package/dist/es2019/components/Item/skeleton-item.js +2 -2
  16. package/dist/es2019/components/NavigationHeader/index.js +1 -1
  17. package/dist/esm/common/styles.js +2 -2
  18. package/dist/esm/components/Footer/index.js +3 -3
  19. package/dist/esm/components/Header/index.js +10 -5
  20. package/dist/esm/components/Item/skeleton-item.js +2 -2
  21. package/dist/esm/components/NavigationHeader/index.js +1 -1
  22. package/dist/types/common/styles.d.ts +1 -1
  23. package/dist/types/components/Header/index.d.ts +1 -1
  24. package/dist/types/components/Item/button-item.d.ts +1 -1
  25. package/dist/types/components/Item/custom-item.d.ts +1 -1
  26. package/dist/types/components/Item/link-item.d.ts +1 -1
  27. package/dist/types/components/Item/skeleton-item.d.ts +1 -1
  28. package/dist/types/components/NavigationContent/index.d.ts +1 -1
  29. package/dist/types/components/NavigationFooter/index.d.ts +1 -1
  30. package/dist/types/components/NestableNavigationContent/context.d.ts +1 -1
  31. package/dist/types/components/NestableNavigationContent/nesting-motion.d.ts +2 -2
  32. package/dist/types/components/NestingItem/hack-for-ert.d.ts +1 -1
  33. package/dist/types/components/NestingItem/index.d.ts +1 -1
  34. package/dist/types/components/NestingItem/styles.d.ts +1 -1
  35. package/dist/types/components/Section/heading-item.d.ts +1 -1
  36. package/dist/types/components/Section/skeleton-heading-item.d.ts +1 -1
  37. package/dist/types/components/utils/hooks.d.ts +1 -1
  38. package/dist/types-ts4.5/common/styles.d.ts +1 -1
  39. package/dist/types-ts4.5/components/Header/index.d.ts +1 -1
  40. package/dist/types-ts4.5/components/Item/button-item.d.ts +1 -1
  41. package/dist/types-ts4.5/components/Item/custom-item.d.ts +1 -1
  42. package/dist/types-ts4.5/components/Item/link-item.d.ts +1 -1
  43. package/dist/types-ts4.5/components/Item/skeleton-item.d.ts +1 -1
  44. package/dist/types-ts4.5/components/NavigationContent/index.d.ts +1 -1
  45. package/dist/types-ts4.5/components/NavigationFooter/index.d.ts +1 -1
  46. package/dist/types-ts4.5/components/NestableNavigationContent/context.d.ts +1 -1
  47. package/dist/types-ts4.5/components/NestableNavigationContent/nesting-motion.d.ts +2 -2
  48. package/dist/types-ts4.5/components/NestingItem/hack-for-ert.d.ts +1 -1
  49. package/dist/types-ts4.5/components/NestingItem/index.d.ts +1 -1
  50. package/dist/types-ts4.5/components/NestingItem/styles.d.ts +1 -1
  51. package/dist/types-ts4.5/components/Section/heading-item.d.ts +1 -1
  52. package/dist/types-ts4.5/components/Section/skeleton-heading-item.d.ts +1 -1
  53. package/dist/types-ts4.5/components/utils/hooks.d.ts +1 -1
  54. package/docs/ert/footer.tsx +1 -1
  55. package/package.json +10 -6
package/CHANGELOG.md CHANGED
@@ -1,1319 +1,1333 @@
1
1
  # @atlaskit/side-navigation
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#105180](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105180)
8
+ [`10ab455ab24b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10ab455ab24b) -
9
+ [ux] We are testing a visual change behind a feature flag. The letter spacing of side navigation
10
+ header title changes. If this change is successful it will be available in a later release.
11
+
12
+ ## 3.1.3
13
+
14
+ ### Patch Changes
15
+
16
+ - [#102250](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102250)
17
+ [`ba7dc54866b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ba7dc54866b9) -
18
+ Update footer to use logical property for padding. Internal changes to tokenise typography values.
19
+
3
20
  ## 3.1.2
4
21
 
5
22
  ### Patch Changes
6
23
 
7
- - [#98707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98707)
8
- [`7cce9cbf2f08`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7cce9cbf2f08) -
9
- Internal changes to how text is rendered. There is no expected visual change.
24
+ - [#98707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98707)
25
+ [`7cce9cbf2f08`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7cce9cbf2f08) -
26
+ Internal changes to how text is rendered. There is no expected visual change.
10
27
 
11
28
  ## 3.1.1
12
29
 
13
30
  ### Patch Changes
14
31
 
15
- - Updated dependencies
32
+ - Updated dependencies
16
33
 
17
34
  ## 3.1.0
18
35
 
19
36
  ### Minor Changes
20
37
 
21
- - [#94389](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94389)
22
- [`5ca1173e141e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ca1173e141e) -
23
- Add support for React 18.
38
+ - [#94389](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94389)
39
+ [`5ca1173e141e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ca1173e141e) -
40
+ Add support for React 18.
24
41
 
25
42
  ## 3.0.10
26
43
 
27
44
  ### Patch Changes
28
45
 
29
- - [#83188](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83188)
30
- [`cd5d06cd3329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cd5d06cd3329) -
31
- Minor adjustments to improve compatibility with React 18
46
+ - [#83188](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83188)
47
+ [`cd5d06cd3329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cd5d06cd3329) -
48
+ Minor adjustments to improve compatibility with React 18
32
49
 
33
50
  ## 3.0.9
34
51
 
35
52
  ### Patch Changes
36
53
 
37
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
38
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
39
- Upgrade Typescript from `4.9.5` to `5.4.2`
54
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
55
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
56
+ Upgrade Typescript from `4.9.5` to `5.4.2`
40
57
 
41
58
  ## 3.0.8
42
59
 
43
60
  ### Patch Changes
44
61
 
45
- - Updated dependencies
62
+ - Updated dependencies
46
63
 
47
64
  ## 3.0.7
48
65
 
49
66
  ### Patch Changes
50
67
 
51
- - Updated dependencies
68
+ - Updated dependencies
52
69
 
53
70
  ## 3.0.6
54
71
 
55
72
  ### Patch Changes
56
73
 
57
- - Updated dependencies
74
+ - Updated dependencies
58
75
 
59
76
  ## 3.0.5
60
77
 
61
78
  ### Patch Changes
62
79
 
63
- - Updated dependencies
80
+ - Updated dependencies
64
81
 
65
82
  ## 3.0.4
66
83
 
67
84
  ### Patch Changes
68
85
 
69
- - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022)
70
- [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) -
71
- Migrate packages to use declarative entry points
86
+ - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022)
87
+ [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) -
88
+ Migrate packages to use declarative entry points
72
89
 
73
90
  ## 3.0.3
74
91
 
75
92
  ### Patch Changes
76
93
 
77
- - [#43918](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43918)
78
- [`d100ca42f46`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d100ca42f46) - Push
79
- model consumption configuration done for these packages
94
+ - [#43918](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43918)
95
+ [`d100ca42f46`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d100ca42f46) - Push
96
+ model consumption configuration done for these packages
80
97
 
81
98
  ## 3.0.2
82
99
 
83
100
  ### Patch Changes
84
101
 
85
- - Updated dependencies
102
+ - Updated dependencies
86
103
 
87
104
  ## 3.0.1
88
105
 
89
106
  ### Patch Changes
90
107
 
91
- - [#42240](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42240)
92
- [`e5f784d7889`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5f784d7889) - Add
93
- explicit `href` to link item.
108
+ - [#42240](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42240)
109
+ [`e5f784d7889`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5f784d7889) - Add
110
+ explicit `href` to link item.
94
111
 
95
112
  ## 3.0.0
96
113
 
97
114
  ### Major Changes
98
115
 
99
- - [#41355](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41355)
100
- [`cd1c813da18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd1c813da18) - Menu
101
- items now have a secondary selected state (border or notch), this was previously feature flagged
102
- for Atlassian experiences and is now available for everyone.
116
+ - [#41355](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41355)
117
+ [`cd1c813da18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd1c813da18) - Menu
118
+ items now have a secondary selected state (border or notch), this was previously feature flagged
119
+ for Atlassian experiences and is now available for everyone.
103
120
 
104
- This change makes all menu items are now relatively positioned, if you had any child elements
105
- that leaned on this behaviour your experiences will now be broken!
121
+ This change makes all menu items are now relatively positioned, if you had any child elements that
122
+ leaned on this behaviour your experiences will now be broken!
106
123
 
107
- For example the below code code previously the `div` would be positioned relatively to the menu
108
- group element. Now, it is positioned relatively to the button item element.
124
+ For example the below code code previously the `div` would be positioned relatively to the menu
125
+ group element. Now, it is positioned relatively to the button item element.
109
126
 
110
- ```jsx
111
- <MenuGroup>
112
- <ButtonItem>
113
- <div style={{ position: 'absolute', top: '100%' }} />
114
- </ButtonItem>
115
- </MenuGroup>
116
- ```
127
+ ```jsx
128
+ <MenuGroup>
129
+ <ButtonItem>
130
+ <div style={{ position: 'absolute', top: '100%' }} />
131
+ </ButtonItem>
132
+ </MenuGroup>
133
+ ```
117
134
 
118
- As a path forward you should not be leaning on this behaviour. If you need a popup experience
119
- use `@atlaskit/dropdown-menu` or `@atlaskit/popup`.
135
+ As a path forward you should not be leaning on this behaviour. If you need a popup experience use
136
+ `@atlaskit/dropdown-menu` or `@atlaskit/popup`.
120
137
 
121
138
  ### Patch Changes
122
139
 
123
- - Updated dependencies
140
+ - Updated dependencies
124
141
 
125
142
  ## 2.0.5
126
143
 
127
144
  ### Patch Changes
128
145
 
129
- - Updated dependencies
146
+ - Updated dependencies
130
147
 
131
148
  ## 2.0.4
132
149
 
133
150
  ### Patch Changes
134
151
 
135
- - [#39812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39812)
136
- [`879275819ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/879275819ed) - Fix
137
- for `data-testid` not being applied to Header.
152
+ - [#39812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39812)
153
+ [`879275819ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/879275819ed) - Fix for
154
+ `data-testid` not being applied to Header.
138
155
 
139
156
  ## 2.0.3
140
157
 
141
158
  ### Patch Changes
142
159
 
143
- - [#39264](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39264)
144
- [`e3b28897c5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3b28897c5f) -
145
- Internal code changes. There is no expected change in behaviour.
146
- - Updated dependencies
160
+ - [#39264](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39264)
161
+ [`e3b28897c5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3b28897c5f) - Internal
162
+ code changes. There is no expected change in behaviour.
163
+ - Updated dependencies
147
164
 
148
165
  ## 2.0.2
149
166
 
150
167
  ### Patch Changes
151
168
 
152
- - [#39419](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39419)
153
- [`bff06efcf86`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bff06efcf86) - Fix a
154
- bug where `className` was not being applied to Header.
169
+ - [#39419](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39419)
170
+ [`bff06efcf86`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bff06efcf86) - Fix a
171
+ bug where `className` was not being applied to Header.
155
172
 
156
173
  ## 2.0.1
157
174
 
158
175
  ### Patch Changes
159
176
 
160
- - [#38751](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38751)
161
- [`cac6bbb702d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cac6bbb702d) - The
162
- internal composition of this component has changed. There is no expected change in behavior.
177
+ - [#38751](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38751)
178
+ [`cac6bbb702d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cac6bbb702d) - The
179
+ internal composition of this component has changed. There is no expected change in behavior.
163
180
 
164
181
  ## 2.0.0
165
182
 
166
183
  ### Major Changes
167
184
 
168
- - [#38561](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38561)
169
- [`cf66b43d67a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf66b43d67a) -
170
- Updated spacing of Side Navigation components to ensure token values and fallbacks are matching.
171
- When used with space tokens enabled, there is no visual difference with the previous release of
172
- Side Navigation. When used without space tokens enabled there will be a slight visual
173
- difference; we recommend enabling space tokens if they are not already enabled to resolve this.
185
+ - [#38561](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38561)
186
+ [`cf66b43d67a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf66b43d67a) - Updated
187
+ spacing of Side Navigation components to ensure token values and fallbacks are matching. When used
188
+ with space tokens enabled, there is no visual difference with the previous release of Side
189
+ Navigation. When used without space tokens enabled there will be a slight visual difference; we
190
+ recommend enabling space tokens if they are not already enabled to resolve this.
174
191
 
175
192
  ## 1.10.4
176
193
 
177
194
  ### Patch Changes
178
195
 
179
- - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533)
180
- [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) -
181
- Updated dependencies
196
+ - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533)
197
+ [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated
198
+ dependencies
182
199
 
183
200
  ## 1.10.3
184
201
 
185
202
  ### Patch Changes
186
203
 
187
- - Updated dependencies
204
+ - Updated dependencies
188
205
 
189
206
  ## 1.10.2
190
207
 
191
208
  ### Patch Changes
192
209
 
193
- - Updated dependencies
210
+ - Updated dependencies
194
211
 
195
212
  ## 1.10.1
196
213
 
197
214
  ### Patch Changes
198
215
 
199
- - Updated dependencies
216
+ - Updated dependencies
200
217
 
201
218
  ## 1.10.0
202
219
 
203
220
  ### Minor Changes
204
221
 
205
- - [#36118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36118)
206
- [`ee296a14a87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee296a14a87) - Adds
207
- the `showTopScrollIndicator` prop to the nestable navigation content component. This prop should
208
- be used only when needed to distinctly separate the side navigation header from the side
209
- navigation content.
222
+ - [#36118](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36118)
223
+ [`ee296a14a87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee296a14a87) - Adds the
224
+ `showTopScrollIndicator` prop to the nestable navigation content component. This prop should be
225
+ used only when needed to distinctly separate the side navigation header from the side navigation
226
+ content.
210
227
 
211
228
  ## 1.9.0
212
229
 
213
230
  ### Minor Changes
214
231
 
215
- - [#35164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35164)
216
- [`0af122e7d0f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0af122e7d0f) - [ux]
217
- Prop isList in Section component allows to add `<ul>` and `<li>` elements around the items to
218
- better semantic markup if it is a list of items
232
+ - [#35164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35164)
233
+ [`0af122e7d0f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0af122e7d0f) - [ux]
234
+ Prop isList in Section component allows to add `<ul>` and `<li>` elements around the items to
235
+ better semantic markup if it is a list of items
219
236
 
220
237
  ### Patch Changes
221
238
 
222
- - Updated dependencies
239
+ - Updated dependencies
223
240
 
224
241
  ## 1.8.10
225
242
 
226
243
  ### Patch Changes
227
244
 
228
- - Updated dependencies
245
+ - Updated dependencies
229
246
 
230
247
  ## 1.8.9
231
248
 
232
249
  ### Patch Changes
233
250
 
234
- - Updated dependencies
251
+ - Updated dependencies
235
252
 
236
253
  ## 1.8.8
237
254
 
238
255
  ### Patch Changes
239
256
 
240
- - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385)
241
- [`967dd926bfc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/967dd926bfc) -
242
- Updates all navigation components to use border/shape tokens. This is a no-op as these tokens
243
- are not enabled in product.
244
- - Updated dependencies
257
+ - [#35385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35385)
258
+ [`967dd926bfc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/967dd926bfc) - Updates
259
+ all navigation components to use border/shape tokens. This is a no-op as these tokens are not
260
+ enabled in product.
261
+ - Updated dependencies
245
262
 
246
263
  ## 1.8.7
247
264
 
248
265
  ### Patch Changes
249
266
 
250
- - [#35460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35460)
251
- [`4757acc0f98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4757acc0f98) -
252
- Internal change to use space tokens for spacing properties. There is no visual change.
267
+ - [#35460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35460)
268
+ [`4757acc0f98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4757acc0f98) - Internal
269
+ change to use space tokens for spacing properties. There is no visual change.
253
270
 
254
271
  ## 1.8.6
255
272
 
256
273
  ### Patch Changes
257
274
 
258
- - Updated dependencies
275
+ - Updated dependencies
259
276
 
260
277
  ## 1.8.5
261
278
 
262
279
  ### Patch Changes
263
280
 
264
- - Updated dependencies
281
+ - Updated dependencies
265
282
 
266
283
  ## 1.8.4
267
284
 
268
285
  ### Patch Changes
269
286
 
270
- - Updated dependencies
287
+ - Updated dependencies
271
288
 
272
289
  ## 1.8.3
273
290
 
274
291
  ### Patch Changes
275
292
 
276
- - [#34881](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34881)
277
- [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) -
278
- Internal changes to use space tokens for spacing values. There is no visual change.
293
+ - [#34881](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34881)
294
+ [`774ed69ecef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/774ed69ecef) - Internal
295
+ changes to use space tokens for spacing values. There is no visual change.
279
296
 
280
297
  ## 1.8.2
281
298
 
282
299
  ### Patch Changes
283
300
 
284
- - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652)
285
- [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans
286
- the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18
287
- migration work. The change is internal only and should not introduce any changes for the
288
- component consumers.
301
+ - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652)
302
+ [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the
303
+ use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration
304
+ work. The change is internal only and should not introduce any changes for the component
305
+ consumers.
289
306
 
290
307
  ## 1.8.1
291
308
 
292
309
  ### Patch Changes
293
310
 
294
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
295
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
296
- legacy types are published for TS 4.5-4.8
311
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
312
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
313
+ legacy types are published for TS 4.5-4.8
297
314
 
298
315
  ## 1.8.0
299
316
 
300
317
  ### Minor Changes
301
318
 
302
- - [#33349](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33349)
303
- [`d518f0e34b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d518f0e34b9) - [ux]
304
- We are testing a selected indicator change to menu, dropdown-menu, and side-navigation packages
305
- behind an internal feature flag. If successful this will be released in a later minor release.
319
+ - [#33349](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33349)
320
+ [`d518f0e34b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d518f0e34b9) - [ux] We
321
+ are testing a selected indicator change to menu, dropdown-menu, and side-navigation packages
322
+ behind an internal feature flag. If successful this will be released in a later minor release.
306
323
 
307
324
  ### Patch Changes
308
325
 
309
- - Updated dependencies
326
+ - Updated dependencies
310
327
 
311
328
  ## 1.7.1
312
329
 
313
330
  ### Patch Changes
314
331
 
315
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
316
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
317
- Upgrade Typescript from `4.5.5` to `4.9.5`
332
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
333
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
334
+ Typescript from `4.5.5` to `4.9.5`
318
335
 
319
336
  ## 1.7.0
320
337
 
321
338
  ### Minor Changes
322
339
 
323
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
324
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
325
- minor dependency bump
340
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
341
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
342
+ minor dependency bump
326
343
 
327
344
  ### Patch Changes
328
345
 
329
- - Updated dependencies
346
+ - Updated dependencies
330
347
 
331
348
  ## 1.6.8
332
349
 
333
350
  ### Patch Changes
334
351
 
335
- - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211)
336
- [`65e4baeea85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65e4baeea85) -
337
- Internal changes.
352
+ - [#32211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32211)
353
+ [`65e4baeea85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65e4baeea85) - Internal
354
+ changes.
338
355
 
339
356
  ## 1.6.7
340
357
 
341
358
  ### Patch Changes
342
359
 
343
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
344
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
345
- remove before merging to master; dupe adf-schema via adf-utils
360
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
361
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
362
+ remove before merging to master; dupe adf-schema via adf-utils
346
363
 
347
364
  ## 1.6.6
348
365
 
349
366
  ### Patch Changes
350
367
 
351
- - Updated dependencies
368
+ - Updated dependencies
352
369
 
353
370
  ## 1.6.5
354
371
 
355
372
  ### Patch Changes
356
373
 
357
- - [#32173](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32173)
358
- [`f7f852b0a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7f852b0a4f) -
359
- Migrated use of `gridSize` to space tokens where possible. There is no expected visual or
360
- behaviour change.
374
+ - [#32173](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32173)
375
+ [`f7f852b0a4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7f852b0a4f) - Migrated
376
+ use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
361
377
 
362
378
  ## 1.6.4
363
379
 
364
380
  ### Patch Changes
365
381
 
366
- - Updated dependencies
382
+ - Updated dependencies
367
383
 
368
384
  ## 1.6.3
369
385
 
370
386
  ### Patch Changes
371
387
 
372
- - Updated dependencies
388
+ - Updated dependencies
373
389
 
374
390
  ## 1.6.2
375
391
 
376
392
  ### Patch Changes
377
393
 
378
- - Updated dependencies
394
+ - Updated dependencies
379
395
 
380
396
  ## 1.6.1
381
397
 
382
398
  ### Patch Changes
383
399
 
384
- - [#31378](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31378)
385
- [`3ca97be0c06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ca97be0c06) -
386
- Internal change only. Replace usages of Inline/Stack with stable version from
387
- `@atlaskit/primitives`.
388
- - Updated dependencies
400
+ - [#31378](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31378)
401
+ [`3ca97be0c06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ca97be0c06) - Internal
402
+ change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
403
+ - Updated dependencies
389
404
 
390
405
  ## 1.6.0
391
406
 
392
407
  ### Minor Changes
393
408
 
394
- - [#30362](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30362)
395
- [`62c9d42799c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62c9d42799c) - [ux]
396
- The `Footer` component will now warn a user if they are relying on a deprecated API. The
397
- `cssFn`, `onClick` and `component` are all considered deprecated APIs for `Footer`.
409
+ - [#30362](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30362)
410
+ [`62c9d42799c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62c9d42799c) - [ux] The
411
+ `Footer` component will now warn a user if they are relying on a deprecated API. The `cssFn`,
412
+ `onClick` and `component` are all considered deprecated APIs for `Footer`.
398
413
 
399
- Additionally, the space between icons and content has been shifted form `16px` to `12px`. This
400
- matches `@atlaskit/menu`.
414
+ Additionally, the space between icons and content has been shifted form `16px` to `12px`. This
415
+ matches `@atlaskit/menu`.
401
416
 
402
- These APIs will be removed from Footer in a future major release. To suppress the warning you
403
- can choose to use the `useDeprecatedApi={false}` prop which opts into the new API.
417
+ These APIs will be removed from Footer in a future major release. To suppress the warning you can
418
+ choose to use the `useDeprecatedApi={false}` prop which opts into the new API.
404
419
 
405
420
  ### Patch Changes
406
421
 
407
- - Updated dependencies
422
+ - Updated dependencies
408
423
 
409
424
  ## 1.5.3
410
425
 
411
426
  ### Patch Changes
412
427
 
413
- - Updated dependencies
428
+ - Updated dependencies
414
429
 
415
430
  ## 1.5.2
416
431
 
417
432
  ### Patch Changes
418
433
 
419
- - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390)
420
- [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) -
421
- Internal change to update token references. There is no expected behaviour or visual change.
434
+ - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390)
435
+ [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal
436
+ change to update token references. There is no expected behaviour or visual change.
422
437
 
423
438
  ## 1.5.1
424
439
 
425
440
  ### Patch Changes
426
441
 
427
- - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891)
428
- [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) -
429
- Updated usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs.
430
- There are no visual or behaviour changes.
431
- - Updated dependencies
442
+ - [#27891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27891)
443
+ [`eadbf13d8c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eadbf13d8c0) - Updated
444
+ usages of `Text`, `Box`, `Stack`, and `Inline` primitives to reflect their updated APIs. There are
445
+ no visual or behaviour changes.
446
+ - Updated dependencies
432
447
 
433
448
  ## 1.5.0
434
449
 
435
450
  ### Minor Changes
436
451
 
437
- - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
438
- [`caa68aad0fd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa68aad0fd) -
439
- Internal changes around styles:
452
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
453
+ [`caa68aad0fd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa68aad0fd) - Internal
454
+ changes around styles:
440
455
 
441
- - Application of primitives for more declarative code
442
- - Application of spacing tokens to internal styles
456
+ - Application of primitives for more declarative code
457
+ - Application of spacing tokens to internal styles
443
458
 
444
459
  ### Patch Changes
445
460
 
446
- - [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux]
447
- Use color.background.neutral.subtle token to represent transparent background.
448
- - [`fbe4c12c94b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbe4c12c94b) -
449
- DTR-995 fix move page dialog bg color
461
+ - [`f96f3ebd861`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f96f3ebd861) - [ux] Use
462
+ color.background.neutral.subtle token to represent transparent background.
463
+ - [`fbe4c12c94b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbe4c12c94b) - DTR-995
464
+ fix move page dialog bg color
450
465
 
451
466
  ## 1.4.3
452
467
 
453
468
  ### Patch Changes
454
469
 
455
- - Updated dependencies
470
+ - Updated dependencies
456
471
 
457
472
  ## 1.4.2
458
473
 
459
474
  ### Patch Changes
460
475
 
461
- - Updated dependencies
476
+ - Updated dependencies
462
477
 
463
478
  ## 1.4.1
464
479
 
465
480
  ### Patch Changes
466
481
 
467
- - Updated dependencies
482
+ - Updated dependencies
468
483
 
469
484
  ## 1.4.0
470
485
 
471
486
  ### Minor Changes
472
487
 
473
- - [#26817](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26817)
474
- [`5c065ba2010`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c065ba2010) -
475
- Improve state management to allow detection of invalid stack state. Add prop `onUnknownNest` to
476
- allow handling of invalid stack state.
488
+ - [#26817](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26817)
489
+ [`5c065ba2010`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c065ba2010) - Improve
490
+ state management to allow detection of invalid stack state. Add prop `onUnknownNest` to allow
491
+ handling of invalid stack state.
477
492
 
478
493
  ## 1.3.1
479
494
 
480
495
  ### Patch Changes
481
496
 
482
- - [#26390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26390)
483
- [`5f36f2ce46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f36f2ce46d) - Adds a
484
- defensive `css()` function wrapping to many of the style calls in the side-navigation package.
485
- This is expected to help fix an issue with certain styles in side navigation not appearing if
486
- consumed when different versions of `@emotion` are present on the page.
497
+ - [#26390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26390)
498
+ [`5f36f2ce46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f36f2ce46d) - Adds a
499
+ defensive `css()` function wrapping to many of the style calls in the side-navigation package.
500
+ This is expected to help fix an issue with certain styles in side navigation not appearing if
501
+ consumed when different versions of `@emotion` are present on the page.
487
502
 
488
503
  ## 1.3.0
489
504
 
490
505
  ### Minor Changes
491
506
 
492
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
493
- [`02e2f7aacef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02e2f7aacef) -
494
- Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
507
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
508
+ [`02e2f7aacef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02e2f7aacef) - Updates
509
+ `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
495
510
 
496
511
  ### Patch Changes
497
512
 
498
- - Updated dependencies
513
+ - Updated dependencies
499
514
 
500
515
  ## 1.2.15
501
516
 
502
517
  ### Patch Changes
503
518
 
504
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
505
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
506
- Upgrade Typescript from `4.3.5` to `4.5.5`
519
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
520
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
521
+ Typescript from `4.3.5` to `4.5.5`
507
522
 
508
523
  ## 1.2.14
509
524
 
510
525
  ### Patch Changes
511
526
 
512
- - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
513
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) -
514
- Upgrade Typescript from `4.2.4` to `4.3.5`.
527
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492)
528
+ [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
529
+ Typescript from `4.2.4` to `4.3.5`.
515
530
 
516
531
  ## 1.2.13
517
532
 
518
533
  ### Patch Changes
519
534
 
520
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
521
- [`b2767947029`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2767947029) -
522
- Internal code change turning on new linting rules.
523
- - Updated dependencies
535
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
536
+ [`b2767947029`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2767947029) - Internal
537
+ code change turning on new linting rules.
538
+ - Updated dependencies
524
539
 
525
540
  ## 1.2.12
526
541
 
527
542
  ### Patch Changes
528
543
 
529
- - Updated dependencies
544
+ - Updated dependencies
530
545
 
531
546
  ## 1.2.11
532
547
 
533
548
  ### Patch Changes
534
549
 
535
- - [#21545](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21545)
536
- [`efa50ac72ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa50ac72ba) -
537
- Adjusts jsdoc strings to improve prop documentation
550
+ - [#21545](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21545)
551
+ [`efa50ac72ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa50ac72ba) - Adjusts
552
+ jsdoc strings to improve prop documentation
538
553
 
539
554
  ## 1.2.10
540
555
 
541
556
  ### Patch Changes
542
557
 
543
- - Updated dependencies
558
+ - Updated dependencies
544
559
 
545
560
  ## 1.2.9
546
561
 
547
562
  ### Patch Changes
548
563
 
549
- - [#21309](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21309)
550
- [`85ca75319b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85ca75319b1) - Move
551
- side-navigation docs to Constellation (atlassian.design)
564
+ - [#21309](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21309)
565
+ [`85ca75319b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85ca75319b1) - Move
566
+ side-navigation docs to Constellation (atlassian.design)
552
567
 
553
568
  ## 1.2.8
554
569
 
555
570
  ### Patch Changes
556
571
 
557
- - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
558
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) -
559
- Upgrade to TypeScript 4.2.4
572
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650)
573
+ [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
574
+ to TypeScript 4.2.4
560
575
 
561
576
  ## 1.2.7
562
577
 
563
578
  ### Patch Changes
564
579
 
565
- - Updated dependencies
580
+ - Updated dependencies
566
581
 
567
582
  ## 1.2.6
568
583
 
569
584
  ### Patch Changes
570
585
 
571
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
572
- [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) -
573
- Migrates all usage of brand tokens to either selected or information tokens. This change is
574
- purely for semantic reasons, there are no visual or behavioural changes.
575
- - Updated dependencies
586
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
587
+ [`62edf20ab1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62edf20ab1e) - Migrates
588
+ all usage of brand tokens to either selected or information tokens. This change is purely for
589
+ semantic reasons, there are no visual or behavioural changes.
590
+ - Updated dependencies
576
591
 
577
592
  ## 1.2.5
578
593
 
579
594
  ### Patch Changes
580
595
 
581
- - Updated dependencies
596
+ - Updated dependencies
582
597
 
583
598
  ## 1.2.4
584
599
 
585
600
  ### Patch Changes
586
601
 
587
- - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
588
- [`0f8fe0b80aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f8fe0b80aa) - Adds
589
- deprecated status to `cssFn` prop. Please avoid using this prop as we intend to remove the prop
590
- completely in a future release.
591
- - Updated dependencies
602
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
603
+ [`0f8fe0b80aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f8fe0b80aa) - Adds
604
+ deprecated status to `cssFn` prop. Please avoid using this prop as we intend to remove the prop
605
+ completely in a future release.
606
+ - Updated dependencies
592
607
 
593
608
  ## 1.2.3
594
609
 
595
610
  ### Patch Changes
596
611
 
597
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
598
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
599
- no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when
600
- auto-fixing by correctly formatting token ids.
601
- - Updated dependencies
612
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
613
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - The
614
+ no-unsafe-design-token-usage eslint rule now respects the new token naming conventions when
615
+ auto-fixing by correctly formatting token ids.
616
+ - Updated dependencies
602
617
 
603
618
  ## 1.2.2
604
619
 
605
620
  ### Patch Changes
606
621
 
607
- - Updated dependencies
622
+ - Updated dependencies
608
623
 
609
624
  ## 1.2.1
610
625
 
611
626
  ### Patch Changes
612
627
 
613
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
614
- [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
615
- for this package now pass through a tokens babel plugin, removing runtime invocations of the
616
- tokens() function and improving bundle size.
617
- - Updated dependencies
628
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
629
+ [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds
630
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
631
+ tokens() function and improving bundle size.
632
+ - Updated dependencies
618
633
 
619
634
  ## 1.2.0
620
635
 
621
636
  ### Minor Changes
622
637
 
623
- - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
624
- [`213bfd77e61`](https://bitbucket.org/atlassian/atlassian-frontend/commits/213bfd77e61) - The
625
- DOM structure of menu item components has been flattened. If you used CSS hacks (via className
626
- or cssFn) that targetted specific DOM nodes you may be broken.
638
+ - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777)
639
+ [`213bfd77e61`](https://bitbucket.org/atlassian/atlassian-frontend/commits/213bfd77e61) - The DOM
640
+ structure of menu item components has been flattened. If you used CSS hacks (via className or
641
+ cssFn) that targetted specific DOM nodes you may be broken.
627
642
 
628
- Previously the structure looked like:
643
+ Previously the structure looked like:
629
644
 
630
- ```jsx
631
- <button>
632
- <div> // <-- this intermediate div has been removed
633
- <span>
634
- <span />
635
- </span>
636
- </div>
637
- </button>
638
- ```
645
+ ```jsx
646
+ <button>
647
+ <div> // <-- this intermediate div has been removed
648
+ <span>
649
+ <span />
650
+ </span>
651
+ </div>
652
+ </button>
653
+ ```
639
654
 
640
- Now it looks like:
655
+ Now it looks like:
641
656
 
642
- ```jsx
643
- <button>
644
- <span>
645
- <span />
646
- </span>
647
- </button>
648
- ```
657
+ ```jsx
658
+ <button>
659
+ <span>
660
+ <span />
661
+ </span>
662
+ </button>
663
+ ```
649
664
 
650
- - [`e4f332d8697`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4f332d8697) -
651
- Internal refactor to update style declarations to match menu changes.
665
+ - [`e4f332d8697`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4f332d8697) - Internal
666
+ refactor to update style declarations to match menu changes.
652
667
 
653
668
  ### Patch Changes
654
669
 
655
- - Updated dependencies
670
+ - Updated dependencies
656
671
 
657
672
  ## 1.1.2
658
673
 
659
674
  ### Patch Changes
660
675
 
661
- - Updated dependencies
676
+ - Updated dependencies
662
677
 
663
678
  ## 1.1.1
664
679
 
665
680
  ### Patch Changes
666
681
 
667
- - Updated dependencies
682
+ - Updated dependencies
668
683
 
669
684
  ## 1.1.0
670
685
 
671
686
  ### Minor Changes
672
687
 
673
- - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
674
- [`0e1894c8eb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e1894c8eb0) -
675
- Instrumented side navigation with the new theming package, `@atlaskit/tokens`.
688
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864)
689
+ [`0e1894c8eb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e1894c8eb0) -
690
+ Instrumented side navigation with the new theming package, `@atlaskit/tokens`.
676
691
 
677
- New tokens will be visible only in applications configured to use the new Tokens API (currently
678
- in alpha). These changes are intended to be interoperable with the legacy theme implementation.
679
- Legacy dark mode users should expect no visual or breaking changes.
692
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in
693
+ alpha). These changes are intended to be interoperable with the legacy theme implementation.
694
+ Legacy dark mode users should expect no visual or breaking changes.
680
695
 
681
696
  ### Patch Changes
682
697
 
683
- - Updated dependencies
698
+ - Updated dependencies
684
699
 
685
700
  ## 1.0.1
686
701
 
687
702
  ### Patch Changes
688
703
 
689
- - [#11491](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11491)
690
- [`7c843858398`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c843858398) - [ux]
691
- LinkItem and CustomItem now have correct blue text color when selected and the href has visited
704
+ - [#11491](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11491)
705
+ [`7c843858398`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c843858398) - [ux]
706
+ LinkItem and CustomItem now have correct blue text color when selected and the href has visited
692
707
 
693
708
  ## 1.0.0
694
709
 
695
710
  ### Major Changes
696
711
 
697
- - [#10609](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10609)
698
- [`7727f723965`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7727f723965) -
699
- Internal change to the release model from continous to scheduled release. There are **NO API
700
- CHANGES** in this release.
712
+ - [#10609](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10609)
713
+ [`7727f723965`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7727f723965) - Internal
714
+ change to the release model from continous to scheduled release. There are **NO API CHANGES** in
715
+ this release.
701
716
 
702
717
  ### Patch Changes
703
718
 
704
- - Updated dependencies
719
+ - Updated dependencies
705
720
 
706
721
  ## 0.8.5
707
722
 
708
723
  ### Patch Changes
709
724
 
710
- - [#10255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10255)
711
- [`4e72825fa89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e72825fa89) -
712
- JET-1156:
725
+ - [#10255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10255)
726
+ [`4e72825fa89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e72825fa89) -
727
+ JET-1156:
713
728
 
714
- - Export `VAR_SEPARATOR_COLOR` to override separator color when using custom backrounds in
715
- side navigation.
716
- - Export `VAR_SCROLL_INDICATOR_COLOR` to override menu scroll indicator color when using
717
- custom backrounds in side navigation.
729
+ - Export `VAR_SEPARATOR_COLOR` to override separator color when using custom backrounds in side
730
+ navigation.
731
+ - Export `VAR_SCROLL_INDICATOR_COLOR` to override menu scroll indicator color when using custom
732
+ backrounds in side navigation.
718
733
 
719
734
  ## 0.8.4
720
735
 
721
736
  ### Patch Changes
722
737
 
723
- - [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756)
724
- [`240c4120435`](https://bitbucket.org/atlassian/atlassian-frontend/commits/240c4120435) - Side
725
- navigation now uses the new common utility to calculate scrollbar width for offsetting keylines.
726
- - Updated dependencies
738
+ - [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756)
739
+ [`240c4120435`](https://bitbucket.org/atlassian/atlassian-frontend/commits/240c4120435) - Side
740
+ navigation now uses the new common utility to calculate scrollbar width for offsetting keylines.
741
+ - Updated dependencies
727
742
 
728
743
  ## 0.8.3
729
744
 
730
745
  ### Patch Changes
731
746
 
732
- - [#8875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8875)
733
- [`e6f96e8d782`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f96e8d782) - Fix
734
- styling for hover and active states for disabled items
747
+ - [#8875](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8875)
748
+ [`e6f96e8d782`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f96e8d782) - Fix
749
+ styling for hover and active states for disabled items
735
750
 
736
751
  ## 0.8.2
737
752
 
738
753
  ### Patch Changes
739
754
 
740
- - [#8637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8637)
741
- [`101b102ed33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/101b102ed33) - Fix
742
- disabled state; menu items with icons after the text should have height of 40px
755
+ - [#8637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8637)
756
+ [`101b102ed33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/101b102ed33) - Fix
757
+ disabled state; menu items with icons after the text should have height of 40px
743
758
 
744
759
  ## 0.8.1
745
760
 
746
761
  ### Patch Changes
747
762
 
748
- - [#8404](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8404)
749
- [`0b2f7e76803`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b2f7e76803) -
750
- Codemods will only format a file if it is mutated.
763
+ - [#8404](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8404)
764
+ [`0b2f7e76803`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b2f7e76803) - Codemods
765
+ will only format a file if it is mutated.
751
766
 
752
767
  ## 0.8.0
753
768
 
754
769
  ### Minor Changes
755
770
 
756
- - [#6194](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6194)
757
- [`79a40dec30`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79a40dec30) -
758
- **Breaking** Adjusts the API of the cssFn prop used in both menu and side-navigation. The prop
759
- now no longer exposes the currentStyles to the user in the callback and instead only provides
760
- the current state. Users no longer need to spread the currentStyles into their components when
761
- overriding. This change also resolves a bug where cssFn overrides did not always take precedence
762
- correctly over the default component styles.
771
+ - [#6194](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6194)
772
+ [`79a40dec30`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79a40dec30) -
773
+ **Breaking** Adjusts the API of the cssFn prop used in both menu and side-navigation. The prop now
774
+ no longer exposes the currentStyles to the user in the callback and instead only provides the
775
+ current state. Users no longer need to spread the currentStyles into their components when
776
+ overriding. This change also resolves a bug where cssFn overrides did not always take precedence
777
+ correctly over the default component styles.
763
778
 
764
779
  ### Patch Changes
765
780
 
766
- - Updated dependencies
781
+ - Updated dependencies
767
782
 
768
783
  ## 0.7.10
769
784
 
770
785
  ### Patch Changes
771
786
 
772
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
773
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
774
- Transpile packages using babel rather than tsc
787
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
788
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
789
+ packages using babel rather than tsc
775
790
 
776
791
  ## 0.7.9
777
792
 
778
793
  ### Patch Changes
779
794
 
780
- - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
781
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
782
- types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
783
- compiler option. This requires version 3.8 of Typescript, read more about how we handle
784
- Typescript versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
785
- `devDependencies` to denote version that the package was built with.
795
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497)
796
+ [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
797
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
798
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
799
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
800
+ `devDependencies` to denote version that the package was built with.
786
801
 
787
802
  ## 0.7.8
788
803
 
789
804
  ### Patch Changes
790
805
 
791
- - [#5419](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5419)
792
- [`e55c4eb5a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e55c4eb5a8) - [ux]
793
- Earlier left sidebar was getting focus while clicking on it. We have removed focus ring to fix
794
- this issue.
806
+ - [#5419](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5419)
807
+ [`e55c4eb5a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e55c4eb5a8) - [ux]
808
+ Earlier left sidebar was getting focus while clicking on it. We have removed focus ring to fix
809
+ this issue.
795
810
 
796
811
  ## 0.7.7
797
812
 
798
813
  ### Patch Changes
799
814
 
800
- - Updated dependencies
815
+ - Updated dependencies
801
816
 
802
817
  ## 0.7.6
803
818
 
804
819
  ### Patch Changes
805
820
 
806
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
807
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
808
- to TypeScript 3.9.6 and tslib to 2.0.0
821
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
822
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
823
+ to TypeScript 3.9.6 and tslib to 2.0.0
809
824
 
810
- Since tslib is a dependency for all our packages we recommend that products also follow this
811
- tslib upgrade to prevent duplicates of tslib being bundled.
825
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
826
+ upgrade to prevent duplicates of tslib being bundled.
812
827
 
813
828
  ## 0.7.5
814
829
 
815
830
  ### Patch Changes
816
831
 
817
- - [#4272](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4272)
818
- [`a3c91f82f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3c91f82f6) - Add
819
- tabindex=0 to nested container which makes it focusable when interacting with keyboard.
832
+ - [#4272](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4272)
833
+ [`a3c91f82f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3c91f82f6) - Add
834
+ tabindex=0 to nested container which makes it focusable when interacting with keyboard.
820
835
 
821
836
  ## 0.7.4
822
837
 
823
838
  ### Patch Changes
824
839
 
825
- - [#4198](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4198)
826
- [`308ad47024`](https://bitbucket.org/atlassian/atlassian-frontend/commits/308ad47024) - Passes
827
- `cssFn` throught to NestingItem so that its styles can be customised
840
+ - [#4198](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4198)
841
+ [`308ad47024`](https://bitbucket.org/atlassian/atlassian-frontend/commits/308ad47024) - Passes
842
+ `cssFn` throught to NestingItem so that its styles can be customised
828
843
 
829
844
  ## 0.7.3
830
845
 
831
846
  ### Patch Changes
832
847
 
833
- - Updated dependencies
848
+ - Updated dependencies
834
849
 
835
850
  ## 0.7.2
836
851
 
837
852
  ### Patch Changes
838
853
 
839
- - [#3980](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3980)
840
- [`159e0808a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/159e0808a5) - Updates
841
- the background color of NestingItem, ButtonItem and LinkItem so that it can work with the
842
- Onboarding component. Hover and selected states will appear darker and they provide better
843
- contrast against normal items.
854
+ - [#3980](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3980)
855
+ [`159e0808a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/159e0808a5) - Updates
856
+ the background color of NestingItem, ButtonItem and LinkItem so that it can work with the
857
+ Onboarding component. Hover and selected states will appear darker and they provide better
858
+ contrast against normal items.
844
859
 
845
860
  ## 0.7.1
846
861
 
847
862
  ### Patch Changes
848
863
 
849
- - [#3532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3532)
850
- [`5b3383fe67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b3383fe67) - Nesting
851
- transitions will no longer occur if a modifier key such as Shift or Control is detected while
852
- clicking on a nesting item in the side-navigation.
864
+ - [#3532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3532)
865
+ [`5b3383fe67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b3383fe67) - Nesting
866
+ transitions will no longer occur if a modifier key such as Shift or Control is detected while
867
+ clicking on a nesting item in the side-navigation.
853
868
 
854
869
  ## 0.7.0
855
870
 
856
871
  ### Minor Changes
857
872
 
858
- - [#3569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3569)
859
- [`c7e637753f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7e637753f) - Removed
860
- unused export of SIDEBAR_DEFAULT_WIDTH. It was added when page-layout wasn’t complete. Now
861
- page-layout is fairly mature, that’s why this export isn’t required anymore.
873
+ - [#3569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3569)
874
+ [`c7e637753f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7e637753f) - Removed
875
+ unused export of SIDEBAR_DEFAULT_WIDTH. It was added when page-layout wasn’t complete. Now
876
+ page-layout is fairly mature, that’s why this export isn’t required anymore.
862
877
 
863
878
  ## 0.6.1
864
879
 
865
880
  ### Patch Changes
866
881
 
867
- - [#3469](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3469)
868
- [`01e279bdcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01e279bdcd) - Restyled
869
- footer - align with new design
882
+ - [#3469](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3469)
883
+ [`01e279bdcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01e279bdcd) - Restyled
884
+ footer - align with new design
870
885
 
871
886
  ## 0.6.0
872
887
 
873
888
  ### Minor Changes
874
889
 
875
- - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
876
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) -
877
- Officially dropping IE11 support, from this version onwards there are no warranties of the
878
- package working in IE11. For more information see:
879
- https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
890
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335)
891
+ [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
892
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
893
+ IE11. For more information see:
894
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
880
895
 
881
896
  ### Patch Changes
882
897
 
883
- - Updated dependencies
898
+ - Updated dependencies
884
899
 
885
900
  ## 0.5.7
886
901
 
887
902
  ### Patch Changes
888
903
 
889
- - Updated dependencies
904
+ - Updated dependencies
890
905
 
891
906
  ## 0.5.6
892
907
 
893
908
  ### Patch Changes
894
909
 
895
- - [#2889](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2889)
896
- [`cc14956821`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc14956821) - Update
897
- all the theme imports to a path thats tree shakable
910
+ - [#2889](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2889)
911
+ [`cc14956821`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cc14956821) - Update all
912
+ the theme imports to a path thats tree shakable
898
913
 
899
914
  ## 0.5.5
900
915
 
901
916
  ### Patch Changes
902
917
 
903
- - [#2775](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2775)
904
- [`5217dcfa4d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5217dcfa4d) - Remove
905
- opacity from side-navigation seperators that appear when the container scrolls. The color is the
906
- same, just without the alpha channel.
918
+ - [#2775](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2775)
919
+ [`5217dcfa4d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5217dcfa4d) - Remove
920
+ opacity from side-navigation seperators that appear when the container scrolls. The color is the
921
+ same, just without the alpha channel.
907
922
 
908
923
  ## 0.5.4
909
924
 
910
925
  ### Patch Changes
911
926
 
912
- - [#2537](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2537)
913
- [`d674e203b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d674e203b3) -
914
- Previously Menu items controlled their own margin spacing which caused issues when trying to use
915
- them outside of Menu. Now we have moved Menu item margin styles into the Section component so
916
- now the Section dictates the spacing around child items. We had to update Side Navigation to
917
- control its child item margins as well.
927
+ - [#2537](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2537)
928
+ [`d674e203b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d674e203b3) - Previously
929
+ Menu items controlled their own margin spacing which caused issues when trying to use them outside
930
+ of Menu. Now we have moved Menu item margin styles into the Section component so now the Section
931
+ dictates the spacing around child items. We had to update Side Navigation to control its child
932
+ item margins as well.
918
933
 
919
934
  ## 0.5.3
920
935
 
921
936
  ### Patch Changes
922
937
 
923
- - [#2430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2430)
924
- [`649f69b6d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/649f69b6d7) - Patch
925
- all packages that are used by confluence that have a broken es2019 dist
938
+ - [#2430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2430)
939
+ [`649f69b6d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/649f69b6d7) - Patch all
940
+ packages that are used by confluence that have a broken es2019 dist
926
941
 
927
942
  ## 0.5.2
928
943
 
929
944
  ### Patch Changes
930
945
 
931
- - [#2099](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2099)
932
- [`131cee6d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/131cee6d7a) - Add
933
- missing tslib dependency
946
+ - [#2099](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2099)
947
+ [`131cee6d7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/131cee6d7a) - Add
948
+ missing tslib dependency
934
949
 
935
950
  ## 0.5.1
936
951
 
937
952
  ### Patch Changes
938
953
 
939
- - [#2098](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2098)
940
- [`6ef13297b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ef13297b2) - Fixes
941
- scroll indicator not being the correct width when lazy loading large amounts of nav items.
954
+ - [#2098](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2098)
955
+ [`6ef13297b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ef13297b2) - Fixes
956
+ scroll indicator not being the correct width when lazy loading large amounts of nav items.
942
957
 
943
958
  ## 0.5.0
944
959
 
945
960
  ### Minor Changes
946
961
 
947
- - [#2008](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2008)
948
- [`07b2d8c491`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07b2d8c491) - FIX:
949
- NestedItem `iconAfter` will now display always and right arrow will show up and replace it on
950
- hover
962
+ - [#2008](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2008)
963
+ [`07b2d8c491`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07b2d8c491) - FIX:
964
+ NestedItem `iconAfter` will now display always and right arrow will show up and replace it on
965
+ hover
951
966
 
952
967
  ## 0.4.0
953
968
 
954
969
  ### Minor Changes
955
970
 
956
- - [minor][7e408e4037](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e408e4037):
957
-
958
- **BREAKING** - renames `elemBefore` and `elemAfter` props to `iconBefore` and `iconAfter` on all
959
- item components.-
960
- [minor][d1ef176211](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1ef176211):
961
-
962
- **BREAKING** - renames section heading to heading item-
963
- [minor][41760ea4a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/41760ea4a6):
964
-
965
- **BREAKING**: modifies custom item component to take only valid HTML attributes. This means
966
- `wrapperClass` is now known as `className`.-
967
- [minor][b3441cd210](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3441cd210):
968
-
969
- **BREAKING** - removes render go back item component from nesting item and nestable navigation
970
- content. Replaces with overrides equivalent.-
971
- [minor][e67a87dbf2](https://bitbucket.org/atlassian/atlassian-frontend/commits/e67a87dbf2):
972
-
973
- **BREAKING** - renames `customItemComponent` prop on nesting item to `component`.
974
-
975
- ### Patch Changes
976
-
977
- - [patch][724935beab](https://bitbucket.org/atlassian/atlassian-frontend/commits/724935beab):
978
-
979
- Adds loading section component to use when wanting lazy load menu items.-
980
- [patch][6453c8de48](https://bitbucket.org/atlassian/atlassian-frontend/commits/6453c8de48):
981
-
982
- Exposes typescript types alongside components.-
983
- [patch][3bfb526c22](https://bitbucket.org/atlassian/atlassian-frontend/commits/3bfb526c22):
984
-
985
- Corrects disabled nesting item to not show the after element on hover.-
986
- [patch][7a9bf45e58](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a9bf45e58):
987
-
988
- Fixes section heading to correctly compose passed in css function.-
989
- [patch][d8dc3813c1](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8dc3813c1):
990
-
991
- Fixes section heading spacing.-
992
- [patch][684ee794d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/684ee794d6):
993
-
994
- Improves type safety with custom item by using TypeScript generics to pass on the custom
995
- component types to the parent.- Updated dependencies
996
- [7e408e4037](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e408e4037):
997
-
998
- - Updated dependencies
999
- [5633f516a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/5633f516a4):
1000
- - Updated dependencies
1001
- [6453c8de48](https://bitbucket.org/atlassian/atlassian-frontend/commits/6453c8de48):
1002
- - Updated dependencies
1003
- [168b5f90e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/168b5f90e5):
1004
- - Updated dependencies
1005
- [e4dde0ad13](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4dde0ad13):
1006
- - Updated dependencies
1007
- [41760ea4a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/41760ea4a6):
1008
- - Updated dependencies
1009
- [0c270847cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c270847cb):
1010
- - Updated dependencies
1011
- [971e294b1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/971e294b1e):
1012
- - Updated dependencies
1013
- [684ee794d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/684ee794d6):
1014
- - Updated dependencies
1015
- [109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
1016
- - Updated dependencies
1017
- [b9903e773a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9903e773a):
1018
- - Updated dependencies
1019
- [286770886d](https://bitbucket.org/atlassian/atlassian-frontend/commits/286770886d):
1020
- - Updated dependencies
1021
- [2c1b78027c](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c1b78027c):
1022
- - Updated dependencies
1023
- [fb3ca3a3b2](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb3ca3a3b2):
1024
- - @atlaskit/menu@0.4.0
1025
- - @atlaskit/motion@0.2.3
1026
- - @atlaskit/docs@8.5.1
1027
- - @atlaskit/theme@9.5.3
1028
- - @atlaskit/button@13.3.10
971
+ - [minor][7e408e4037](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e408e4037):
972
+
973
+ **BREAKING** - renames `elemBefore` and `elemAfter` props to `iconBefore` and `iconAfter` on all
974
+ item components.-
975
+ [minor][d1ef176211](https://bitbucket.org/atlassian/atlassian-frontend/commits/d1ef176211):
976
+
977
+ **BREAKING** - renames section heading to heading item-
978
+ [minor][41760ea4a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/41760ea4a6):
979
+
980
+ **BREAKING**: modifies custom item component to take only valid HTML attributes. This means
981
+ `wrapperClass` is now known as `className`.-
982
+ [minor][b3441cd210](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3441cd210):
983
+
984
+ **BREAKING** - removes render go back item component from nesting item and nestable navigation
985
+ content. Replaces with overrides equivalent.-
986
+ [minor][e67a87dbf2](https://bitbucket.org/atlassian/atlassian-frontend/commits/e67a87dbf2):
987
+
988
+ **BREAKING** - renames `customItemComponent` prop on nesting item to `component`.
989
+
990
+ ### Patch Changes
991
+
992
+ - [patch][724935beab](https://bitbucket.org/atlassian/atlassian-frontend/commits/724935beab):
993
+
994
+ Adds loading section component to use when wanting lazy load menu items.-
995
+ [patch][6453c8de48](https://bitbucket.org/atlassian/atlassian-frontend/commits/6453c8de48):
996
+
997
+ Exposes typescript types alongside components.-
998
+ [patch][3bfb526c22](https://bitbucket.org/atlassian/atlassian-frontend/commits/3bfb526c22):
999
+
1000
+ Corrects disabled nesting item to not show the after element on hover.-
1001
+ [patch][7a9bf45e58](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a9bf45e58):
1002
+
1003
+ Fixes section heading to correctly compose passed in css function.-
1004
+ [patch][d8dc3813c1](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8dc3813c1):
1005
+
1006
+ Fixes section heading spacing.-
1007
+ [patch][684ee794d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/684ee794d6):
1008
+
1009
+ Improves type safety with custom item by using TypeScript generics to pass on the custom component
1010
+ types to the parent.- Updated dependencies
1011
+ [7e408e4037](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e408e4037):
1012
+
1013
+ - Updated dependencies
1014
+ [5633f516a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/5633f516a4):
1015
+ - Updated dependencies
1016
+ [6453c8de48](https://bitbucket.org/atlassian/atlassian-frontend/commits/6453c8de48):
1017
+ - Updated dependencies
1018
+ [168b5f90e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/168b5f90e5):
1019
+ - Updated dependencies
1020
+ [e4dde0ad13](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4dde0ad13):
1021
+ - Updated dependencies
1022
+ [41760ea4a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/41760ea4a6):
1023
+ - Updated dependencies
1024
+ [0c270847cb](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c270847cb):
1025
+ - Updated dependencies
1026
+ [971e294b1e](https://bitbucket.org/atlassian/atlassian-frontend/commits/971e294b1e):
1027
+ - Updated dependencies
1028
+ [684ee794d6](https://bitbucket.org/atlassian/atlassian-frontend/commits/684ee794d6):
1029
+ - Updated dependencies
1030
+ [109004a98e](https://bitbucket.org/atlassian/atlassian-frontend/commits/109004a98e):
1031
+ - Updated dependencies
1032
+ [b9903e773a](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9903e773a):
1033
+ - Updated dependencies
1034
+ [286770886d](https://bitbucket.org/atlassian/atlassian-frontend/commits/286770886d):
1035
+ - Updated dependencies
1036
+ [2c1b78027c](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c1b78027c):
1037
+ - Updated dependencies
1038
+ [fb3ca3a3b2](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb3ca3a3b2):
1039
+ - @atlaskit/menu@0.4.0
1040
+ - @atlaskit/motion@0.2.3
1041
+ - @atlaskit/docs@8.5.1
1042
+ - @atlaskit/theme@9.5.3
1043
+ - @atlaskit/button@13.3.10
1029
1044
 
1030
1045
  ## 0.3.1
1031
1046
 
1032
1047
  ### Patch Changes
1033
1048
 
1034
- - [patch][ab133d934f](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab133d934f):
1049
+ - [patch][ab133d934f](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab133d934f):
1035
1050
 
1036
- Change imports to comply with Atlassian conventions
1051
+ Change imports to comply with Atlassian conventions
1037
1052
 
1038
1053
  ## 0.3.0
1039
1054
 
1040
1055
  ### Minor Changes
1041
1056
 
1042
- - [minor][7ecbf8d0bd](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ecbf8d0bd):
1057
+ - [minor][7ecbf8d0bd](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ecbf8d0bd):
1043
1058
 
1044
- **Breaking:**
1045
-
1046
- - SideNavigation now has a required `label` prop.
1059
+ **Breaking:**
1060
+
1061
+ - SideNavigation now has a required `label` prop.
1047
1062
 
1048
- **Accessibility Changes**
1063
+ **Accessibility Changes**
1049
1064
 
1050
- - SideNavigation now has a `navigation` landmark for use with screen readers; this landmark is
1051
- further described by the `label` prop to differentiate it from AtlassianNavigation-
1052
- [minor][1fea6757c4](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fea6757c4):
1065
+ - SideNavigation now has a `navigation` landmark for use with screen readers; this landmark is
1066
+ further described by the `label` prop to differentiate it from AtlassianNavigation-
1067
+ [minor][1fea6757c4](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fea6757c4):
1053
1068
 
1054
- **BREAKING** - NavigationFooter component has been renamed to Footer.
1069
+ **BREAKING** - NavigationFooter component has been renamed to Footer.
1055
1070
 
1056
1071
  ### Patch Changes
1057
1072
 
1058
- - [patch][7b230682c2](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b230682c2):
1073
+ - [patch][7b230682c2](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b230682c2):
1059
1074
 
1060
- Adds controlled component support. It is now possible to use the `stack` and `onChange` props on
1061
- the `NestableNavigationContent` component to dictate which view is active. This is useful for
1062
- use cases where nested views need to be changed programmatically.
1075
+ Adds controlled component support. It is now possible to use the `stack` and `onChange` props on
1076
+ the `NestableNavigationContent` component to dictate which view is active. This is useful for use
1077
+ cases where nested views need to be changed programmatically.
1063
1078
 
1064
- ```
1065
- const [stack, setStack] = useState([]);
1079
+ ```
1080
+ const [stack, setStack] = useState([]);
1066
1081
 
1067
- <SideNavigation>
1068
- <NestableNavigationContent
1069
- onChange={setStack}
1070
- stack={stack}
1071
- >
1072
- ...
1073
- </NestableNavigationContent>
1074
- </SideNavigation>
1075
- ```
1082
+ <SideNavigation>
1083
+ <NestableNavigationContent
1084
+ onChange={setStack}
1085
+ stack={stack}
1086
+ >
1087
+ ...
1088
+ </NestableNavigationContent>
1089
+ </SideNavigation>
1090
+ ```
1076
1091
 
1077
- This is supported by a new hook called `useShouldNestedElementRender()`. All components that can
1078
- be composed with `NestableNavigationContent` use it out of the box, but if you want to compose
1079
- your own components you may have to opt into it else you will see your component rendering on
1080
- every view (which may or may not be what you want).
1092
+ This is supported by a new hook called `useShouldNestedElementRender()`. All components that can
1093
+ be composed with `NestableNavigationContent` use it out of the box, but if you want to compose
1094
+ your own components you may have to opt into it else you will see your component rendering on
1095
+ every view (which may or may not be what you want).
1081
1096
 
1082
- ```
1083
- import { useShouldNestedElementRender } from '@atlaskit/side-navigation';
1097
+ ```
1098
+ import { useShouldNestedElementRender } from '@atlaskit/side-navigation';
1084
1099
 
1085
- const MyCustomComponent = () => {
1086
- const { shouldRender } = useShouldNestedElementRender();
1100
+ const MyCustomComponent = () => {
1101
+ const { shouldRender } = useShouldNestedElementRender();
1087
1102
 
1088
- if (shouldRender) {
1089
- return <div>hello world!</div>;
1090
- }
1103
+ if (shouldRender) {
1104
+ return <div>hello world!</div>;
1105
+ }
1091
1106
 
1092
- // If your component takes children you'll probably want to return children here instead.
1093
- return null;
1094
- };
1095
- ```
1107
+ // If your component takes children you'll probably want to return children here instead.
1108
+ return null;
1109
+ };
1110
+ ```
1096
1111
 
1097
- ```
1098
- <SideNavigation>
1099
- <NestableNavigationContent>
1100
- <MyCustomComponent />
1101
- </NestableNavigationContent>
1102
- </SideNavigation>
1103
- ```
1112
+ ```
1113
+ <SideNavigation>
1114
+ <NestableNavigationContent>
1115
+ <MyCustomComponent />
1116
+ </NestableNavigationContent>
1117
+ </SideNavigation>
1118
+ ```
1104
1119
 
1105
- - [patch][5c0bb69f7b](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c0bb69f7b):
1120
+ - [patch][5c0bb69f7b](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c0bb69f7b):
1106
1121
 
1107
- Fixes horizontal alignment for item icons in relation to the app switcher in the horizontal
1108
- navigation bar.-
1109
- [patch][1a3192c1c1](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a3192c1c1):
1122
+ Fixes horizontal alignment for item icons in relation to the app switcher in the horizontal
1123
+ navigation bar.-
1124
+ [patch][1a3192c1c1](https://bitbucket.org/atlassian/atlassian-frontend/commits/1a3192c1c1):
1110
1125
 
1111
- Introduces skeletons for heading and item components.-
1112
- [patch][43353900f7](https://bitbucket.org/atlassian/atlassian-frontend/commits/43353900f7):
1126
+ Introduces skeletons for heading and item components.-
1127
+ [patch][43353900f7](https://bitbucket.org/atlassian/atlassian-frontend/commits/43353900f7):
1113
1128
 
1114
- Corrects and consolidates colors for item and side navigation components.-
1115
- [patch][c60324c748](https://bitbucket.org/atlassian/atlassian-frontend/commits/c60324c748):
1129
+ Corrects and consolidates colors for item and side navigation components.-
1130
+ [patch][c60324c748](https://bitbucket.org/atlassian/atlassian-frontend/commits/c60324c748):
1116
1131
 
1117
- Adds new Footer component. Ensures this and the Header component come with baked in styles for
1118
- you to use out of the box.-
1119
- [patch][c56d86d95c](https://bitbucket.org/atlassian/atlassian-frontend/commits/c56d86d95c):
1132
+ Adds new Footer component. Ensures this and the Header component come with baked in styles for you
1133
+ to use out of the box.-
1134
+ [patch][c56d86d95c](https://bitbucket.org/atlassian/atlassian-frontend/commits/c56d86d95c):
1120
1135
 
1121
- Adds scrolling indicators to the scrollable container component.
1136
+ Adds scrolling indicators to the scrollable container component.
1122
1137
 
1123
- - Updated dependencies
1124
- [ed8d8dea65](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed8d8dea65):
1125
- - Updated dependencies
1126
- [db2f869556](https://bitbucket.org/atlassian/atlassian-frontend/commits/db2f869556):
1127
- - Updated dependencies
1128
- [81ea791176](https://bitbucket.org/atlassian/atlassian-frontend/commits/81ea791176):
1129
- - Updated dependencies
1130
- [6e2dda87f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e2dda87f4):
1131
- - Updated dependencies
1132
- [e57c4aa96d](https://bitbucket.org/atlassian/atlassian-frontend/commits/e57c4aa96d):
1133
- - Updated dependencies
1134
- [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
1135
- - Updated dependencies
1136
- [89d35b919a](https://bitbucket.org/atlassian/atlassian-frontend/commits/89d35b919a):
1137
- - Updated dependencies
1138
- [083cfbaeb4](https://bitbucket.org/atlassian/atlassian-frontend/commits/083cfbaeb4):
1139
- - Updated dependencies
1140
- [46d95777ef](https://bitbucket.org/atlassian/atlassian-frontend/commits/46d95777ef):
1141
- - Updated dependencies
1142
- [9b264df34d](https://bitbucket.org/atlassian/atlassian-frontend/commits/9b264df34d):
1143
- - @atlaskit/menu@0.3.1
1144
- - @atlaskit/atlassian-navigation@0.10.0
1145
- - @atlaskit/docs@8.5.0
1138
+ - Updated dependencies
1139
+ [ed8d8dea65](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed8d8dea65):
1140
+ - Updated dependencies
1141
+ [db2f869556](https://bitbucket.org/atlassian/atlassian-frontend/commits/db2f869556):
1142
+ - Updated dependencies
1143
+ [81ea791176](https://bitbucket.org/atlassian/atlassian-frontend/commits/81ea791176):
1144
+ - Updated dependencies
1145
+ [6e2dda87f4](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e2dda87f4):
1146
+ - Updated dependencies
1147
+ [e57c4aa96d](https://bitbucket.org/atlassian/atlassian-frontend/commits/e57c4aa96d):
1148
+ - Updated dependencies
1149
+ [8c9e4f1ec6](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c9e4f1ec6):
1150
+ - Updated dependencies
1151
+ [89d35b919a](https://bitbucket.org/atlassian/atlassian-frontend/commits/89d35b919a):
1152
+ - Updated dependencies
1153
+ [083cfbaeb4](https://bitbucket.org/atlassian/atlassian-frontend/commits/083cfbaeb4):
1154
+ - Updated dependencies
1155
+ [46d95777ef](https://bitbucket.org/atlassian/atlassian-frontend/commits/46d95777ef):
1156
+ - Updated dependencies
1157
+ [9b264df34d](https://bitbucket.org/atlassian/atlassian-frontend/commits/9b264df34d):
1158
+ - @atlaskit/menu@0.3.1
1159
+ - @atlaskit/atlassian-navigation@0.10.0
1160
+ - @atlaskit/docs@8.5.0
1146
1161
 
1147
1162
  ## 0.2.0
1148
1163
 
1149
1164
  ### Minor Changes
1150
1165
 
1151
- - [minor][dce5efb012](https://bitbucket.org/atlassian/atlassian-frontend/commits/dce5efb012):
1166
+ - [minor][dce5efb012](https://bitbucket.org/atlassian/atlassian-frontend/commits/dce5efb012):
1152
1167
 
1153
- Support forward ref on side-navigation primitives
1168
+ Support forward ref on side-navigation primitives
1154
1169
 
1155
1170
  ### Patch Changes
1156
1171
 
1157
- - [patch][4da717940e](https://bitbucket.org/atlassian/atlassian-frontend/commits/4da717940e):
1172
+ - [patch][4da717940e](https://bitbucket.org/atlassian/atlassian-frontend/commits/4da717940e):
1158
1173
 
1159
- Refactor side-navigation nesting logic to support async components-
1160
- [patch][93709ca7eb](https://bitbucket.org/atlassian/atlassian-frontend/commits/93709ca7eb):
1174
+ Refactor side-navigation nesting logic to support async components-
1175
+ [patch][93709ca7eb](https://bitbucket.org/atlassian/atlassian-frontend/commits/93709ca7eb):
1161
1176
 
1162
- Adds `testId` to `NestingItem`- Updated dependencies
1163
- [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1177
+ Adds `testId` to `NestingItem`- Updated dependencies
1178
+ [66dcced7a0](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dcced7a0):
1164
1179
 
1165
- - Updated dependencies
1166
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1167
- - Updated dependencies
1168
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1169
- - Updated dependencies
1170
- [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1171
- - Updated dependencies
1172
- [7a6e5f6e3d](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a6e5f6e3d):
1173
- - Updated dependencies
1174
- [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1175
- - @atlaskit/docs@8.4.0
1176
- - @atlaskit/icon@20.1.0
1177
- - @atlaskit/logo@12.3.3
1178
- - @atlaskit/menu@0.3.0
1179
- - @atlaskit/button@13.3.9
1180
+ - Updated dependencies
1181
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1182
+ - Updated dependencies
1183
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1184
+ - Updated dependencies
1185
+ [eea5e9bd8c](https://bitbucket.org/atlassian/atlassian-frontend/commits/eea5e9bd8c):
1186
+ - Updated dependencies
1187
+ [7a6e5f6e3d](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a6e5f6e3d):
1188
+ - Updated dependencies
1189
+ [fd5292fd5a](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5292fd5a):
1190
+ - @atlaskit/docs@8.4.0
1191
+ - @atlaskit/icon@20.1.0
1192
+ - @atlaskit/logo@12.3.3
1193
+ - @atlaskit/menu@0.3.0
1194
+ - @atlaskit/button@13.3.9
1180
1195
 
1181
1196
  ## 0.1.0
1182
1197
 
1183
1198
  ### Minor Changes
1184
1199
 
1185
- - [minor][e1416630ed](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1416630ed):
1200
+ - [minor][e1416630ed](https://bitbucket.org/atlassian/atlassian-frontend/commits/e1416630ed):
1186
1201
 
1187
- **BREAKING**: Renamed exported components
1202
+ **BREAKING**: Renamed exported components
1188
1203
 
1189
- - Renamed `MainSection` to `NavigationContent`
1190
- - Renamed `NestingTransitionProvider` to `NestableNavigationContent`
1191
- - `NestableNavigationContent` does not need to be wrapped by a `MainSection`
1192
- - Renamed `HeaderSection` to `NavigationHeader`
1193
- - Renamed `Footer` to `NavigationFooter`
1204
+ - Renamed `MainSection` to `NavigationContent`
1205
+ - Renamed `NestingTransitionProvider` to `NestableNavigationContent`
1206
+ - `NestableNavigationContent` does not need to be wrapped by a `MainSection`
1207
+ - Renamed `HeaderSection` to `NavigationHeader`
1208
+ - Renamed `Footer` to `NavigationFooter`
1194
1209
 
1195
- Improve behaviour of scrollabe sections:
1210
+ Improve behaviour of scrollabe sections:
1196
1211
 
1197
- - Fixes a bug where different views shared the same scrollable section causing unexpected
1198
- jumps on some unnesting interactions
1199
- - `ScrollableSection` now shows an overflow indicator when items are scrolled off the top
1200
- border
1201
- - Fixes a bug where the Go Back component could scroll off the top in some cases-
1202
- [minor][d752f27427](https://bitbucket.org/atlassian/atlassian-frontend/commits/d752f27427):
1212
+ - Fixes a bug where different views shared the same scrollable section causing unexpected jumps on
1213
+ some unnesting interactions
1214
+ - `ScrollableSection` now shows an overflow indicator when items are scrolled off the top border
1215
+ - Fixes a bug where the Go Back component could scroll off the top in some cases-
1216
+ [minor][d752f27427](https://bitbucket.org/atlassian/atlassian-frontend/commits/d752f27427):
1203
1217
 
1204
- API changes and design changes for side-navigation
1218
+ API changes and design changes for side-navigation
1205
1219
 
1206
- - **BREAKING**: `SectionHeader` has been renamed to `SectionHeading`
1207
- - `SIDEBAR_DEFAULT_WIDTH` has been exported
1208
- - `Item` has been removed and replaced with `CustomItem`, `ButtonItem`, `LinkItem` which are
1209
- thin wrappers around their `@atlaskit/menu` counterparts
1210
- - All exported components now have sensible default styles applied
1211
- - A `GoBackItem` has been exported
1212
- - `testId` props have been added to more components with `side-navigation`
1213
- - `CustomItem`, `ButtonItem` and `LinkItem` themselves have a `cssFn` prop exposed which will
1214
- allow custom styles to be applied and combined with side-navigation defaults
1215
- - `Heading` and `Footer` have been updated to allow consumers to pass in their own custom
1216
- components
1217
- - Rich examples have been updated for composing your own navigations with RBD etc.-
1218
- [minor][08fa439ec7](https://bitbucket.org/atlassian/atlassian-frontend/commits/08fa439ec7):
1220
+ - **BREAKING**: `SectionHeader` has been renamed to `SectionHeading`
1221
+ - `SIDEBAR_DEFAULT_WIDTH` has been exported
1222
+ - `Item` has been removed and replaced with `CustomItem`, `ButtonItem`, `LinkItem` which are thin
1223
+ wrappers around their `@atlaskit/menu` counterparts
1224
+ - All exported components now have sensible default styles applied
1225
+ - A `GoBackItem` has been exported
1226
+ - `testId` props have been added to more components with `side-navigation`
1227
+ - `CustomItem`, `ButtonItem` and `LinkItem` themselves have a `cssFn` prop exposed which will
1228
+ allow custom styles to be applied and combined with side-navigation defaults
1229
+ - `Heading` and `Footer` have been updated to allow consumers to pass in their own custom
1230
+ components
1231
+ - Rich examples have been updated for composing your own navigations with RBD etc.-
1232
+ [minor][08fa439ec7](https://bitbucket.org/atlassian/atlassian-frontend/commits/08fa439ec7):
1219
1233
 
1220
- **BREAKING**: `id` prop is now required on NestingItems
1234
+ **BREAKING**: `id` prop is now required on NestingItems
1221
1235
 
1222
- The back button in nested views can now be customised
1236
+ The back button in nested views can now be customised
1223
1237
 
1224
- - By default an English `Go Back` button will be shown
1225
- - Use `renderDefaultBackButton` on the `NestableNavigationContent` to set a new default
1226
- - Use `renderBackButton` on each `NestingItem` to specifically set a back trigger for exiting
1227
- the view it controls
1238
+ - By default an English `Go Back` button will be shown
1239
+ - Use `renderDefaultBackButton` on the `NestableNavigationContent` to set a new default
1240
+ - Use `renderBackButton` on each `NestingItem` to specifically set a back trigger for exiting the
1241
+ view it controls
1228
1242
 
1229
- The link form of nested views can now be customised
1243
+ The link form of nested views can now be customised
1230
1244
 
1231
- - Use `customItemComponent` to pass in a functional/class component that adds extra behaviour
1232
- around the link (see @atlaskit/menu for examples on how to configure CustomItems)
1245
+ - Use `customItemComponent` to pass in a functional/class component that adds extra behaviour
1246
+ around the link (see @atlaskit/menu for examples on how to configure CustomItems)
1233
1247
 
1234
1248
  ### Patch Changes
1235
1249
 
1236
- - [patch][babae63a7b](https://bitbucket.org/atlassian/atlassian-frontend/commits/babae63a7b):
1250
+ - [patch][babae63a7b](https://bitbucket.org/atlassian/atlassian-frontend/commits/babae63a7b):
1237
1251
 
1238
- - Refactors nested navigation implementation
1239
- - Now selects `NestingItem` & `GoBackItem` when it is exiting
1240
- - Fixes double clicking a `NestingItem` and `GoBackItem` resulting in an unwanted double
1241
- navigation
1242
- - Fixes `NestingItem` not calling back on click
1243
- - Adds optional `id` prop to `NestingItem`- Updated dependencies
1244
- [1f9c4f974a](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f9c4f974a):
1252
+ - Refactors nested navigation implementation
1253
+ - Now selects `NestingItem` & `GoBackItem` when it is exiting
1254
+ - Fixes double clicking a `NestingItem` and `GoBackItem` resulting in an unwanted double
1255
+ navigation
1256
+ - Fixes `NestingItem` not calling back on click
1257
+ - Adds optional `id` prop to `NestingItem`- Updated dependencies
1258
+ [1f9c4f974a](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f9c4f974a):
1245
1259
 
1246
- - Updated dependencies
1247
- [b80c88fd26](https://bitbucket.org/atlassian/atlassian-frontend/commits/b80c88fd26):
1248
- - Updated dependencies
1249
- [9ec1606d00](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ec1606d00):
1250
- - Updated dependencies
1251
- [0603860c07](https://bitbucket.org/atlassian/atlassian-frontend/commits/0603860c07):
1252
- - Updated dependencies
1253
- [1b3069e06b](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b3069e06b):
1254
- - @atlaskit/menu@0.2.7
1255
- - @atlaskit/atlassian-navigation@0.9.6
1256
- - @atlaskit/icon@20.0.2
1260
+ - Updated dependencies
1261
+ [b80c88fd26](https://bitbucket.org/atlassian/atlassian-frontend/commits/b80c88fd26):
1262
+ - Updated dependencies
1263
+ [9ec1606d00](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ec1606d00):
1264
+ - Updated dependencies
1265
+ [0603860c07](https://bitbucket.org/atlassian/atlassian-frontend/commits/0603860c07):
1266
+ - Updated dependencies
1267
+ [1b3069e06b](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b3069e06b):
1268
+ - @atlaskit/menu@0.2.7
1269
+ - @atlaskit/atlassian-navigation@0.9.6
1270
+ - @atlaskit/icon@20.0.2
1257
1271
 
1258
1272
  ## 0.0.4
1259
1273
 
1260
1274
  ### Patch Changes
1261
1275
 
1262
- - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1276
+ - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1263
1277
 
1264
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1265
- [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1278
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
1279
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
1266
1280
 
1267
- - @atlaskit/docs@8.3.2
1268
- - @atlaskit/icon@20.0.1
1269
- - @atlaskit/menu@0.2.6
1270
- - @atlaskit/theme@9.5.1
1271
- - @atlaskit/motion@0.2.2
1281
+ - @atlaskit/docs@8.3.2
1282
+ - @atlaskit/icon@20.0.1
1283
+ - @atlaskit/menu@0.2.6
1284
+ - @atlaskit/theme@9.5.1
1285
+ - @atlaskit/motion@0.2.2
1272
1286
 
1273
1287
  ## 0.0.3
1274
1288
 
1275
1289
  ### Patch Changes
1276
1290
 
1277
- - [patch][f3433f2096](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3433f2096):
1291
+ - [patch][f3433f2096](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3433f2096):
1278
1292
 
1279
- `NestingItem` now has an extra prop `isInitiallyOpen` that allows the side-navigation to
1280
- initially render a particular nested view
1293
+ `NestingItem` now has an extra prop `isInitiallyOpen` that allows the side-navigation to initially
1294
+ render a particular nested view
1281
1295
 
1282
- - To select a particular sidebar view to be rendered initially the `isInitiallyOpen` prop must
1283
- be set on all parent `NestingItem`s in the navigation tree-
1284
- [patch][a806cde423](https://bitbucket.org/atlassian/atlassian-frontend/commits/a806cde423):
1296
+ - To select a particular sidebar view to be rendered initially the `isInitiallyOpen` prop must be
1297
+ set on all parent `NestingItem`s in the navigation tree-
1298
+ [patch][a806cde423](https://bitbucket.org/atlassian/atlassian-frontend/commits/a806cde423):
1285
1299
 
1286
- Iterative updates to side-navigation:
1300
+ Iterative updates to side-navigation:
1287
1301
 
1288
- - Go Back link in nested views now sticks to the top of the scrollable area
1289
- - Removed broken css styles
1290
- - Implemented sliding transitions rather than fades- Updated dependencies
1291
- [4ed951b8d8](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ed951b8d8):
1302
+ - Go Back link in nested views now sticks to the top of the scrollable area
1303
+ - Removed broken css styles
1304
+ - Implemented sliding transitions rather than fades- Updated dependencies
1305
+ [4ed951b8d8](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ed951b8d8):
1292
1306
 
1293
- - Updated dependencies
1294
- [e0e91e02a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0e91e02a6):
1295
- - Updated dependencies
1296
- [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1297
- - Updated dependencies
1298
- [166d7b1626](https://bitbucket.org/atlassian/atlassian-frontend/commits/166d7b1626):
1299
- - @atlaskit/menu@0.2.4
1300
- - @atlaskit/icon@20.0.0
1301
- - @atlaskit/motion@0.2.1
1302
- - @atlaskit/docs@8.3.1
1307
+ - Updated dependencies
1308
+ [e0e91e02a6](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0e91e02a6):
1309
+ - Updated dependencies
1310
+ [c0102a3ea2](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0102a3ea2):
1311
+ - Updated dependencies
1312
+ [166d7b1626](https://bitbucket.org/atlassian/atlassian-frontend/commits/166d7b1626):
1313
+ - @atlaskit/menu@0.2.4
1314
+ - @atlaskit/icon@20.0.0
1315
+ - @atlaskit/motion@0.2.1
1316
+ - @atlaskit/docs@8.3.1
1303
1317
 
1304
1318
  ## 0.0.2
1305
1319
 
1306
1320
  ### Patch Changes
1307
1321
 
1308
- - [patch][0e6929fbb9](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e6929fbb9):
1322
+ - [patch][0e6929fbb9](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e6929fbb9):
1309
1323
 
1310
- Fixes a broken internal omport-
1311
- [patch][146ca7139a](https://bitbucket.org/atlassian/atlassian-frontend/commits/146ca7139a):
1324
+ Fixes a broken internal omport-
1325
+ [patch][146ca7139a](https://bitbucket.org/atlassian/atlassian-frontend/commits/146ca7139a):
1312
1326
 
1313
- Bump package to enable branch deploys- Updated dependencies
1314
- [d2b8166208](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2b8166208):
1327
+ Bump package to enable branch deploys- Updated dependencies
1328
+ [d2b8166208](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2b8166208):
1315
1329
 
1316
- - Updated dependencies
1317
- [1d72045e6b](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d72045e6b):
1318
- - @atlaskit/docs@8.3.0
1319
- - @atlaskit/motion@0.2.0
1330
+ - Updated dependencies
1331
+ [1d72045e6b](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d72045e6b):
1332
+ - @atlaskit/docs@8.3.0
1333
+ - @atlaskit/motion@0.2.0