@atlaskit/inline-message 11.5.2 → 11.5.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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/inline-message
|
|
2
2
|
|
|
3
|
+
## 11.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
|
|
8
|
+
|
|
3
9
|
## 11.5.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -31,15 +31,15 @@ interface InlineMessageProps {
|
|
|
31
31
|
*/
|
|
32
32
|
type?: IconAppearance;
|
|
33
33
|
/**
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
34
|
+
* A unique string that appears as a data attribute, `data-testid`,
|
|
35
|
+
* in the rendered code. It is provided to serve as a hook for automated tests.
|
|
36
|
+
*
|
|
37
|
+
* The value of `testId` is attached to the different sub-components in Inline Message:
|
|
38
|
+
* - `testId`: the top-level inline message component
|
|
39
|
+
* - `testId--inline-dialog`: the content of the message
|
|
40
|
+
* - `testId--button`: the button element that opens the dialog on press
|
|
41
|
+
* - `testId--title`: the title of the message
|
|
42
|
+
* - `testId--text`: the text of the message
|
|
43
43
|
*/
|
|
44
44
|
testId?: string;
|
|
45
45
|
/**
|
|
@@ -31,15 +31,15 @@ interface InlineMessageProps {
|
|
|
31
31
|
*/
|
|
32
32
|
type?: IconAppearance;
|
|
33
33
|
/**
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
34
|
+
* A unique string that appears as a data attribute, `data-testid`,
|
|
35
|
+
* in the rendered code. It is provided to serve as a hook for automated tests.
|
|
36
|
+
*
|
|
37
|
+
* The value of `testId` is attached to the different sub-components in Inline Message:
|
|
38
|
+
* - `testId`: the top-level inline message component
|
|
39
|
+
* - `testId--inline-dialog`: the content of the message
|
|
40
|
+
* - `testId--button`: the button element that opens the dialog on press
|
|
41
|
+
* - `testId--title`: the title of the message
|
|
42
|
+
* - `testId--text`: the text of the message
|
|
43
43
|
*/
|
|
44
44
|
testId?: string;
|
|
45
45
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-message",
|
|
3
|
-
"version": "11.5.
|
|
3
|
+
"version": "11.5.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/"
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"atlassian": {
|
|
26
26
|
"team": "Design System Team",
|
|
27
27
|
"deprecatedAutoEntryPoints": true,
|
|
28
|
-
"releaseModel": "
|
|
28
|
+
"releaseModel": "continuous",
|
|
29
29
|
"website": {
|
|
30
30
|
"name": "Inline message",
|
|
31
31
|
"category": "Components"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/button": "^16.
|
|
35
|
+
"@atlaskit/button": "^16.8.0",
|
|
36
36
|
"@atlaskit/icon": "^21.12.0",
|
|
37
37
|
"@atlaskit/inline-dialog": "^13.6.0",
|
|
38
38
|
"@atlaskit/theme": "^12.5.0",
|
|
39
|
-
"@atlaskit/tokens": "^1.
|
|
39
|
+
"@atlaskit/tokens": "^1.11.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
41
41
|
"@emotion/react": "^11.7.1"
|
|
42
42
|
},
|
|
@@ -44,9 +44,8 @@
|
|
|
44
44
|
"react": "^16.8.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@
|
|
47
|
+
"@af/accessibility-testing": "*",
|
|
48
48
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
49
|
-
"@atlaskit/section-message": "^6.4.0",
|
|
50
49
|
"@atlaskit/ssr": "*",
|
|
51
50
|
"@atlaskit/visual-regression": "*",
|
|
52
51
|
"@atlaskit/webdriver-runner": "*",
|