@atlaskit/dropdown-menu 11.14.3 → 11.14.5

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 (49) hide show
  1. package/CHANGELOG.md +84 -72
  2. package/dist/cjs/checkbox/dropdown-item-checkbox-group.js +21 -6
  3. package/dist/cjs/checkbox/dropdown-item-checkbox.js +26 -25
  4. package/dist/cjs/dropdown-menu-item-group.js +1 -2
  5. package/dist/cjs/dropdown-menu-item.js +51 -31
  6. package/dist/cjs/dropdown-menu.js +46 -43
  7. package/dist/cjs/internal/components/checkbox-icon.js +1 -2
  8. package/dist/cjs/internal/components/context.js +4 -7
  9. package/dist/cjs/internal/components/focus-manager.js +2 -4
  10. package/dist/cjs/internal/components/menu-wrapper.js +2 -3
  11. package/dist/cjs/internal/components/radio-icon.js +1 -2
  12. package/dist/cjs/internal/context/checkbox-group-context.js +1 -2
  13. package/dist/cjs/internal/context/selection-store.js +2 -4
  14. package/dist/cjs/internal/hooks/use-checkbox-state.js +1 -2
  15. package/dist/cjs/internal/hooks/use-radio-state.js +1 -2
  16. package/dist/cjs/internal/hooks/use-register-item-with-focus-manager.js +1 -2
  17. package/dist/cjs/internal/utils/handle-focus.js +4 -4
  18. package/dist/cjs/internal/utils/is-voice-over-supported.js +1 -2
  19. package/dist/cjs/internal/utils/reset-options-in-group.js +1 -2
  20. package/dist/cjs/internal/utils/use-generated-id.js +1 -2
  21. package/dist/cjs/radio/dropdown-item-radio-group.js +22 -8
  22. package/dist/cjs/radio/dropdown-item-radio.js +28 -25
  23. package/dist/es2019/checkbox/dropdown-item-checkbox-group.js +21 -6
  24. package/dist/es2019/checkbox/dropdown-item-checkbox.js +23 -20
  25. package/dist/es2019/dropdown-menu-item.js +49 -27
  26. package/dist/es2019/dropdown-menu.js +33 -31
  27. package/dist/es2019/radio/dropdown-item-radio-group.js +21 -6
  28. package/dist/es2019/radio/dropdown-item-radio.js +25 -20
  29. package/dist/esm/checkbox/dropdown-item-checkbox-group.js +20 -4
  30. package/dist/esm/checkbox/dropdown-item-checkbox.js +25 -23
  31. package/dist/esm/dropdown-menu-item.js +50 -29
  32. package/dist/esm/dropdown-menu.js +44 -40
  33. package/dist/esm/internal/components/menu-wrapper.js +1 -1
  34. package/dist/esm/internal/utils/handle-focus.js +4 -4
  35. package/dist/esm/radio/dropdown-item-radio-group.js +20 -4
  36. package/dist/esm/radio/dropdown-item-radio.js +27 -23
  37. package/dist/types/checkbox/dropdown-item-checkbox-group.d.ts +1 -1
  38. package/dist/types/checkbox/dropdown-item-checkbox.d.ts +1 -1
  39. package/dist/types/dropdown-menu.d.ts +1 -1
  40. package/dist/types/radio/dropdown-item-radio-group.d.ts +1 -1
  41. package/dist/types/radio/dropdown-item-radio.d.ts +1 -1
  42. package/dist/types-ts4.5/checkbox/dropdown-item-checkbox-group.d.ts +1 -1
  43. package/dist/types-ts4.5/checkbox/dropdown-item-checkbox.d.ts +1 -1
  44. package/dist/types-ts4.5/dropdown-menu.d.ts +1 -1
  45. package/dist/types-ts4.5/radio/dropdown-item-radio-group.d.ts +1 -1
  46. package/dist/types-ts4.5/radio/dropdown-item-radio.d.ts +1 -1
  47. package/package.json +1 -1
  48. package/report.api.md +61 -13
  49. package/tmp/api-report-tmp.d.ts +5 -5
package/CHANGELOG.md CHANGED
@@ -1,29 +1,41 @@
1
1
  # @atlaskit/dropdown-menu
2
2
 
3
+ ## 11.14.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#41067](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41067) [`5a9ed67f8f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a9ed67f8f5) - Expand rest props for more explicit function data flow.
8
+
9
+ ## 11.14.4
10
+
11
+ ### Patch Changes
12
+
13
+ - [#39749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39749) [`e6b69f455c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b69f455c3) - Connect yarn changeset to packages, upgrade adf-schema
14
+
3
15
  ## 11.14.3
4
16
 
5
17
  ### Patch Changes
6
18
 
7
- - [`a54578d2ea9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a54578d2ea9) - This removes the feature flag for the `shouldRenderToParent` prop. The prop is available for use.
19
+ - [#40515](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40515) [`a54578d2ea9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a54578d2ea9) - This removes the feature flag for the `shouldRenderToParent` prop. The prop is available for use.
8
20
 
9
21
  ## 11.14.2
10
22
 
11
23
  ### Patch Changes
12
24
 
13
- - [`9623c04c020`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9623c04c020) - [ux] Adds context to loading state for assistive technologies.
25
+ - [#40393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40393) [`9623c04c020`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9623c04c020) - [ux] Adds context to loading state for assistive technologies.
14
26
  - Updated dependencies
15
27
 
16
28
  ## 11.14.1
17
29
 
18
30
  ### Patch Changes
19
31
 
20
- - [`53444bfd55a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/53444bfd55a) - Use 0 timeout to delay clean up after layering unmounted
32
+ - [#40400](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40400) [`53444bfd55a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/53444bfd55a) - Use 0 timeout to delay clean up after layering unmounted
21
33
 
22
34
  ## 11.14.0
23
35
 
24
36
  ### Minor Changes
25
37
 
26
- - [`f355884a4aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f355884a4aa) - [ux] Support to press escape key and only close the top layer
38
+ - [#39726](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39726) [`f355884a4aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f355884a4aa) - [ux] Support to press escape key and only close the top layer
27
39
 
28
40
  ### Patch Changes
29
41
 
@@ -33,55 +45,55 @@
33
45
 
34
46
  ### Minor Changes
35
47
 
36
- - [`4f211dbe626`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f211dbe626) - [ux] We are adopting a new Button component behind a feature flag. This is necessary for the implementation of the SplitButton component. If this adoption is successful, it will be available in a later release.
48
+ - [#39579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39579) [`4f211dbe626`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f211dbe626) - [ux] We are adopting a new Button component behind a feature flag. This is necessary for the implementation of the SplitButton component. If this adoption is successful, it will be available in a later release.
37
49
 
38
50
  ## 11.12.0
39
51
 
40
52
  ### Minor Changes
41
53
 
42
- - [`b66fdec7fd1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b66fdec7fd1) - Add a new prop `shouldRenderToParent` to allow render content into a DOM node within the parent DOM hierarchy instead of React portal.
54
+ - [#39236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39236) [`b66fdec7fd1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b66fdec7fd1) - Add a new prop `shouldRenderToParent` to allow render content into a DOM node within the parent DOM hierarchy instead of React portal.
43
55
 
44
56
  ## 11.11.6
45
57
 
46
58
  ### Patch Changes
47
59
 
48
- - [`d420deeebe5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d420deeebe5) - Fix checkbox and radio item color contrast issue under feature flag
60
+ - [#38177](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38177) [`d420deeebe5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d420deeebe5) - Fix checkbox and radio item color contrast issue under feature flag
49
61
 
50
62
  ## 11.11.5
51
63
 
52
64
  ### Patch Changes
53
65
 
54
- - [`9e84eaacfbe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e84eaacfbe) - Nested dropdown menus are now accessible using arrow key navigation.
66
+ - [#37765](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37765) [`9e84eaacfbe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e84eaacfbe) - Nested dropdown menus are now accessible using arrow key navigation.
55
67
 
56
68
  ## 11.11.4
57
69
 
58
70
  ### Patch Changes
59
71
 
60
- - [`303603a5525`](https://bitbucket.org/atlassian/atlassian-frontend/commits/303603a5525) - Internal changes.
72
+ - [#38011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38011) [`303603a5525`](https://bitbucket.org/atlassian/atlassian-frontend/commits/303603a5525) - Internal changes.
61
73
 
62
74
  ## 11.11.3
63
75
 
64
76
  ### Patch Changes
65
77
 
66
- - [`1af7a3c5ab9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1af7a3c5ab9) - fix: support to skip disabled elements when autoFocus is on
78
+ - [#37941](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37941) [`1af7a3c5ab9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1af7a3c5ab9) - fix: support to skip disabled elements when autoFocus is on
67
79
 
68
80
  ## 11.11.2
69
81
 
70
82
  ### Patch Changes
71
83
 
72
- - [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
84
+ - [#37533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37533) [`1ed303de3e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed303de3e8) - Updated dependencies
73
85
 
74
86
  ## 11.11.1
75
87
 
76
88
  ### Patch Changes
77
89
 
78
- - [`fd493dc2358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd493dc2358) - [ux] support nested dropdown menu
90
+ - [#36814](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36814) [`fd493dc2358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd493dc2358) - [ux] support nested dropdown menu
79
91
 
80
92
  ## 11.11.0
81
93
 
82
94
  ### Minor Changes
83
95
 
84
- - [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap` at it's original version.
96
+ - [#34797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34797) [`3920dcfd848`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3920dcfd848) - This removes the feature flag made for upgrading the `focus-trap` dependency and keeps `focus-trap` at it's original version.
85
97
 
86
98
  ### Patch Changes
87
99
 
@@ -91,19 +103,19 @@
91
103
 
92
104
  ### Patch Changes
93
105
 
94
- - [`4b99836860e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b99836860e) - Using arrow keys to move between items will no longer cause scrolling when at the top/bottom of the list.
106
+ - [#37265](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37265) [`4b99836860e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b99836860e) - Using arrow keys to move between items will no longer cause scrolling when at the top/bottom of the list.
95
107
 
96
108
  ## 11.10.6
97
109
 
98
110
  ### Patch Changes
99
111
 
100
- - [`2e2ebbe71fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e2ebbe71fc) - Fix keyboard arrow controls for dropdown item custom component.
112
+ - [#36646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36646) [`2e2ebbe71fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e2ebbe71fc) - Fix keyboard arrow controls for dropdown item custom component.
101
113
 
102
114
  ## 11.10.5
103
115
 
104
116
  ### Patch Changes
105
117
 
106
- - [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
118
+ - [#36754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36754) [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
107
119
 
108
120
  ## 11.10.4
109
121
 
@@ -127,13 +139,13 @@
127
139
 
128
140
  ### Patch Changes
129
141
 
130
- - [`a07c7d8af4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a07c7d8af4f) - Apply `box-sizing: border-box` to menu wrapper when loading spinner is visible.
142
+ - [#35947](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35947) [`a07c7d8af4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a07c7d8af4f) - Apply `box-sizing: border-box` to menu wrapper when loading spinner is visible.
131
143
 
132
144
  ## 11.10.0
133
145
 
134
146
  ### Minor Changes
135
147
 
136
- - [`6794b446742`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6794b446742) - [ux] We are testing a new selected state for radio and checkbox items under a feature flag. If successful this will be released in a later version.
148
+ - [#35038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35038) [`6794b446742`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6794b446742) - [ux] We are testing a new selected state for radio and checkbox items under a feature flag. If successful this will be released in a later version.
137
149
 
138
150
  ### Patch Changes
139
151
 
@@ -143,38 +155,38 @@
143
155
 
144
156
  ### Patch Changes
145
157
 
146
- - [`6a13926a3d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a13926a3d4) - Internal code changes.
158
+ - [#35092](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35092) [`6a13926a3d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a13926a3d4) - Internal code changes.
147
159
  - Updated dependencies
148
160
 
149
161
  ## 11.9.4
150
162
 
151
163
  ### Patch Changes
152
164
 
153
- - [`296683f5adc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/296683f5adc) - Update DropdownItemCheckbox and DropdownItemRadio icon color and add a border to these icons to be consistent within our design system.
165
+ - [#34831](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34831) [`296683f5adc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/296683f5adc) - Update DropdownItemCheckbox and DropdownItemRadio icon color and add a border to these icons to be consistent within our design system.
154
166
 
155
167
  ## 11.9.3
156
168
 
157
169
  ### Patch Changes
158
170
 
159
- - [`f42d723da8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f42d723da8c) - always render role="menuitemcheckbox"
171
+ - [#34331](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34331) [`f42d723da8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f42d723da8c) - always render role="menuitemcheckbox"
160
172
 
161
173
  ## 11.9.2
162
174
 
163
175
  ### Patch Changes
164
176
 
165
- - [`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.
177
+ - [#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.
166
178
 
167
179
  ## 11.9.1
168
180
 
169
181
  ### Patch Changes
170
182
 
171
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
183
+ - [#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
172
184
 
173
185
  ## 11.9.0
174
186
 
175
187
  ### Minor Changes
176
188
 
177
- - [`d518f0e34b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d518f0e34b9) - [ux] We are testing a selected indicator change to menu, dropdown-menu, and side-navigation packages behind an internal feature flag. If successful this will be released in a later minor release.
189
+ - [#33349](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33349) [`d518f0e34b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d518f0e34b9) - [ux] We are testing a selected indicator change to menu, dropdown-menu, and side-navigation packages behind an internal feature flag. If successful this will be released in a later minor release.
178
190
 
179
191
  ### Patch Changes
180
192
 
@@ -184,13 +196,13 @@
184
196
 
185
197
  ### Patch Changes
186
198
 
187
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
199
+ - [#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`
188
200
 
189
201
  ## 11.8.0
190
202
 
191
203
  ### Minor Changes
192
204
 
193
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
205
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
194
206
 
195
207
  ### Patch Changes
196
208
 
@@ -200,26 +212,26 @@
200
212
 
201
213
  ### Patch Changes
202
214
 
203
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
215
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
204
216
 
205
217
  ## 11.7.2
206
218
 
207
219
  ### Patch Changes
208
220
 
209
- - [`261420360ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/261420360ec) - Upgrades component types to support React 18.
221
+ - [#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.
210
222
  - Updated dependencies
211
223
 
212
224
  ## 11.7.1
213
225
 
214
226
  ### Patch Changes
215
227
 
216
- - [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
228
+ - [#31242](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31242) [`cfe48bb7ece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfe48bb7ece) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
217
229
 
218
230
  ## 11.7.0
219
231
 
220
232
  ### Minor Changes
221
233
 
222
- - [`7d3e5393e87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d3e5393e87) - Enable forwardRef on DropdownItem
234
+ - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248) [`7d3e5393e87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d3e5393e87) - Enable forwardRef on DropdownItem
223
235
 
224
236
  ### Patch Changes
225
237
 
@@ -229,13 +241,13 @@
229
241
 
230
242
  ### Patch Changes
231
243
 
232
- - [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
244
+ - [#31041](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31041) [`842bb999a85`](https://bitbucket.org/atlassian/atlassian-frontend/commits/842bb999a85) - Internal change only. Replace usages of Inline/Stack with stable version from `@atlaskit/primitives`.
233
245
 
234
246
  ## 11.6.0
235
247
 
236
248
  ### Minor Changes
237
249
 
238
- - [`814e6ed4e14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814e6ed4e14) - [ux] Adds a new spacing prop on the `DropdownMenu` component to support information density.
250
+ - [#30362](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30362) [`814e6ed4e14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/814e6ed4e14) - [ux] Adds a new spacing prop on the `DropdownMenu` component to support information density.
239
251
  - New usage `<DropdownMenu spacing="compact" />`
240
252
  - The current default (can also be omitted) `<DropdownMenu spacing="cozy" />`
241
253
 
@@ -247,26 +259,26 @@
247
259
 
248
260
  ### Patch Changes
249
261
 
250
- - [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) - Updates usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its replacement `utilities.UNSAFE.transparent`
262
+ - [#27634](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27634) [`22b754d311f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22b754d311f) - Updates usage of removed design token `utilities.UNSAFE_util.transparent` in favour of its replacement `utilities.UNSAFE.transparent`
251
263
  - Updated dependencies
252
264
 
253
265
  ## 11.5.11
254
266
 
255
267
  ### Patch Changes
256
268
 
257
- - [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal change to update token references. There is no expected behaviour or visual change.
269
+ - [#29390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29390) [`18aeca8c199`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18aeca8c199) - Internal change to update token references. There is no expected behaviour or visual change.
258
270
 
259
271
  ## 11.5.10
260
272
 
261
273
  ### Patch Changes
262
274
 
263
- - [`716af1d3387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/716af1d3387) - Bump @atlaskit/heading from 1.0.0 to 1.0.1 to avoid resolving to poison dependency version
275
+ - [#28159](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28159) [`716af1d3387`](https://bitbucket.org/atlassian/atlassian-frontend/commits/716af1d3387) - Bump @atlaskit/heading from 1.0.0 to 1.0.1 to avoid resolving to poison dependency version
264
276
 
265
277
  ## 11.5.9
266
278
 
267
279
  ### Patch Changes
268
280
 
269
- - [`c9b09094bfe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c9b09094bfe) - Wrap DropdownMenu > MenuWrapper setInitialFocusRef call in useEffect to resolve React console error
281
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`c9b09094bfe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c9b09094bfe) - Wrap DropdownMenu > MenuWrapper setInitialFocusRef call in useEffect to resolve React console error
270
282
 
271
283
  ## 11.5.8
272
284
 
@@ -284,7 +296,7 @@
284
296
 
285
297
  ### Patch Changes
286
298
 
287
- - [`6ae8910147b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ae8910147b) - [ux] Allow users to navigate past disabled menu items with arrow keys
299
+ - [#27898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27898) [`6ae8910147b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ae8910147b) - [ux] Allow users to navigate past disabled menu items with arrow keys
288
300
 
289
301
  ## 11.5.5
290
302
 
@@ -296,44 +308,44 @@
296
308
 
297
309
  ### Patch Changes
298
310
 
299
- - [`ab6ea02a97e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab6ea02a97e) - Align internal implementation with current linting rules. There should be no change for consumers.
311
+ - [#26958](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26958) [`ab6ea02a97e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab6ea02a97e) - Align internal implementation with current linting rules. There should be no change for consumers.
300
312
 
301
313
  ## 11.5.4
302
314
 
303
315
  ### Patch Changes
304
316
 
305
- - [`a5fa14318a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5fa14318a8) - Improve examples and visual regression test coverage.
317
+ - [#26932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26932) [`a5fa14318a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5fa14318a8) - Improve examples and visual regression test coverage.
306
318
 
307
319
  ## 11.5.3
308
320
 
309
321
  ### Patch Changes
310
322
 
311
- - [`625585b8db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/625585b8db6) - Bug fix to re-position the menu after change in loading state.
323
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`625585b8db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/625585b8db6) - Bug fix to re-position the menu after change in loading state.
312
324
  - Updated dependencies
313
325
 
314
326
  ## 11.5.2
315
327
 
316
328
  ### Patch Changes
317
329
 
318
- - [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
330
+ - [#26488](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26488) [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
319
331
 
320
332
  ## 11.5.1
321
333
 
322
334
  ### Patch Changes
323
335
 
324
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
336
+ - [#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`
325
337
 
326
338
  ## 11.5.0
327
339
 
328
340
  ### Minor Changes
329
341
 
330
- - [`7f7e4a0709b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f7e4a0709b) - Fixes the types of the CustomTrigger to be generic rather than set as HTMLElement. This allows improved type inference for custom triggers.
342
+ - [#24733](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24733) [`7f7e4a0709b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f7e4a0709b) - Fixes the types of the CustomTrigger to be generic rather than set as HTMLElement. This allows improved type inference for custom triggers.
331
343
 
332
344
  ## 11.4.0
333
345
 
334
346
  ### Minor Changes
335
347
 
336
- - [`00fc216bd94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00fc216bd94) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
348
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`00fc216bd94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00fc216bd94) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
337
349
 
338
350
  ### Patch Changes
339
351
 
@@ -343,19 +355,19 @@
343
355
 
344
356
  ### Patch Changes
345
357
 
346
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
358
+ - [#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`.
347
359
 
348
360
  ## 11.3.1
349
361
 
350
362
  ### Patch Changes
351
363
 
352
- - [`61d8af6f398`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61d8af6f398) - Adjusted the fallback placements for dropdown-menu to reduce how frequently the menu jumps while scrolling
364
+ - [#24292](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24292) [`61d8af6f398`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61d8af6f398) - Adjusted the fallback placements for dropdown-menu to reduce how frequently the menu jumps while scrolling
353
365
 
354
366
  ## 11.3.0
355
367
 
356
368
  ### Minor Changes
357
369
 
358
- - [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass event to onOpenChange consistently
370
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`01d80d395bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d80d395bc) - pass event to onOpenChange consistently
359
371
 
360
372
  ### Patch Changes
361
373
 
@@ -365,13 +377,13 @@
365
377
 
366
378
  ### Patch Changes
367
379
 
368
- - [`8a5bdb3c844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a5bdb3c844) - Upgrading internal dependency (bind-event-listener) for improved internal types
380
+ - [#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
369
381
 
370
382
  ## 11.2.1
371
383
 
372
384
  ### Patch Changes
373
385
 
374
- - [`347fd703ce0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/347fd703ce0) - Internally shifting to using bind-event-listener for events added in effects
386
+ - [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`347fd703ce0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/347fd703ce0) - Internally shifting to using bind-event-listener for events added in effects
375
387
  - [`ce9438bddd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce9438bddd0) - Internal TypeScript authoring improvement
376
388
  - Updated dependencies
377
389
 
@@ -379,7 +391,7 @@
379
391
 
380
392
  ### Minor Changes
381
393
 
382
- - [`9a186cda60b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a186cda60b) - Adds `component` prop to DropdownItem which allows overriding the item with a custom component.
394
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`9a186cda60b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a186cda60b) - Adds `component` prop to DropdownItem which allows overriding the item with a custom component.
383
395
 
384
396
  ### Patch Changes
385
397
 
@@ -396,7 +408,7 @@
396
408
 
397
409
  ### Patch Changes
398
410
 
399
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
411
+ - [#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
400
412
  - Updated dependencies
401
413
 
402
414
  ## 11.1.3
@@ -415,18 +427,18 @@
415
427
 
416
428
  ### Patch Changes
417
429
 
418
- - [`dbf652b5183`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbf652b5183) - Fixes an accessibility issue where menu items had the ARIA role of `menuitem` but were not contained by a parent with the correct role. The `MenuWrapper` component now has `role="menu"`.
430
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`dbf652b5183`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbf652b5183) - Fixes an accessibility issue where menu items had the ARIA role of `menuitem` but were not contained by a parent with the correct role. The `MenuWrapper` component now has `role="menu"`.
419
431
  - Updated dependencies
420
432
 
421
433
  ## 11.1.0
422
434
 
423
435
  ### Minor Changes
424
436
 
425
- - [`bb8a0f713e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb8a0f713e8) - Add zIndex prop to pass custom z-index for the menu if it clashes with other components on the screen
437
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526) [`bb8a0f713e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb8a0f713e8) - Add zIndex prop to pass custom z-index for the menu if it clashes with other components on the screen
426
438
 
427
439
  ### Patch Changes
428
440
 
429
- - [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule.
441
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`58884c2f6c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58884c2f6c1) - Internal code change turning on a new linting rule.
430
442
  - [`94886036118`](https://bitbucket.org/atlassian/atlassian-frontend/commits/94886036118) - Internal refactor to properly use render props to avoid unwanted re-mounts and improve test coverage
431
443
  - Updated dependencies
432
444
 
@@ -448,14 +460,14 @@
448
460
 
449
461
  ### Patch Changes
450
462
 
451
- - [`c2dd770a743`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2dd770a743) - Add new prop which controls is outside click should be bound using capture
463
+ - [#16960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16960) [`c2dd770a743`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2dd770a743) - Add new prop which controls is outside click should be bound using capture
452
464
  - Updated dependencies
453
465
 
454
466
  ## 11.0.0
455
467
 
456
468
  ### Major Changes
457
469
 
458
- - [`d65d8a545af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d65d8a545af) - [ux] In this version, we have significantly reduced the bundle size, improved the runtime performance and simplified the API for dropdown menu. We've also removed deprecated dependencies, which bring consistency to the spacing and padding of dropdown menu items, which may require updating VR snapshots. We've also provided codemods to help you upgrade to the latest API.
470
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`d65d8a545af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d65d8a545af) - [ux] In this version, we have significantly reduced the bundle size, improved the runtime performance and simplified the API for dropdown menu. We've also removed deprecated dependencies, which bring consistency to the spacing and padding of dropdown menu items, which may require updating VR snapshots. We've also provided codemods to help you upgrade to the latest API.
459
471
 
460
472
  ## Running the codemod cli
461
473
 
@@ -596,45 +608,45 @@
596
608
 
597
609
  ### Patch Changes
598
610
 
599
- - [`378d1cef00f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d1cef00f) - Bump `@atlaskit/theme` to version `^11.3.0`.
611
+ - [#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`.
600
612
 
601
613
  ## 10.1.6
602
614
 
603
615
  ### Patch Changes
604
616
 
605
- - [`28f40bac160`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f40bac160) - Updates targets for modal dialog in VR tests.
617
+ - [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`28f40bac160`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28f40bac160) - Updates targets for modal dialog in VR tests.
606
618
 
607
619
  ## 10.1.5
608
620
 
609
621
  ### Patch Changes
610
622
 
611
- - [`8ec43d970dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ec43d970dd) - Removed 'aria-controls' and unused id's from the Dropdown component
623
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`8ec43d970dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ec43d970dd) - Removed 'aria-controls' and unused id's from the Dropdown component
612
624
  - Updated dependencies
613
625
 
614
626
  ## 10.1.4
615
627
 
616
628
  ### Patch Changes
617
629
 
618
- - [`bc6de0e2e19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc6de0e2e19) - Internal change to use declarative entrypoints instead of the hardcoded ones.
630
+ - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510) [`bc6de0e2e19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc6de0e2e19) - Internal change to use declarative entrypoints instead of the hardcoded ones.
619
631
 
620
632
  ## 10.1.3
621
633
 
622
634
  ### Patch Changes
623
635
 
624
- - [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
636
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`79c23df6340`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79c23df6340) - Use injected package name and version for analytics instead of version.json.
625
637
  - Updated dependencies
626
638
 
627
639
  ## 10.1.2
628
640
 
629
641
  ### Patch Changes
630
642
 
631
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
643
+ - [#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
632
644
 
633
645
  ## 10.1.1
634
646
 
635
647
  ### Patch Changes
636
648
 
637
- - [`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.
649
+ - [#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.
638
650
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
639
651
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
640
652
 
@@ -642,7 +654,7 @@
642
654
 
643
655
  ### Minor Changes
644
656
 
645
- - [`50c2ca9269`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c2ca9269) - Export WithToggleInteractionProps type to prevent it from being referenced via deep import path in dependent declaration files
657
+ - [#5344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5344) [`50c2ca9269`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c2ca9269) - Export WithToggleInteractionProps type to prevent it from being referenced via deep import path in dependent declaration files
646
658
 
647
659
  ### Patch Changes
648
660
 
@@ -652,7 +664,7 @@
652
664
 
653
665
  ### Patch Changes
654
666
 
655
- - [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
667
+ - [#5164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5164) [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
656
668
 
657
669
  ## 10.0.5
658
670
 
@@ -664,13 +676,13 @@
664
676
 
665
677
  ### Patch Changes
666
678
 
667
- - [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
679
+ - [#4707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4707) [`6360c46009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6360c46009) - Reenable integration tests for Edge browser
668
680
 
669
681
  ## 10.0.3
670
682
 
671
683
  ### Patch Changes
672
684
 
673
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
685
+ - [#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
674
686
 
675
687
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
676
688
  to prevent duplicates of tslib being bundled.
@@ -679,19 +691,19 @@
679
691
 
680
692
  ### Patch Changes
681
693
 
682
- - [`954cc87b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/954cc87b62) - The readme and package information has been updated to point to the new design system website.
694
+ - [#3293](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3293) [`954cc87b62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/954cc87b62) - The readme and package information has been updated to point to the new design system website.
683
695
 
684
696
  ## 10.0.1
685
697
 
686
698
  ### Patch Changes
687
699
 
688
- - [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable
700
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`db053b24d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db053b24d8) - Update all the theme imports to be tree-shakable
689
701
 
690
702
  ## 10.0.0
691
703
 
692
704
  ### Major Changes
693
705
 
694
- - [`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.
706
+ - [#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.
695
707
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
696
708
 
697
709
  ### Patch Changes
@@ -702,13 +714,13 @@
702
714
 
703
715
  ### Patch Changes
704
716
 
705
- - [`a8d5ae5d98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8d5ae5d98) - Fix analytics when dropdown menu gets closed. Now passing dropdown-menu analytics instead of droplist.
717
+ - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`a8d5ae5d98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8d5ae5d98) - Fix analytics when dropdown menu gets closed. Now passing dropdown-menu analytics instead of droplist.
706
718
 
707
719
  ## 9.0.5
708
720
 
709
721
  ### Patch Changes
710
722
 
711
- - [`54a9514fcf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54a9514fcf) - Build and supporting files will no longer be published to npm
723
+ - [#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
712
724
 
713
725
  ## 9.0.4
714
726
 
@@ -14,12 +14,27 @@ var _checkboxGroupContext = require("../internal/context/checkbox-group-context"
14
14
  * A wrapping element for dropdown menu checkbox items.
15
15
  *
16
16
  */
17
- var DropdownItemCheckboxGroup = function DropdownItemCheckboxGroup(props) {
18
- var children = props.children,
19
- id = props.id;
17
+ var DropdownItemCheckboxGroup = function DropdownItemCheckboxGroup(_ref) {
18
+ var children = _ref.children,
19
+ hasSeparator = _ref.hasSeparator,
20
+ id = _ref.id,
21
+ isList = _ref.isList,
22
+ isScrollable = _ref.isScrollable,
23
+ overrides = _ref.overrides,
24
+ testId = _ref.testId,
25
+ title = _ref.title;
20
26
  return /*#__PURE__*/_react.default.createElement(_checkboxGroupContext.CheckboxGroupContext.Provider, {
21
27
  value: id
22
- }, /*#__PURE__*/_react.default.createElement(_section.default, props, children));
28
+ }, /*#__PURE__*/_react.default.createElement(_section.default, {
29
+ hasSeparator: hasSeparator,
30
+ id: id,
31
+ isList: isList,
32
+ isScrollable: isScrollable
33
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-overrides
34
+ ,
35
+ overrides: overrides,
36
+ testId: testId,
37
+ title: title
38
+ }, children));
23
39
  };
24
- var _default = DropdownItemCheckboxGroup;
25
- exports.default = _default;
40
+ var _default = exports.default = DropdownItemCheckboxGroup;