@atlaskit/menu 2.7.1 → 2.7.4

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @atlaskit/menu
2
2
 
3
+ ## 2.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#119132](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119132)
8
+ [`68ee7be8867d0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/68ee7be8867d0) -
9
+ Remove remnants of `extract-react-types` from tsconfig file.
10
+
11
+ ## 2.7.3
12
+
13
+ ### Patch Changes
14
+
15
+ - [#119110](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119110)
16
+ [`cb28fa67e9a16`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cb28fa67e9a16) -
17
+ Update Atlaskit docs so that they point to current ADS site. Remove remnants of
18
+ `extract-react-types`.
19
+
20
+ ## 2.7.2
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+
3
26
  ## 2.7.1
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/menu",
3
- "version": "2.7.1",
3
+ "version": "2.7.4",
4
4
  "description": "A list of options to help users navigate, or perform actions.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -47,7 +47,7 @@
47
47
  "@atlaskit/ds-lib": "^2.3.0",
48
48
  "@atlaskit/focus-ring": "^1.5.0",
49
49
  "@atlaskit/platform-feature-flags": "^0.3.0",
50
- "@atlaskit/primitives": "^10.0.0",
50
+ "@atlaskit/primitives": "^11.0.0",
51
51
  "@atlaskit/theme": "^12.11.0",
52
52
  "@atlaskit/tokens": "^1.53.0",
53
53
  "@babel/runtime": "^7.0.0",
@@ -1,8 +0,0 @@
1
- import type { CustomItemProps } from '../src/types';
2
-
3
- /**
4
- * The props definition in custom-item.tsx breaks ERT unfortunately,
5
- * because we had to typecast the component to make forwardRef work with generics
6
- * (for the custom component props).
7
- */
8
- export default function (_: CustomItemProps) {}