@atlaskit/inline-message 12.0.1 → 12.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 +12 -0
- package/package.json +7 -4
- package/tmp/api-report-tmp.d.ts +0 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/inline-message
|
|
2
2
|
|
|
3
|
+
## 12.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#63677](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63677) [`f320c8ce5039`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f320c8ce5039) - This package has been added to the Jira push model.
|
|
8
|
+
|
|
9
|
+
## 12.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 12.0.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-message",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.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/"
|
|
@@ -18,17 +18,20 @@
|
|
|
18
18
|
"team": "Design System Team",
|
|
19
19
|
"deprecatedAutoEntryPoints": true,
|
|
20
20
|
"releaseModel": "continuous",
|
|
21
|
+
"productPushConsumption": [
|
|
22
|
+
"jira"
|
|
23
|
+
],
|
|
21
24
|
"website": {
|
|
22
25
|
"name": "Inline message",
|
|
23
26
|
"category": "Components"
|
|
24
27
|
}
|
|
25
28
|
},
|
|
26
29
|
"dependencies": {
|
|
27
|
-
"@atlaskit/button": "^
|
|
30
|
+
"@atlaskit/button": "^17.2.0",
|
|
28
31
|
"@atlaskit/icon": "^22.0.0",
|
|
29
32
|
"@atlaskit/inline-dialog": "^14.0.0",
|
|
30
33
|
"@atlaskit/theme": "^12.6.0",
|
|
31
|
-
"@atlaskit/tokens": "^1.
|
|
34
|
+
"@atlaskit/tokens": "^1.33.0",
|
|
32
35
|
"@babel/runtime": "^7.0.0",
|
|
33
36
|
"@emotion/react": "^11.7.1"
|
|
34
37
|
},
|
|
@@ -37,11 +40,11 @@
|
|
|
37
40
|
},
|
|
38
41
|
"devDependencies": {
|
|
39
42
|
"@af/accessibility-testing": "*",
|
|
43
|
+
"@af/integration-testing": "*",
|
|
40
44
|
"@af/visual-regression": "*",
|
|
41
45
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
42
46
|
"@atlaskit/ssr": "*",
|
|
43
47
|
"@atlaskit/visual-regression": "*",
|
|
44
|
-
"@atlaskit/webdriver-runner": "*",
|
|
45
48
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
46
49
|
"@emotion/jest": "^11.8.0",
|
|
47
50
|
"@testing-library/react": "^12.1.5",
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/inline-message"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import { FC } from 'react';
|
|
8
|
-
import { ReactNode } from 'react';
|
|
9
|
-
|
|
10
|
-
// @public (undocumented)
|
|
11
|
-
type IconAppearance = 'confirmation' | 'connectivity' | 'error' | 'info' | 'warning';
|
|
12
|
-
|
|
13
|
-
// @public (undocumented)
|
|
14
|
-
type InlineDialogPlacement = 'auto' | 'auto-end' | 'auto-start' | 'bottom' | 'bottom-end' | 'bottom-start' | 'left' | 'left-end' | 'left-start' | 'right' | 'right-end' | 'right-start' | 'top' | 'top-end' | 'top-start';
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
const InlineMessage: FC<InlineMessageProps>;
|
|
18
|
-
export default InlineMessage;
|
|
19
|
-
|
|
20
|
-
// @public (undocumented)
|
|
21
|
-
interface InlineMessageProps {
|
|
22
|
-
appearance?: IconAppearance;
|
|
23
|
-
children?: ReactNode;
|
|
24
|
-
iconLabel?: string;
|
|
25
|
-
placement?: InlineDialogPlacement;
|
|
26
|
-
secondaryText?: ReactNode;
|
|
27
|
-
testId?: string;
|
|
28
|
-
title?: ReactNode;
|
|
29
|
-
// @deprecated (undocumented)
|
|
30
|
-
type?: IconAppearance;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// (No @packageDocumentation comment for this package)
|
|
34
|
-
|
|
35
|
-
```
|