@atlaskit/page-layout 1.7.13 → 1.8.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 (51) hide show
  1. package/CHANGELOG.md +85 -79
  2. package/dist/cjs/common/constants.js +49 -98
  3. package/dist/cjs/common/hooks/use-is-sidebar-collapsing.js +1 -2
  4. package/dist/cjs/common/hooks/use-is-sidebar-dragging.js +1 -2
  5. package/dist/cjs/common/safe-local-storage.js +1 -2
  6. package/dist/cjs/common/utils.js +10 -19
  7. package/dist/cjs/components/resize-control/grab-area.js +30 -17
  8. package/dist/cjs/components/resize-control/index.js +13 -12
  9. package/dist/cjs/components/resize-control/resize-button.js +1 -2
  10. package/dist/cjs/components/resize-control/shadow.js +1 -2
  11. package/dist/cjs/components/skip-links/skip-link-components.js +3 -5
  12. package/dist/cjs/components/skip-links/use-custom-skip-link.js +2 -3
  13. package/dist/cjs/components/slots/banner-slot.js +1 -2
  14. package/dist/cjs/components/slots/content.js +1 -2
  15. package/dist/cjs/components/slots/internal/left-sidebar-inner.js +1 -2
  16. package/dist/cjs/components/slots/internal/left-sidebar-outer.js +1 -2
  17. package/dist/cjs/components/slots/internal/resizable-children-wrapper.js +1 -2
  18. package/dist/cjs/components/slots/internal/slot-focus-ring.js +1 -2
  19. package/dist/cjs/components/slots/left-panel.js +1 -2
  20. package/dist/cjs/components/slots/left-sidebar-without-resize.js +1 -2
  21. package/dist/cjs/components/slots/left-sidebar.js +5 -4
  22. package/dist/cjs/components/slots/main.js +1 -2
  23. package/dist/cjs/components/slots/page-layout.js +1 -2
  24. package/dist/cjs/components/slots/right-panel.js +1 -2
  25. package/dist/cjs/components/slots/right-sidebar.js +1 -2
  26. package/dist/cjs/components/slots/slot-dimensions.js +2 -3
  27. package/dist/cjs/components/slots/top-navigation.js +1 -2
  28. package/dist/cjs/controllers/sidebar-resize-context.js +4 -7
  29. package/dist/cjs/controllers/sidebar-resize-controller.js +9 -10
  30. package/dist/cjs/controllers/skip-link-context.js +4 -7
  31. package/dist/cjs/controllers/skip-link-controller.js +2 -3
  32. package/dist/cjs/controllers/use-page-layout-grid.js +1 -2
  33. package/dist/cjs/controllers/use-update-css-vars.js +1 -2
  34. package/dist/es2019/components/resize-control/grab-area.js +31 -18
  35. package/dist/es2019/components/resize-control/index.js +7 -6
  36. package/dist/es2019/components/slots/left-sidebar.js +2 -0
  37. package/dist/esm/components/resize-control/grab-area.js +30 -16
  38. package/dist/esm/components/resize-control/index.js +12 -10
  39. package/dist/esm/components/slots/left-sidebar.js +4 -2
  40. package/dist/esm/controllers/sidebar-resize-controller.js +7 -7
  41. package/dist/types/common/types.d.ts +10 -2
  42. package/dist/types/components/resize-control/grab-area.d.ts +3 -1
  43. package/dist/types/components/resize-control/index.d.ts +1 -1
  44. package/dist/types/components/resize-control/types.d.ts +1 -0
  45. package/dist/types-ts4.5/common/types.d.ts +10 -2
  46. package/dist/types-ts4.5/components/resize-control/grab-area.d.ts +3 -1
  47. package/dist/types-ts4.5/components/resize-control/index.d.ts +1 -1
  48. package/dist/types-ts4.5/components/resize-control/types.d.ts +1 -0
  49. package/package.json +9 -10
  50. package/report.api.md +1 -0
  51. package/tmp/api-report-tmp.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,40 +1,46 @@
1
1
  # @atlaskit/page-layout
2
2
 
3
+ ## 1.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#39166](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39166) [`fb049fdd01b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb049fdd01b) - [ux] DSP-12583 and DSP-12584 update examples to include missing resize/expandable labels fixed separator to use the valid slider role
8
+
3
9
  ## 1.7.13
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
13
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
8
14
 
9
15
  ## 1.7.12
10
16
 
11
17
  ### Patch Changes
12
18
 
13
- - [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
19
+ - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533) [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
14
20
 
15
21
  ## 1.7.11
16
22
 
17
23
  ### Patch Changes
18
24
 
19
- - [`edb659b9f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edb659b9f7b) - Reverts changes that added aria-hidden to key interactive navigational elements
25
+ - [#37193](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37193) [`edb659b9f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edb659b9f7b) - Reverts changes that added aria-hidden to key interactive navigational elements
20
26
 
21
27
  ## 1.7.10
22
28
 
23
29
  ### Patch Changes
24
30
 
25
- - [`6263a07010c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6263a07010c) - Still behind a feature flag, reduces the breakpoint at which the new mobile functionality for our left sidebar "flyout mode" in mobile is applied (reduced from ~1024px to ~768px).
31
+ - [#37327](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37327) [`6263a07010c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6263a07010c) - Still behind a feature flag, reduces the breakpoint at which the new mobile functionality for our left sidebar "flyout mode" in mobile is applied (reduced from ~1024px to ~768px).
26
32
 
27
33
  ## 1.7.9
28
34
 
29
35
  ### Patch Changes
30
36
 
31
- - [`55c42f7ce9d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55c42f7ce9d) - [ux] Add proper orientation to grab area.
37
+ - [#37247](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37247) [`55c42f7ce9d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55c42f7ce9d) - [ux] Add proper orientation to grab area.
32
38
 
33
39
  ## 1.7.8
34
40
 
35
41
  ### Patch Changes
36
42
 
37
- - [`6a33c4fd6b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a33c4fd6b6) - Removes unnecessary aria attribute from grab area in left sidebar.
43
+ - [#37126](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37126) [`6a33c4fd6b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a33c4fd6b6) - Removes unnecessary aria attribute from grab area in left sidebar.
38
44
 
39
45
  ## 1.7.7
40
46
 
@@ -52,7 +58,7 @@
52
58
 
53
59
  ### Patch Changes
54
60
 
55
- - [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
61
+ - [#35441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35441) [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
56
62
 
57
63
  ## 1.7.4
58
64
 
@@ -70,20 +76,20 @@
70
76
 
71
77
  ### Patch Changes
72
78
 
73
- - [`37131e3a8ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37131e3a8ea) - Uses the Alpha release of our responsive media helpers via either the public `media` export or the internal `UNSAFE_media` export.
79
+ - [#35149](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35149) [`37131e3a8ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37131e3a8ea) - Uses the Alpha release of our responsive media helpers via either the public `media` export or the internal `UNSAFE_media` export.
74
80
  - Updated dependencies
75
81
 
76
82
  ## 1.7.1
77
83
 
78
84
  ### Patch Changes
79
85
 
80
- - [`009e6a78811`](https://bitbucket.org/atlassian/atlassian-frontend/commits/009e6a78811) - Fixed dependency resolution issue with `@atlaskit/primitives`.
86
+ - [#35934](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35934) [`009e6a78811`](https://bitbucket.org/atlassian/atlassian-frontend/commits/009e6a78811) - Fixed dependency resolution issue with `@atlaskit/primitives`.
81
87
 
82
88
  ## 1.7.0
83
89
 
84
90
  ### Minor Changes
85
91
 
86
- - [`7be6f82bb0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7be6f82bb0d) - [ux] Behind tested behind a feature flag, we're testing new mobile functionality to keep our left sidebar in a "flyout" mode in mobile so navigation or content sits ontop of the main page content rather than crushing it.
92
+ - [#35270](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35270) [`7be6f82bb0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7be6f82bb0d) - [ux] Behind tested behind a feature flag, we're testing new mobile functionality to keep our left sidebar in a "flyout" mode in mobile so navigation or content sits ontop of the main page content rather than crushing it.
87
93
 
88
94
  This is designed to be SSR-compatible as it's primarily CSS-based with some user-event driven logic around mobile breakpoints that should not be inmpacted by SSR rendering (and should return the default desktop experience if such a state is achieved).
89
95
 
@@ -91,19 +97,19 @@
91
97
 
92
98
  ### Patch Changes
93
99
 
94
- - [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration work. The change is internal only and should not introduce any changes for the component consumers.
100
+ - [#33652](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33652) [`e7ea6832ad2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ea6832ad2) - Bans the use of React.FC/React.FunctionComponent type in ADS components as part of the React 18 migration work. The change is internal only and should not introduce any changes for the component consumers.
95
101
 
96
102
  ## 1.6.4
97
103
 
98
104
  ### Patch Changes
99
105
 
100
- - [`b1bdec7cce2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1bdec7cce2) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
106
+ - [#32935](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32935) [`b1bdec7cce2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1bdec7cce2) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
101
107
 
102
108
  ## 1.6.3
103
109
 
104
110
  ### Patch Changes
105
111
 
106
- - [`4bbc131de00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bbc131de00) - #### Fix: Resizing pages with `<iframe>`s
112
+ - [#34408](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34408) [`4bbc131de00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bbc131de00) - #### Fix: Resizing pages with `<iframe>`s
107
113
 
108
114
  Pages that contain `<iframe>` elements will now have a smoother resizing experience. `<iframe>` elements consume user events (eg `mousemove`) when the user is over the top of them. This is problematic for resizing as we need to have the latest user pointer movements to resize the sidebar. Now, while a resize is happening, `pointer-events` are blocked on `<iframe>` elements to prevent the `<iframe>` consuming user events.
109
115
 
@@ -123,19 +129,19 @@
123
129
 
124
130
  ### Patch Changes
125
131
 
126
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
132
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
127
133
 
128
134
  ## 1.6.1
129
135
 
130
136
  ### Patch Changes
131
137
 
132
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
138
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
133
139
 
134
140
  ## 1.6.0
135
141
 
136
142
  ### Minor Changes
137
143
 
138
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
144
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
139
145
 
140
146
  ### Patch Changes
141
147
 
@@ -145,7 +151,7 @@
145
151
 
146
152
  ### Minor Changes
147
153
 
148
- - [`2a9f6f800ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a9f6f800ef) - **Fixes**
154
+ - [#32575](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32575) [`2a9f6f800ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a9f6f800ef) - **Fixes**
149
155
 
150
156
  - `onLeftSidebarExpand` is no longer called when the sidebar is already open. `onLeftSidebarExpand` oculd previously be incorrectly called if a user resized an expanded sidebar to slightly smaller than the default sidebar width, or when the user cancelled a sidebar resizing operation with the `"Escape"` key
151
157
  - the latest provided `onLeftSidebarCollapse` and `onLeftSidebarExpand` functions are now called when collapsing / expanding respectively. Previously, only the initial `onLeftSidebarCollapse` and `onLeftSidebarExpand` were called (due to a stale closure)
@@ -165,7 +171,7 @@
165
171
 
166
172
  ### Minor Changes
167
173
 
168
- - [`955ee3ea8fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/955ee3ea8fe) - [ux] **fix**: if a `"mousedown"`, `"click"`, `"resize"` or `"visibilitychange"` event occurs while the sidebar is being resized, then the resizing operation will end
174
+ - [#32516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32516) [`955ee3ea8fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/955ee3ea8fe) - [ux] **fix**: if a `"mousedown"`, `"click"`, `"resize"` or `"visibilitychange"` event occurs while the sidebar is being resized, then the resizing operation will end
169
175
 
170
176
  [ux] **new**: if a user presses the `"Escape"` key while the sidebar is being resized, then the resizing operation will end
171
177
 
@@ -173,7 +179,7 @@
173
179
 
174
180
  ### Patch Changes
175
181
 
176
- - [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
182
+ - [#31206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31206) [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
177
183
  - Updated dependencies
178
184
 
179
185
  ## 1.3.9
@@ -186,13 +192,13 @@
186
192
 
187
193
  ### Patch Changes
188
194
 
189
- - [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
195
+ - [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227) [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
190
196
 
191
197
  ## 1.3.7
192
198
 
193
199
  ### Patch Changes
194
200
 
195
- - [`7f3ff7f0081`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f3ff7f0081) - [ux] Enhance accessibility of header for skip links component
201
+ - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374) [`7f3ff7f0081`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f3ff7f0081) - [ux] Enhance accessibility of header for skip links component
196
202
 
197
203
  ## 1.3.6
198
204
 
@@ -216,26 +222,26 @@
216
222
 
217
223
  ### Patch Changes
218
224
 
219
- - [`9827dcb82b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9827dcb82b8) - No-op change to introduce spacing tokens to design system components.
225
+ - [#26303](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26303) [`9827dcb82b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9827dcb82b8) - No-op change to introduce spacing tokens to design system components.
220
226
 
221
227
  ## 1.3.2
222
228
 
223
229
  ### Patch Changes
224
230
 
225
- - [`522a27e6119`](https://bitbucket.org/atlassian/atlassian-frontend/commits/522a27e6119) - Remove `isOpen` prop from @atlaskit/banner, it is now open by default.
231
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`522a27e6119`](https://bitbucket.org/atlassian/atlassian-frontend/commits/522a27e6119) - Remove `isOpen` prop from @atlaskit/banner, it is now open by default.
226
232
  - Updated dependencies
227
233
 
228
234
  ## 1.3.1
229
235
 
230
236
  ### Patch Changes
231
237
 
232
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
238
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
233
239
 
234
240
  ## 1.3.0
235
241
 
236
242
  ### Minor Changes
237
243
 
238
- - [`3de296cfd19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3de296cfd19) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
244
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`3de296cfd19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3de296cfd19) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
239
245
 
240
246
  ### Patch Changes
241
247
 
@@ -245,32 +251,32 @@
245
251
 
246
252
  ### Patch Changes
247
253
 
248
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
254
+ - [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
249
255
 
250
256
  ## 1.2.7
251
257
 
252
258
  ### Patch Changes
253
259
 
254
- - [`26b3e978512`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26b3e978512) - Internal code change turning on new linting rules.
260
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`26b3e978512`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26b3e978512) - Internal code change turning on new linting rules.
255
261
  - Updated dependencies
256
262
 
257
263
  ## 1.2.6
258
264
 
259
265
  ### Patch Changes
260
266
 
261
- - [`8a5bdb3c844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a5bdb3c844) - Upgrading internal dependency (bind-event-listener) for improved internal types
267
+ - [#22614](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22614) [`8a5bdb3c844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a5bdb3c844) - Upgrading internal dependency (bind-event-listener) for improved internal types
262
268
 
263
269
  ## 1.2.5
264
270
 
265
271
  ### Patch Changes
266
272
 
267
- - [`e4b612d1c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4b612d1c48) - Internal migration to bind-event-listener for safer DOM Event cleanup
273
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`e4b612d1c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4b612d1c48) - Internal migration to bind-event-listener for safer DOM Event cleanup
268
274
 
269
275
  ## 1.2.4
270
276
 
271
277
  ### Patch Changes
272
278
 
273
- - [`ef9ecf15b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef9ecf15b36) - Calling `collapseLeftSidebar` while the sidebar is already collapsed no longer modifies the sidebar state. This prevents an invalid state that could occur if `collapseLeftSidebar` was called while the sidebar was in flyout.
279
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`ef9ecf15b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef9ecf15b36) - Calling `collapseLeftSidebar` while the sidebar is already collapsed no longer modifies the sidebar state. This prevents an invalid state that could occur if `collapseLeftSidebar` was called while the sidebar was in flyout.
274
280
 
275
281
  ## 1.2.3
276
282
 
@@ -282,7 +288,7 @@
282
288
 
283
289
  ### Patch Changes
284
290
 
285
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
291
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
286
292
 
287
293
  ## 1.2.1
288
294
 
@@ -294,7 +300,7 @@
294
300
 
295
301
  ### Minor Changes
296
302
 
297
- - [`21534d3647e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21534d3647e) - [ux] Update theme colours and remove shadow from resize bar
303
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`21534d3647e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21534d3647e) - [ux] Update theme colours and remove shadow from resize bar
298
304
 
299
305
  ### Patch Changes
300
306
 
@@ -308,7 +314,7 @@
308
314
 
309
315
  ### Minor Changes
310
316
 
311
- - [`567a96da90e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/567a96da90e) - [ux] Instrumented page-layout with the new theming package, `@atlaskit/tokens`. New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
317
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`567a96da90e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/567a96da90e) - [ux] Instrumented page-layout with the new theming package, `@atlaskit/tokens`. New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
312
318
 
313
319
  ### Patch Changes
314
320
 
@@ -318,13 +324,13 @@
318
324
 
319
325
  ### Patch Changes
320
326
 
321
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Bump raf-schd to latest (4.0.3), including better TS typings.
327
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Bump raf-schd to latest (4.0.3), including better TS typings.
322
328
 
323
329
  ## 1.0.6
324
330
 
325
331
  ### Patch Changes
326
332
 
327
- - [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) - Defaults native button usage to type="button" to prevent unintended submittig of forms.
333
+ - [#15531](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15531) [`192d35cfdbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/192d35cfdbd) - Defaults native button usage to type="button" to prevent unintended submittig of forms.
328
334
 
329
335
  ## 1.0.5
330
336
 
@@ -336,32 +342,32 @@
336
342
 
337
343
  ### Patch Changes
338
344
 
339
- - [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
345
+ - [#12880](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12880) [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
340
346
 
341
347
  ## 1.0.3
342
348
 
343
349
  ### Patch Changes
344
350
 
345
- - [`f9cb2bcf689`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cb2bcf689) - SkipLink order is now stable after remounting slots.
351
+ - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`f9cb2bcf689`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9cb2bcf689) - SkipLink order is now stable after remounting slots.
346
352
  - [`0eb13e8b2d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0eb13e8b2d8) - Fix "Cannot update a component from inside the function body of a different component" warnings related to skip links.
347
353
 
348
354
  ## 1.0.2
349
355
 
350
356
  ### Patch Changes
351
357
 
352
- - [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates to development dependency `storybook-addon-performance`
358
+ - [#12167](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12167) [`d6f7ff383cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f7ff383cf) - Updates to development dependency `storybook-addon-performance`
353
359
 
354
360
  ## 1.0.1
355
361
 
356
362
  ### Patch Changes
357
363
 
358
- - [`7d0905b4e81`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d0905b4e81) - Fix bug where right sidebar styles were being calculated with the wrong variable.
364
+ - [#9288](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9288) [`7d0905b4e81`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d0905b4e81) - Fix bug where right sidebar styles were being calculated with the wrong variable.
359
365
 
360
366
  ## 1.0.0
361
367
 
362
368
  ### Major Changes
363
369
 
364
- - [`7727f723965`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7727f723965) - Internal change to the release model from continous to scheduled release. There are **NO API CHANGES** in this release.
370
+ - [#10609](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10609) [`7727f723965`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7727f723965) - Internal change to the release model from continous to scheduled release. There are **NO API CHANGES** in this release.
365
371
 
366
372
  ### Patch Changes
367
373
 
@@ -371,7 +377,7 @@
371
377
 
372
378
  ### Minor Changes
373
379
 
374
- - [`13d7f548f14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13d7f548f14) - The `usePageLayoutResize` hook no longer exposes the internal `setLeftSidebarState` method.
380
+ - [#10410](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10410) [`13d7f548f14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/13d7f548f14) - The `usePageLayoutResize` hook no longer exposes the internal `setLeftSidebarState` method.
375
381
 
376
382
  ### Patch Changes
377
383
 
@@ -381,49 +387,49 @@
381
387
 
382
388
  ### Patch Changes
383
389
 
384
- - [`6ae23940b27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ae23940b27) - Remove css-vars-ponyfill from page layout to drop IE10/11 support and reduce the bundle size
390
+ - [#8409](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8409) [`6ae23940b27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ae23940b27) - Remove css-vars-ponyfill from page layout to drop IE10/11 support and reduce the bundle size
385
391
 
386
392
  ## 0.10.13
387
393
 
388
394
  ### Patch Changes
389
395
 
390
- - [`b7c62b4cbb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7c62b4cbb7) - Fix Page Layout throwing errors in SSR
396
+ - [#8406](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8406) [`b7c62b4cbb7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7c62b4cbb7) - Fix Page Layout throwing errors in SSR
391
397
 
392
398
  ## 0.10.12
393
399
 
394
400
  ### Patch Changes
395
401
 
396
- - [`952019cfd39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/952019cfd39) - Removed extraneous/unnecessary dependencies for design system components.
402
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`952019cfd39`](https://bitbucket.org/atlassian/atlassian-frontend/commits/952019cfd39) - Removed extraneous/unnecessary dependencies for design system components.
397
403
 
398
404
  ## 0.10.11
399
405
 
400
406
  ### Patch Changes
401
407
 
402
- - [`e6c982bb8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6c982bb8f) - Performance improvement. Simplifies a layout calculation to update less frequently.
408
+ - [#6601](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6601) [`e6c982bb8f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6c982bb8f) - Performance improvement. Simplifies a layout calculation to update less frequently.
403
409
 
404
410
  ## 0.10.10
405
411
 
406
412
  ### Patch Changes
407
413
 
408
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
414
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
409
415
 
410
416
  ## 0.10.9
411
417
 
412
418
  ### Patch Changes
413
419
 
414
- - [`abfb2146c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abfb2146c6) - [ux] Earlier left sidebar was not expanding on resize button click, Now this issue has been fixed.
420
+ - [#5744](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5744) [`abfb2146c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abfb2146c6) - [ux] Earlier left sidebar was not expanding on resize button click, Now this issue has been fixed.
415
421
 
416
422
  ## 0.10.8
417
423
 
418
424
  ### Patch Changes
419
425
 
420
- - [`1757dec0ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1757dec0ee) - [ux] Fixed bug where skip link menu was moving on scroll. Skip link menu is now using fixed positioning instead of absolute
426
+ - [#5761](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5761) [`1757dec0ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1757dec0ee) - [ux] Fixed bug where skip link menu was moving on scroll. Skip link menu is now using fixed positioning instead of absolute
421
427
 
422
428
  ## 0.10.7
423
429
 
424
430
  ### Patch Changes
425
431
 
426
- - [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
432
+ - [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
427
433
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
428
434
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
429
435
 
@@ -431,19 +437,19 @@
431
437
 
432
438
  ### Patch Changes
433
439
 
434
- - [`d540cd1042`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d540cd1042) - [ux] Moving cursor away from current browser was causing side nav expand unexpectedly. This issue has been fixed now and the flyout will close as mouse will leave browser.
440
+ - [#5575](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5575) [`d540cd1042`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d540cd1042) - [ux] Moving cursor away from current browser was causing side nav expand unexpectedly. This issue has been fixed now and the flyout will close as mouse will leave browser.
435
441
 
436
442
  ## 0.10.5
437
443
 
438
444
  ### Patch Changes
439
445
 
440
- - [`2c735227f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c735227f9) - Fix resize callback events from being called more than once on mount
446
+ - [#5334](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5334) [`2c735227f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c735227f9) - Fix resize callback events from being called more than once on mount
441
447
 
442
448
  ## 0.10.4
443
449
 
444
450
  ### Patch Changes
445
451
 
446
- - [`b4fd71e4a2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4fd71e4a2) - Fixes the visiblity of left sidebar contents when rendered in SSR mode
452
+ - [#5389](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5389) [`b4fd71e4a2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4fd71e4a2) - Fixes the visiblity of left sidebar contents when rendered in SSR mode
447
453
 
448
454
  ## 0.10.3
449
455
 
@@ -455,7 +461,7 @@
455
461
 
456
462
  ### Patch Changes
457
463
 
458
- - [`4cf354b500`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cf354b500) - Adds the ability to register custom skip links to be displayed in the `PageLayout` skip link menu. Now if you have an element that isn't a slot of the `PageLayout` component, you can still provide a helpful and accessible way to jump straight to it!
464
+ - [#4765](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4765) [`4cf354b500`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cf354b500) - Adds the ability to register custom skip links to be displayed in the `PageLayout` skip link menu. Now if you have an element that isn't a slot of the `PageLayout` component, you can still provide a helpful and accessible way to jump straight to it!
459
465
 
460
466
  Import the new `useCustomSkipLink` hook and pass in the taget `id` and a `skipLinkTitle` and it will add a new link to the element with a matching `id`, no matter where it is in the document. You can also choose what position the link will show up in the menu by using the optional `listIndex` prop.
461
467
 
@@ -463,25 +469,25 @@
463
469
 
464
470
  ### Patch Changes
465
471
 
466
- - [`ec3df667ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec3df667ed) - Pass left sidebar state to onResizeStart, onResizeEnd, onLeftSidebarExpand nd onLeftSidebarCollapse
472
+ - [#5239](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5239) [`ec3df667ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec3df667ed) - Pass left sidebar state to onResizeStart, onResizeEnd, onLeftSidebarExpand nd onLeftSidebarCollapse
467
473
 
468
474
  ## 0.10.0
469
475
 
470
476
  ### Minor Changes
471
477
 
472
- - [`9db4bdaa00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9db4bdaa00) - **BREAKING** Changes the way css variables were previously exported. They are now exported with proper fallback values. Refer to the [CSS variables](page-layout/docs/css-variables) docs to see how to use them.
478
+ - [#4934](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4934) [`9db4bdaa00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9db4bdaa00) - **BREAKING** Changes the way css variables were previously exported. They are now exported with proper fallback values. Refer to the [CSS variables](page-layout/docs/css-variables) docs to see how to use them.
473
479
 
474
480
  ## 0.9.4
475
481
 
476
482
  ### Patch Changes
477
483
 
478
- - [`58413f42ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58413f42ab) - Left side bar button disbaled
484
+ - [#4706](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4706) [`58413f42ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58413f42ab) - Left side bar button disbaled
479
485
 
480
486
  ## 0.9.3
481
487
 
482
488
  ### Patch Changes
483
489
 
484
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
490
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
485
491
 
486
492
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
487
493
  to prevent duplicates of tslib being bundled.
@@ -490,57 +496,57 @@
490
496
 
491
497
  ### Patch Changes
492
498
 
493
- - [`14d289a7ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14d289a7ee) - Fix LeftSidebar flyout not closing sometimes when not in hover state
499
+ - [#4051](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4051) [`14d289a7ee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14d289a7ee) - Fix LeftSidebar flyout not closing sometimes when not in hover state
494
500
 
495
501
  ## 0.9.1
496
502
 
497
503
  ### Patch Changes
498
504
 
499
- - [`0d72fedadb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d72fedadb) - Left-sidebar fixed content will occupy 100% height"
505
+ - [#3703](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3703) [`0d72fedadb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d72fedadb) - Left-sidebar fixed content will occupy 100% height"
500
506
 
501
507
  ## 0.9.0
502
508
 
503
509
  ### Minor Changes
504
510
 
505
- - [`8fb2f0ac0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fb2f0ac0e) - **BREAKING** - The `width` prop now controls the width when LeftSidebar is mounted and overrides leftSidebarWidth value in localStorage.
511
+ - [#3697](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3697) [`8fb2f0ac0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fb2f0ac0e) - **BREAKING** - The `width` prop now controls the width when LeftSidebar is mounted and overrides leftSidebarWidth value in localStorage.
506
512
  Also added `collapsedState` prop to control expanded/collapsed state when LeftSidebar is mounted.
507
513
 
508
514
  ## 0.8.6
509
515
 
510
516
  ### Patch Changes
511
517
 
512
- - [`859d71f610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/859d71f610) - Replaces internal usage of Global component from emotion with a style tag
518
+ - [#3599](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3599) [`859d71f610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/859d71f610) - Replaces internal usage of Global component from emotion with a style tag
513
519
 
514
520
  ## 0.8.5
515
521
 
516
522
  ### Patch Changes
517
523
 
518
- - [`3305a0494b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3305a0494b) - Added resizing state in left-sidebar - can be used to stop keyboard resize temporarily
524
+ - [#3557](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3557) [`3305a0494b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3305a0494b) - Added resizing state in left-sidebar - can be used to stop keyboard resize temporarily
519
525
 
520
526
  ## 0.8.4
521
527
 
522
528
  ### Patch Changes
523
529
 
524
- - [`c319029742`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c319029742) - All page-layout slots will now have data attributes
530
+ - [#3538](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3538) [`c319029742`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c319029742) - All page-layout slots will now have data attributes
525
531
 
526
532
  ## 0.8.3
527
533
 
528
534
  ### Patch Changes
529
535
 
530
- - [`4d74245d2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d74245d2b) - The left sidebar now has a minimium width of 240px when being resized.
536
+ - [#3324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3324) [`4d74245d2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d74245d2b) - The left sidebar now has a minimium width of 240px when being resized.
531
537
  - [`404a32df15`](https://bitbucket.org/atlassian/atlassian-frontend/commits/404a32df15) - The left sidebar now has a minimium width of 240px when being resized.
532
538
 
533
539
  ## 0.8.2
534
540
 
535
541
  ### Patch Changes
536
542
 
537
- - [`0c532edf6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c532edf6e) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
543
+ - [#3226](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3226) [`0c532edf6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c532edf6e) - Use the 'lodash' package instead of single-function 'lodash.\*' packages
538
544
 
539
545
  ## 0.8.1
540
546
 
541
547
  ### Patch Changes
542
548
 
543
- - [`a05fe35b29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a05fe35b29) - Side navigation now supports being able to resize the sidebar with your keyboard!
549
+ - [#3422](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3422) [`a05fe35b29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a05fe35b29) - Side navigation now supports being able to resize the sidebar with your keyboard!
544
550
  Simply focus onto the grab area and then use your arrow keys to resize.
545
551
  Use the `resizeGrabAreaLabel` prop to describe what happens when interacting with it.
546
552
 
@@ -548,7 +554,7 @@
548
554
 
549
555
  ### Minor Changes
550
556
 
551
- - [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
557
+ - [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
552
558
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
553
559
 
554
560
  ### Patch Changes
@@ -559,7 +565,7 @@
559
565
 
560
566
  ### Minor Changes
561
567
 
562
- - [`45b6bc10a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/45b6bc10a8) - Renames i18n prop to skipLinksLabel which is now a string. This prop is used as the title of the skip links container.
568
+ - [#3274](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3274) [`45b6bc10a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/45b6bc10a8) - Renames i18n prop to skipLinksLabel which is now a string. This prop is used as the title of the skip links container.
563
569
 
564
570
  ### Patch Changes
565
571
 
@@ -575,38 +581,38 @@
575
581
 
576
582
  ### Minor Changes
577
583
 
578
- - [`339a126382`](https://bitbucket.org/atlassian/atlassian-frontend/commits/339a126382) - Added skip links
584
+ - [#3059](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3059) [`339a126382`](https://bitbucket.org/atlassian/atlassian-frontend/commits/339a126382) - Added skip links
579
585
 
580
586
  ## 0.5.2
581
587
 
582
588
  ### Patch Changes
583
589
 
584
- - [`2e8933a6a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e8933a6a7) - Change the key for grid storage in localStorage
590
+ - [#3144](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3144) [`2e8933a6a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e8933a6a7) - Change the key for grid storage in localStorage
585
591
 
586
592
  ## 0.5.1
587
593
 
588
594
  ### Patch Changes
589
595
 
590
- - [`9fed259adc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fed259adc) - Adds a default value for dimension (height or width) props in Page Layout content slots.
596
+ - [#3088](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3088) [`9fed259adc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fed259adc) - Adds a default value for dimension (height or width) props in Page Layout content slots.
591
597
 
592
598
  ## 0.5.0
593
599
 
594
600
  ### Minor Changes
595
601
 
596
- - [`80fb46068b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80fb46068b) - Move all grid state into the ResizeSidebarControl.
602
+ - [#2924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2924) [`80fb46068b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/80fb46068b) - Move all grid state into the ResizeSidebarControl.
597
603
  **BREAKING** onExpand and onCollapse callbacks have been removed. They are now called _onLeftSidebarExpand_ and _onLeftSidebarCollapse_ and are passed to the PageLayout component.
598
604
 
599
605
  ## 0.4.2
600
606
 
601
607
  ### Patch Changes
602
608
 
603
- - [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
609
+ - [#2866](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2866) [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
604
610
 
605
611
  ## 0.4.1
606
612
 
607
613
  ### Patch Changes
608
614
 
609
- - [`c38dd3c0dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c38dd3c0dc) - Fixes a bug where LeftSidebar would go into an inconsistent state when toggled quickly.
615
+ - [#2738](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2738) [`c38dd3c0dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c38dd3c0dc) - Fixes a bug where LeftSidebar would go into an inconsistent state when toggled quickly.
610
616
  - [`6ab2c4b227`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ab2c4b227) - Make flyout behaviour more predictable
611
617
  - [`7d0af990e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d0af990e1) - Removes overflow auto so that position sticky in Main can work
612
618
 
@@ -614,7 +620,7 @@
614
620
 
615
621
  ### Minor Changes
616
622
 
617
- - [`bd8f1ab8b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd8f1ab8b6) - Changes the behaviour of flyout. It now expands to the preferred width of the user
623
+ - [#2650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2650) [`bd8f1ab8b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd8f1ab8b6) - Changes the behaviour of flyout. It now expands to the preferred width of the user
618
624
 
619
625
  ### Patch Changes
620
626
 
@@ -624,25 +630,25 @@
624
630
 
625
631
  ### Patch Changes
626
632
 
627
- - [`649f69b6d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/649f69b6d7) - Patch all packages that are used by confluence that have a broken es2019 dist
633
+ - [#2430](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2430) [`649f69b6d7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/649f69b6d7) - Patch all packages that are used by confluence that have a broken es2019 dist
628
634
 
629
635
  ## 0.3.2
630
636
 
631
637
  ### Patch Changes
632
638
 
633
- - [`89a5c1ded9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89a5c1ded9) - Fix issue with usePageLayoutResize hook not affecting sidebar
639
+ - [#2188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2188) [`89a5c1ded9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89a5c1ded9) - Fix issue with usePageLayoutResize hook not affecting sidebar
634
640
 
635
641
  ## 0.3.1
636
642
 
637
643
  ### Patch Changes
638
644
 
639
- - [`f5226d360b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5226d360b) - Add onFlyoutExpand and onFlyoutCollapse events. Internal refactor of flyout behaviour.- [`42e3b34fae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42e3b34fae) - _Breaking change_ Hides contents of LeftSidebar when collapsed
645
+ - [`f5226d360b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5226d360b) - Add onFlyoutExpand and onFlyoutCollapse events. Internal refactor of flyout behaviour.- [#2089](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2089) [`42e3b34fae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42e3b34fae) - _Breaking change_ Hides contents of LeftSidebar when collapsed
640
646
 
641
647
  ## 0.3.0
642
648
 
643
649
  ### Minor Changes
644
650
 
645
- - [`7fb3059a20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fb3059a20) - - _Breaking_ Makes LeftSidebar resizeable by default, does not export ResizeControl anymore.
651
+ - [#1906](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/1906) [`7fb3059a20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fb3059a20) - - _Breaking_ Makes LeftSidebar resizeable by default, does not export ResizeControl anymore.
646
652
  - Exports LeftSidebarWithoutResize.
647
653
  - Adds the following callback functions to LeftSidebar:
648
654
  - onExpand