@atlaskit/menu 2.13.2 → 2.13.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 +16 -0
- package/button-item/package.json +3 -1
- package/custom-item/package.json +3 -1
- package/heading-item/package.json +3 -1
- package/link-item/package.json +3 -1
- package/menu-group/package.json +3 -1
- package/package.json +10 -9
- package/popup-menu-group/package.json +3 -1
- package/section/package.json +3 -1
- package/skeleton-heading-item/package.json +3 -1
- package/skeleton-item/package.json +3 -1
- package/types/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/menu
|
|
2
2
|
|
|
3
|
+
## 2.13.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#168892](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/168892)
|
|
8
|
+
[`5eb2a70adb262`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5eb2a70adb262) -
|
|
9
|
+
Remove react-router-dom from devDependencies as it is incompatible with React 18.
|
|
10
|
+
|
|
11
|
+
## 2.13.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#166087](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166087)
|
|
16
|
+
[`3ab7d7da348ab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3ab7d7da348ab) -
|
|
17
|
+
Adds side-effect config to support Compiled css extraction in third-party apps
|
|
18
|
+
|
|
3
19
|
## 2.13.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/button-item/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/button-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/button-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/button-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/button-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/custom-item/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/custom-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/custom-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/custom-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/custom-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/heading-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/heading-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/heading-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/heading-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/link-item/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/link-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/link-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/link-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/link-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/menu-group/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-section/menu-group.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-section/menu-group.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-section/menu-group.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-section/menu-group.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/menu",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.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/"
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"module": "dist/esm/index.js",
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
|
14
14
|
"types": "dist/types/index.d.ts",
|
|
15
|
-
"sideEffects":
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"**/*.compiled.css"
|
|
17
|
+
],
|
|
16
18
|
"atlaskit:src": "src/index.tsx",
|
|
17
19
|
"atlassian": {
|
|
18
20
|
"team": "Design System Team",
|
|
@@ -35,18 +37,18 @@
|
|
|
35
37
|
}
|
|
36
38
|
}
|
|
37
39
|
],
|
|
38
|
-
"category": "
|
|
40
|
+
"category": "Navigation"
|
|
39
41
|
}
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@atlaskit/app-provider": "^1.4.0",
|
|
43
|
-
"@atlaskit/ds-lib": "^3.
|
|
44
|
-
"@atlaskit/focus-ring": "^1.
|
|
45
|
+
"@atlaskit/ds-lib": "^3.2.0",
|
|
46
|
+
"@atlaskit/focus-ring": "^1.7.0",
|
|
45
47
|
"@atlaskit/interaction-context": "^2.1.0",
|
|
46
48
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
47
|
-
"@atlaskit/primitives": "^13.
|
|
49
|
+
"@atlaskit/primitives": "^13.2.0",
|
|
48
50
|
"@atlaskit/theme": "^14.0.0",
|
|
49
|
-
"@atlaskit/tokens": "^2.
|
|
51
|
+
"@atlaskit/tokens": "^2.3.0",
|
|
50
52
|
"@babel/runtime": "^7.0.0",
|
|
51
53
|
"@emotion/react": "^11.7.1"
|
|
52
54
|
},
|
|
@@ -67,8 +69,7 @@
|
|
|
67
69
|
"ast-types": "^0.13.3",
|
|
68
70
|
"bind-event-listener": "^3.0.0",
|
|
69
71
|
"jscodeshift": "^0.13.0",
|
|
70
|
-
"
|
|
71
|
-
"storybook-addon-performance": "^0.16.0",
|
|
72
|
+
"storybook-addon-performance": "^0.17.3",
|
|
72
73
|
"typescript": "~5.4.2"
|
|
73
74
|
},
|
|
74
75
|
"keywords": [
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-section/popup-menu-group.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-section/popup-menu-group.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-section/popup-menu-group.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-section/popup-menu-group.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/section/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-section/section.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-section/section.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-section/section.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-section/section.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/skeleton-heading-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/skeleton-heading-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/skeleton-heading-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/skeleton-heading-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/entry-points/menu-item/skeleton-item.js",
|
|
4
4
|
"module": "../dist/esm/entry-points/menu-item/skeleton-item.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/entry-points/menu-item/skeleton-item.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/entry-points/menu-item/skeleton-item.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/types/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/types.js",
|
|
4
4
|
"module": "../dist/esm/types.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/types.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|