@atlaskit/inline-message 12.4.0 → 12.4.2
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 +14 -0
- package/constants/package.json +3 -1
- package/package.json +7 -5
- package/types/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/inline-message
|
|
2
2
|
|
|
3
|
+
## 12.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#166026](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166026)
|
|
8
|
+
[`962b5e77810fb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/962b5e77810fb) -
|
|
9
|
+
Adds side-effect config to support Compiled css extraction in third-party apps
|
|
10
|
+
|
|
11
|
+
## 12.4.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 12.4.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/constants/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/constants.js",
|
|
4
4
|
"module": "../dist/esm/constants.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/constants.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/constants.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/inline-message",
|
|
3
|
-
"version": "12.4.
|
|
3
|
+
"version": "12.4.2",
|
|
4
4
|
"description": "An inline message lets users know when important information is available or when an action is required.",
|
|
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
|
"af:exports": {
|
|
18
20
|
".": "./src/index.tsx",
|
|
@@ -31,9 +33,9 @@
|
|
|
31
33
|
"@atlaskit/button": "^20.3.0",
|
|
32
34
|
"@atlaskit/icon": "^22.24.0",
|
|
33
35
|
"@atlaskit/inline-dialog": "^15.2.0",
|
|
34
|
-
"@atlaskit/primitives": "^
|
|
36
|
+
"@atlaskit/primitives": "^13.2.0",
|
|
35
37
|
"@atlaskit/theme": "^14.0.0",
|
|
36
|
-
"@atlaskit/tokens": "^2.
|
|
38
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
37
39
|
"@babel/runtime": "^7.0.0",
|
|
38
40
|
"@emotion/react": "^11.7.1"
|
|
39
41
|
},
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
"@af/accessibility-testing": "*",
|
|
45
47
|
"@af/integration-testing": "*",
|
|
46
48
|
"@af/visual-regression": "*",
|
|
47
|
-
"@atlaskit/ds-lib": "^3.
|
|
49
|
+
"@atlaskit/ds-lib": "^3.2.0",
|
|
48
50
|
"@atlaskit/ssr": "*",
|
|
49
51
|
"@atlaskit/visual-regression": "*",
|
|
50
52
|
"@emotion/jest": "^11.8.0",
|
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": {
|