@atlaskit/inline-message 13.0.2 → 13.0.3
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 +8 -0
- package/dist/cjs/components/inline-message/index.js +1 -1
- package/dist/cjs/components/message-icon/index.js +1 -1
- package/dist/es2019/components/inline-message/index.js +1 -1
- package/dist/es2019/components/message-icon/index.js +1 -1
- package/dist/esm/components/inline-message/index.js +1 -1
- package/dist/esm/components/message-icon/index.js +1 -1
- package/package.json +9 -5
- package/__perf__/default.tsx +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/inline-message
|
|
2
2
|
|
|
3
|
+
## 13.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#108679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108679)
|
|
8
|
+
[`b35940a97f3a8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b35940a97f3a8) -
|
|
9
|
+
Update dev dependencies.
|
|
10
|
+
|
|
3
11
|
## 13.0.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-message",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.3",
|
|
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/"
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@atlaskit/button": "^20.3.0",
|
|
34
|
-
"@atlaskit/icon": "^23.
|
|
34
|
+
"@atlaskit/icon": "^23.4.0",
|
|
35
35
|
"@atlaskit/inline-dialog": "^16.0.0",
|
|
36
36
|
"@atlaskit/primitives": "^13.3.0",
|
|
37
37
|
"@atlaskit/theme": "^14.0.0",
|
|
38
|
-
"@atlaskit/tokens": "^3.
|
|
38
|
+
"@atlaskit/tokens": "^3.2.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0",
|
|
40
40
|
"@compiled/react": "^0.18.1"
|
|
41
41
|
},
|
|
@@ -46,9 +46,13 @@
|
|
|
46
46
|
"@af/accessibility-testing": "*",
|
|
47
47
|
"@af/integration-testing": "*",
|
|
48
48
|
"@af/visual-regression": "*",
|
|
49
|
-
"@atlaskit/
|
|
49
|
+
"@atlaskit/docs": "*",
|
|
50
|
+
"@atlaskit/ds-lib": "^3.4.0",
|
|
51
|
+
"@atlaskit/heading": "^4.0.2",
|
|
52
|
+
"@atlaskit/link": "^2.0.2",
|
|
53
|
+
"@atlaskit/modal-dialog": "^12.19.3",
|
|
54
|
+
"@atlaskit/section-message": "*",
|
|
50
55
|
"@atlaskit/ssr": "*",
|
|
51
|
-
"@atlaskit/visual-regression": "*",
|
|
52
56
|
"@emotion/jest": "^11.8.0",
|
|
53
57
|
"@testing-library/react": "^12.1.5",
|
|
54
58
|
"@testing-library/user-event": "^14.4.3",
|
package/__perf__/default.tsx
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
3
|
-
import InlineMessage from '../src';
|
|
4
|
-
|
|
5
|
-
export default () => (
|
|
6
|
-
<div>
|
|
7
|
-
<InlineMessage title="Inline Message Title Example" secondaryText="Secondary Text">
|
|
8
|
-
<p>Primary and secondary text dialog</p>
|
|
9
|
-
</InlineMessage>
|
|
10
|
-
</div>
|
|
11
|
-
);
|